/* ── Reset & scope ── */
.dl-page * { box-sizing: border-box; }
.dl-page {
  font-family: var(--wp--preset--font-family--figtree, 'Figtree', sans-serif);
  color: var(--wp--preset--color--dark, #515151);
  width: 100%;
}

/* ── Typography ── */
.dl-h2 {
  font-size: clamp(2rem, 3.5rem + 0.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.dl-h3 {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.dl-body {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* ── Container ── */
.dl-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ── Section padding ── */
.dl-section {
  padding: clamp(3rem, 4.5rem + 1vw, 4.5rem) clamp(1.25rem, 3.5rem + 1vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.75rem;
}

/* ── Buttons ── */
.dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 3.5rem;
  border-radius: 32px;
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.dl-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.dl-btn--green {
  background-color: var(--wp--preset--color--green, #098950);
  color: #fff;
}
.dl-btn--green-outline {
  background-color: transparent;
  color: var(--wp--preset--color--green, #098950);
  border: 3px solid var(--wp--preset--color--green, #098950);
}

/* ── Section header (centered title + lead) ── */
.dl-section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.dl-section-header .dl-h2 { color: var(--wp--preset--color--dark, #515151); }

/* ── CTA block (button + hint) ── */
.dl-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.dl-hero .dl-cta-block {
  align-items: flex-start;
}
.dl-hero .dl-cta-hint {
  text-align: left;
}
.dl-cta-hint {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--wp--preset--color--green, #098950);
  text-align: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-hero {
  padding: clamp(3rem, 4.5rem + 1vw, 4.5rem) clamp(1.25rem, 3.5rem + 1vw, 3.5rem);
  background: #fcfbfa;
}
.dl-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6.25rem;
}
.dl-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dl-hero__title {
  font-size: clamp(2rem, 3.5rem + 0.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-hero__lead {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dl-hero__image img {
  width: 100%;
  max-width: 580px;
  border-radius: 50%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. SIGNALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-signals { background: #fcfbfa; }

.dl-pills-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.dl-pills-hint__text {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--primary, #FF8C23);
  text-align: center;
}
.dl-pills-hint__arrow {
  width: 32px;
  height: 32px;
}

.dl-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}
.dl-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 1.5rem;
  border: 3px solid var(--wp--preset--color--primary, #FF8C23);
  border-radius: 20px;
  background: #fff;
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.dl-pill--active,
.dl-pill:hover {
  background: var(--wp--preset--color--primary, #FF8C23);
  color: #fff;
}

.dl-questions-box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dl-questions-box__title {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dl-questions-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.dl-questions-list__dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--wp--preset--color--primary, #FF8C23);
  flex-shrink: 0;
}
.dl-questions-list__text {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. AT A GLANCE (orange bg)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-glance {
  background: linear-gradient(180deg, #ff9b29 2.46%, #ff831f 80.07%, #ff761a 94.18%);
}
.dl-glance .dl-section-header .dl-h2,
.dl-glance .dl-section-header .dl-body { color: #fff; }

.dl-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
}
.dl-glance-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.dl-glance-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff3e9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dl-glance-card__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.dl-glance-card__body { display: flex; flex-direction: column; gap: 0.5rem; }
.dl-glance-card__label {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-glance-card__value {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. BRANDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-brands { background: #fcfbfa; }

.dl-brands-row {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
}
.dl-brand-card {
  width: 186px;
  height: 116px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}
.dl-brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. 7 STEPS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-steps { background: #fcfbfa; }

.dl-steps-layout {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
}

.dl-steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.dl-step-item {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}
.dl-step-item:hover { background: #fff3e9; }
.dl-step-item.active {
  background: var(--wp--preset--color--primary, #FF8C23);
}
.dl-step-item__left {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.dl-step-item__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(81,81,81,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.dl-step-item.active .dl-step-item__num {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.dl-step-item__title {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  white-space: nowrap;
}
.dl-step-item.active .dl-step-item__title { color: #fff; }
.dl-step-item__chevron {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  flex-shrink: 0;
}
.dl-step-item.active .dl-step-item__chevron { opacity: 1; filter: brightness(0) invert(1); }

.dl-steps-detail {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dl-steps-detail__label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--primary, #FF8C23);
}
.dl-steps-detail__title {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-steps-detail__body {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
}
.dl-steps-detail__body strong { font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. CLARITY (grey bg)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-clarity { background: var(--wp--preset--color--grey, #efefef); }

.dl-output-cards {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  align-items: stretch;
}
.dl-output-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dl-output-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.dl-output-card__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.dl-output-card__title {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-output-card__text {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-testimonials { background: #fcfbfa; }

.dl-testimonials-row {
  display: flex;
  gap: 4rem;
  width: 100%;
  max-width: 1400px;
  align-items: flex-start;
}
.dl-testimonial {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-top: 2px solid #efefef;
  border-bottom: 2px solid #efefef;
  padding: 2.5rem 0;
}
.dl-testimonial__quote {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--primary, #FF8C23);
  line-height: 1.3;
  margin: 0;
}
.dl-testimonial__author {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.dl-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #efefef;
}
.dl-testimonial__info { display: flex; flex-direction: column; gap: 0; }
.dl-testimonial__name {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-testimonial__role {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 400;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. COMPARISON TABLE (orange bg)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-comparison {
  background: linear-gradient(180deg, #ff761a 2.46%, #ff8a2c 22.46%, #ff9b29 94.18%);
}
.dl-comparison .dl-section-header .dl-h2,
.dl-comparison .dl-section-header .dl-body { color: #fff; }

.dl-comparison-table {
  width: 100%;
  max-width: 1400px;
  border-collapse: separate;
  border-spacing: 0;
}
.dl-comparison-table th,
.dl-comparison-table td {
  padding: 1.5rem;
  border: 1px solid #efefef;
  vertical-align: top;
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  background: #fff;
}
.dl-comparison-table thead th:first-child {
  background: transparent;
  border: none;
}
.dl-comparison-table thead th.dl-col-typical {
  background: #efefef;
  font-weight: 700;
  border-radius: 20px 0 0 0;
}
.dl-comparison-table thead th.dl-col-delivery {
  background: #fff3e9;
  font-weight: 700;
  color: var(--wp--preset--color--primary, #FF8C23);
  border-radius: 0 20px 0 0;
}
.dl-comparison-table tbody td:first-child {
  font-weight: 700;
  background: #fff;
}
.dl-comparison-table td strong { font-weight: 700; display: block; }
.dl-comparison-table tbody tr:last-child td:first-child { border-radius: 0 0 0 20px; }
.dl-comparison-table tbody tr:last-child td:last-child { border-radius: 0 0 20px 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. CASE STUDY (dark bg)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-case-study { background: #515151; }
.dl-case-study .dl-section-header .dl-h2 { color: #fff; }

.dl-case-box {
  background: #3c3c3c;
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.dl-case-box__title {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.dl-case-tabs {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.dl-case-tab {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s;
}
.dl-case-tab.active {
  opacity: 1;
  border-bottom-color: var(--wp--preset--color--primary, #FF8C23);
}
.dl-case-content { display: none; }
.dl-case-content.active {
  display: block;
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: #fff;
}
.dl-case-nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.dl-case-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  border: 2px solid #c9c1c1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #515151;
  transition: background 0.2s;
}
.dl-case-nav__btn:hover { background: #d0d0d0; }
.dl-case-nav__dots { display: flex; gap: 6px; align-items: center; }
.dl-case-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s;
}
.dl-case-nav__dot.active { background: #fff; width: 28px; border-radius: 5px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. PATHWAYS (grey bg)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.dl-pathways { background: var(--wp--preset--color--grey, #efefef); }

.dl-pathway-cards {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  align-items: stretch;
}
.dl-pathway-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dl-pathway-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.dl-pathway-card__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.dl-pathway-card__tag {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--primary, #FF8C23);
  margin: 0;
}
.dl-pathway-card__title {
  font-size: clamp(1.5rem, 1.75rem + 0.2vw, 1.75rem);
  font-weight: 700;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}
.dl-pathway-card__text {
  font-size: clamp(1.125rem, 1.25rem + 0.1vw, 1.25rem);
  line-height: 1.4;
  color: var(--wp--preset--color--dark, #515151);
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1000px) {
  .dl-hero__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .dl-hero__image { order: -1; }
  .dl-glance-grid {
    grid-template-columns: 1fr;
  }
  .dl-brands-row { gap: 8px; }
  .dl-brand-card { width: calc(50% - 4px); max-width: 186px; }
  .dl-steps-layout { flex-direction: column; }
  .dl-output-cards { flex-direction: column; }
  .dl-testimonials-row { flex-direction: column; gap: 0; }
  .dl-comparison-table { font-size: 0.9rem; }
  .dl-comparison-table th,
  .dl-comparison-table td { padding: 0.75rem; }
  .dl-pathway-cards { flex-direction: column; }
}
@media (max-width: 600px) {
  .dl-pills-group { gap: 0.75rem; }
  .dl-pill { font-size: 1rem; height: 52px; }
  .dl-brand-card { width: calc(50% - 4px); }
  .dl-btn { font-size: 1.2rem; padding: 0 2rem; }
  .dl-comparison-table { font-size: 0.8rem; }
  .dl-comparison-table th,
  .dl-comparison-table td { padding: 0.5rem; }
}