/**
 * دليفري مول — Landing Page مستقلة
 * متوافقة مع هوية المنصة (أخضر/تركواز + Lato)
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Lato:wght@300;400;700;900&display=swap");

:root {
  --dm-base-1: #0ea5e9;
  --dm-base-rgb: 0, 231, 123;
  --dm-base-2: #0284c7;
  --dm-base-rgb-2: 4, 244, 133;
  --dm-accent: #0369a1;
  --dm-header-bg: #f0f9ff;
  --dm-title: #2f3934;
  --dm-body: #717c77;
  --dm-border: #e5e5e5;
  --dm-section-bg: #fcfcfc;
  --dm-white: #ffffff;
  --dm-font: "Inter", "Lato", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--dm-font);
  color: var(--dm-body);
  background: var(--dm-white);
  line-height: 1.7;
}

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

a {
  color: var(--dm-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--dm-base-1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dm-title);
  font-weight: 800;
  line-height: 1.35;
}

/* ----- Header ----- */
.dm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dm-header-bg);
  border-bottom: 1px solid var(--dm-border);
}

.dm-navbar {
  padding: 0.65rem 0;
}

.dm-navbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dm-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

.dm-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.dm-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.dm-menu a {
  color: var(--dm-title);
  font-weight: 700;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.dm-menu a:hover,
.dm-menu a.active {
  color: var(--dm-accent);
  border-bottom-color: var(--dm-base-1);
}

.dm-nav-toggle {
  margin-inline-start: auto;
  background: transparent;
  border: 0;
  width: 42px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.dm-nav-toggle span {
  display: block;
  height: 3px;
  background: var(--dm-title);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .dm-nav-toggle {
    display: none;
  }

  .dm-nav {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .dm-nav-toggle {
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}

@media (max-width: 991.98px) {
  .dm-nav {
    display: none;
    flex-basis: 100%;
    order: 3;
    width: 100%;
  }

  .dm-nav.is-open {
    display: block;
  }

  .dm-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0;
    width: 100%;
  }

  .dm-menu a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--dm-border);
  }
}

/* Buttons */
.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dm-btn:hover {
  transform: translateY(-1px);
}

.dm-btn--primary {
  background: linear-gradient(135deg, var(--dm-base-1), var(--dm-base-2));
  color: #063a24 !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(var(--dm-base-rgb), 0.35);
}

.dm-btn--primary:hover {
  color: #042818 !important;
}

.dm-btn--outline {
  background: transparent;
  color: var(--dm-accent) !important;
  border-color: var(--dm-accent);
}

.dm-btn--outline:hover {
  background: rgba(var(--dm-base-rgb), 0.08);
}

/* Hero */
.dm-hero {
  padding: 0 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, #e8f7f9 0%, #ffffff 42%);
}

.dm-hero-visual-wrap {
  padding: 1rem 0 0;
}

/* Full-width hero band — slides are 1024×620 / 1024×682 (~3:2) */
.dm-hero-carousel-outer {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
}

.dm-hero-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(11, 30, 45, 0.14),
    0 0 0 1px rgba(0, 169, 181, 0.12);
  background: linear-gradient(180deg, #e8f7f9 0%, #d4eef2 100%);
  /* Matches widest slide (delivery 1024×620) so both images fit without crop */
  aspect-ratio: 1024 / 620;
}

@media (max-width: 767.98px) {
  .dm-hero-carousel {
    aspect-ratio: 1024 / 682;
    border-radius: 14px;
  }
}

.dm-hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.dm-hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.dm-hero-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.dm-hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.dm-hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1e2d;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.dm-hero-carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.dm-hero-carousel-btn--prev {
  left: 12px;
}

.dm-hero-carousel-btn--next {
  right: 12px;
}

.dm-hero-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dm-hero-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dm-hero-carousel-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.dm-hero-body {
  padding-top: 1.75rem;
}

.dm-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.dm-hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dm-base-2);
}

.dm-hero-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  margin-bottom: 1rem;
}

.dm-hero-trust {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dm-title);
}

.dm-hero-trust li::before {
  content: "✓ ";
  color: var(--dm-base-1);
}

/* Product spotlight (24-pack) */
.dm-product-spotlight {
  padding: 2.5rem 0 3rem;
  background: linear-gradient(
    180deg,
    var(--dm-white) 0%,
    rgba(0, 169, 181, 0.06) 100%
  );
}

.dm-product-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: var(--dm-white);
  border-radius: 20px;
  border: 1px solid rgba(0, 169, 181, 0.15);
  box-shadow: 0 16px 40px rgba(11, 30, 45, 0.08);
}

@media (max-width: 767.98px) {
  .dm-product-spotlight-inner {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
    text-align: center;
  }
}

.dm-product-spotlight-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-product-spotlight-media img {
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(11, 30, 45, 0.12));
}

.dm-product-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--dm-base-1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .dm-product-badge {
    top: -0.25rem;
    right: 50%;
    transform: translateX(50%);
  }
}

.dm-product-spotlight-copy h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.dm-product-spotlight-copy p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.dm-hero-logo {
  max-width: 200px;
  margin: 0.5rem auto 1rem;
}

.dm-hero-text {
  font-size: 1.05rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.dm-hero-platforms {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.dm-hero-platforms .dm-platform-grid {
  max-width: none;
  margin: 0;
}

.dm-hero-platforms .dm-platform-card {
  padding: 1.35rem 1.1rem;
}

.dm-platform-brand-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-platform-brand-wrap--android {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(61, 220, 132, 0.25);
}

.dm-platform-brand-wrap--apple {
  background: linear-gradient(145deg, #f9fafb, #eef2f7);
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.dm-platform-brand-wrap--web {
  background: linear-gradient(145deg, #ecfdf5, #e0f2fe);
  border: 1px solid rgba(16, 121, 128, 0.2);
}

.dm-platform-card--ios {
  background: linear-gradient(180deg, #fafafa, var(--dm-white) 55%);
}

.dm-platform-brand-icon {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.dm-platform-brand-wrap--apple .dm-platform-brand-icon {
  width: 34px;
  height: 34px;
}

.dm-hero-platforms .dm-apk-version {
  min-height: 1.2em;
}

.dm-hero-download-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #b45309;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .dm-hero-platforms .dm-platform-card {
    padding: 1.15rem 0.95rem;
  }
}

/* أزرار الهيرو كما في تصميم الجوال: أساسي أخضر صلب بنص أبيض */
.dm-hero .dm-btn--primary {
  background: var(--dm-base-1);
  color: #fff !important;
  box-shadow: 0 8px 26px rgba(var(--dm-base-rgb), 0.38);
}

.dm-hero .dm-btn--primary:hover {
  color: #fff !important;
  filter: brightness(1.05);
}

.dm-hero .dm-btn--outline {
  background: var(--dm-white);
}

.dm-hero-banner {
  margin-top: 2rem;
  padding: 0 0.5rem;
}

.dm-hero-banner img {
  max-width: min(920px, 100%);
  height: auto;
}

/* Sections */
.dm-section {
  padding: 3.5rem 0;
}

.dm-section--features {
  background: var(--dm-section-bg);
}

.dm-section--download {
  background: linear-gradient(
    180deg,
    rgba(var(--dm-base-rgb), 0.06),
    var(--dm-white)
  );
}

.dm-section--contact {
  padding-bottom: 4rem;
}

.dm-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.dm-section-head h2 {
  margin-bottom: 0.5rem;
}

.dm-feature-card {
  background: var(--dm-white);
  border: 1px solid var(--dm-border);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dm-feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--dm-base-rgb), 0.45);
}

.dm-feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.dm-feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.dm-feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

.dm-download-block {
  margin-top: 1rem;
}

.dm-app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.dm-app-badges a img {
  height: 40px;
  width: auto;
}

.dm-contact-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--dm-section-bg);
  border: 1px solid var(--dm-border);
  border-radius: 16px;
  padding: 2rem;
}

.dm-list-plain {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.dm-list-plain li {
  margin-bottom: 0.5rem;
}

/* Article pages */
.dm-page-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
  background: var(--dm-header-bg);
  border-bottom: 1px solid var(--dm-border);
}

.dm-page-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.dm-article {
  padding: 2.5rem 0 4rem;
}

.dm-article .dm-prose {
  max-width: 800px;
  margin: 0 auto;
}

.dm-prose h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.dm-prose h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.dm-prose p,
.dm-prose li {
  font-size: 1rem;
}

.dm-prose ul {
  padding-inline-start: 1.25rem;
}

/* Footer */
.dm-footer {
  color: #c8d4ce;
}

.dm-newsletter {
  background: linear-gradient(135deg, #0d4a4f 0%, #0a3538 100%);
  padding: 3rem 0;
  color: var(--dm-white);
}

.dm-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.dm-newsletter .title,
.dm-newsletter h3 {
  color: var(--dm-white);
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.dm-newsletter-sub {
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.dm-input-group {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.dm-input-group .form-control {
  flex: 1 1 220px;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid var(--dm-border);
  padding: 0.65rem 1.1rem;
  font-family: var(--dm-font);
}

.dm-newsletter-btn {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  flex-shrink: 0;
}

.dm-footer-main {
  background: #1a2f2a;
  padding: 3rem 0 1.5rem;
}

.dm-footer-title {
  color: var(--dm-white);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.dm-footer-intro {
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.dm-social {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dm-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dm-social a:hover {
  background: rgba(var(--dm-base-rgb), 0.35);
}

.dm-social img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.dm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-footer-links li {
  margin-bottom: 0.5rem;
}

.dm-footer-links a {
  color: #b8c9c2;
}

.dm-footer-links a:hover {
  color: var(--dm-base-2);
}

.dm-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-contact-list li {
  margin-bottom: 0.65rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.dm-contact-list a {
  color: #b8c9c2;
}

.dm-contact-list a:hover {
  color: var(--dm-base-2);
}

.dm-contact-icon {
  flex-shrink: 0;
}

.dm-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #8fa39a;
}

.dm-app-badges-wrap .dm-app-badges {
  justify-content: flex-start;
}

code {
  font-size: 0.9em;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

/* ----- Download platform cards ----- */
.dm-platform-grid {
  max-width: 820px;
  margin-inline: auto;
}

.dm-platform-card {
  background: var(--dm-white);
  border: 1px solid var(--dm-border);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dm-platform-card:hover {
  border-color: rgba(var(--dm-base-rgb), 0.45);
  box-shadow: 0 14px 36px rgba(var(--dm-base-rgb), 0.12);
}

.dm-platform-card--android {
  background: linear-gradient(
    180deg,
    rgba(var(--dm-base-rgb), 0.08),
    var(--dm-white) 55%
  );
}

.dm-platform-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.dm-platform-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.dm-platform-hint {
  font-size: 0.92rem;
  color: var(--dm-body);
  margin-bottom: 1.25rem;
}

.dm-platform-note,
.dm-apk-version {
  font-size: 0.88rem;
  color: var(--dm-body);
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.dm-btn--block {
  width: 100%;
  max-width: 280px;
}

.dm-download-notes {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}

.dm-download-note {
  margin: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.dm-download-note--info {
  color: var(--dm-title);
  font-weight: 700;
}

.dm-download-note--warn {
  color: #b45309;
  font-weight: 600;
}

.dm-footer-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dm-footer-app-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e6f0eb !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.dm-footer-app-link:hover {
  background: rgba(var(--dm-base-rgb), 0.22);
  color: #fff !important;
}

@media (max-width: 767.98px) {
  .dm-platform-card {
    padding: 1.5rem 1.15rem;
  }

  .dm-btn--block {
    max-width: none;
  }
}

/* ----- Deliveryman registration form ----- */
.dm-page-hero-sub {
  margin: 0.75rem 0 0;
  max-width: 640px;
  color: var(--dm-body);
}

.dm-section--form {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.dm-form-card {
  background: var(--dm-white);
  border: 1px solid var(--dm-border);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.dm-form-section-head h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.dm-form-hint,
.dm-upload-hint {
  font-size: 0.875rem;
  color: var(--dm-body);
  margin: 0.35rem 0 0;
}

.dm-field-error {
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1.25rem;
  margin-top: 0.25rem;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #c0392b;
}

.dm-upload-zone {
  border: 1px dashed var(--dm-border);
  border-radius: 12px;
  padding: 1rem;
  background: var(--dm-section-bg);
}

.dm-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dm-upload-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--dm-border);
}

.dm-recaptcha-wrap {
  min-height: 78px;
}

.dm-hero-apply-wrap {
  margin-top: 1rem;
  text-align: center;
}

.dm-form-disabled .dm-form-card {
  padding: 2.5rem 1.5rem;
}

.dm-delivery-apply-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--dm-border);
  background: var(--dm-white);
  color: var(--dm-title);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.dm-delivery-apply-link:hover {
  border-color: rgba(var(--dm-base-rgb), 0.55);
  background: rgba(var(--dm-base-rgb), 0.08);
  color: var(--dm-title);
}

.dm-stepper {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.dm-stepper-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--dm-border);
  border-radius: 999px;
  background: var(--dm-white);
  color: var(--dm-body);
  flex: 1 1 220px;
}

.dm-stepper-item.active {
  border-color: rgba(var(--dm-base-rgb), 0.55);
  background: rgba(var(--dm-base-rgb), 0.08);
  color: var(--dm-title);
  font-weight: 700;
}

.dm-stepper-item.completed {
  border-color: rgba(var(--dm-base-rgb), 0.35);
}

.dm-stepper-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--dm-section-bg);
  font-size: 0.875rem;
  font-weight: 700;
}

.dm-stepper-item.active .dm-stepper-num {
  background: var(--dm-primary);
  color: var(--dm-title);
}

.dm-store-map {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  border: 1px solid var(--dm-border);
  overflow: hidden;
  background: var(--dm-section-bg);
}

.dm-map-alert {
  font-size: 0.875rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  background: rgba(var(--dm-base-rgb), 0.12);
  color: var(--dm-title);
}

.dm-map-alert--error {
  background: #fdecea;
  color: #c0392b;
}

.dm-plan-card {
  border: 1px solid var(--dm-border);
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--dm-section-bg);
}

.dm-plan-card--selected {
  border-color: rgba(var(--dm-base-rgb), 0.55);
  box-shadow: 0 0 0 1px rgba(var(--dm-base-rgb), 0.2);
}

.dm-plan-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.dm-page-main { padding: 2rem 0 4rem; }
.dm-legal-content { max-width: 800px; margin: 0 auto; }
.dm-legal-content h1 { margin-bottom: 1.5rem; }
.dm-legal-content h2 { font-size: 1.25rem; margin-top: 2rem; }
.dm-legal-content p, .dm-legal-content li { font-size: 1rem; line-height: 1.75; }
.dm-legal-content ul { padding-left: 1.25rem; }
