/* ════════════════════════════════════════════════════════════════════
   DUSTPRO — bespoke brand + component layer (on top of primitives.css)
   Palette derived from DustPro's own logo, site and photography.
   Motif: the logo's dot-matrix spray fan. Geometry: clipped corners.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --dp-primary: #2E2A52;
  --dp-primary-deep: #201D3D;
  --dp-accent: #29ABE2;
  --dp-accent-deep: #1477A8;
  --dp-ink: #171923;
  --dp-muted: #5A6072;
  --dp-paper: #FFFFFF;
  --dp-paper-alt: #F3F5F9;
  --dp-line: #DCE2EC;
  --dp-font-display: 'Oswald', sans-serif;
  --dp-font-body: 'Inter', sans-serif;
  --dp-clip: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);

  /* primitives hooks */
  --ease: cubic-bezier(.22,1,.36,1);
  --focus-ring: rgba(41,171,226,.35);
  --input-border: #C9D2E0;
  --input-border-focus: var(--dp-accent);
  --input-bg: #FFFFFF;
  --input-color: var(--dp-ink);
  --input-radius: 2px;
  --error-color: #B3392B;
  --error-bg: #FDF6F3;
  --btn-bg: var(--dp-accent);
  --btn-color: #FFFFFF;
  --btn-border: var(--dp-accent);
  --btn-radius: 2px;
}

html { scroll-padding-top: 92px; }

body {
  font-family: var(--dp-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dp-ink);
  background: var(--dp-paper);
}

/* ── Layout shell ─────────────────────────────────────────────────── */
.dp-shell {
  width: min(1180px, 100% - 2 * clamp(20px, 5vw, 48px));
  margin-inline: auto;
}

section { position: relative; }

/* ── Type system ──────────────────────────────────────────────────── */
.dp-h2 {
  font-family: var(--dp-font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--dp-primary);
  max-width: 21ch;
}
.dp-sechead--center .dp-h2 { margin-inline: auto; }
.dp-h2--light { color: #FFFFFF; }

.dp-lead {
  margin: 1rem 0 0;
  color: var(--dp-muted);
  font-size: 1.06rem;
  max-width: 58ch;
}
.dp-sechead--center .dp-lead { margin-inline: auto; }

.dp-body { margin: 0 0 1.2rem; color: var(--dp-ink); max-width: 60ch; }
.dp-body--light { color: rgba(255,255,255,.88); }

.dp-accent { color: var(--dp-accent); }

/* Eyebrow + tick + dot-trail (motif) */
.dp-eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  margin: 0 0 .4rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--dp-accent-deep);
}
.dp-eyebrow--light { color: var(--dp-accent); }
.dp-tick {
  display: inline-block; width: 26px; height: 2px;
  background: var(--dp-accent); flex: none;
}

.dp-dottrail {
  display: flex; align-items: center; gap: 7px;
  margin: .35rem 0 1.1rem;
}
.dp-sechead--center .dp-dottrail { justify-content: center; }
.dp-dottrail span {
  display: block; border-radius: 50%;
  background: var(--dp-accent);
}
.dp-dottrail span:nth-child(1) { width: 8px; height: 8px; }
.dp-dottrail span:nth-child(2) { width: 7px; height: 7px; opacity: .85; }
.dp-dottrail span:nth-child(3) { width: 6px; height: 6px; opacity: .65; }
.dp-dottrail span:nth-child(4) { width: 5px; height: 5px; opacity: .45; }
.dp-dottrail span:nth-child(5) { width: 4px; height: 4px; opacity: .3; }

.dp-sechead { margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.dp-sechead--center { text-align: center; }
.dp-sechead--center .dp-eyebrow { justify-content: center; }

/* Section vertical rhythm */
.dp-stats, .dp-products, .dp-about, .dp-bbbee, .dp-why, .dp-contact {
  padding-block: clamp(4rem, 9vw, 7rem);
}
.dp-dust, .dp-sectors { padding-block: clamp(4.5rem, 10vw, 7.5rem); }

/* ── Buttons (variants on primitives .u-btn) ──────────────────────── */
.dp-btn--accent { font-weight: 600; }
.dp-btn--accent:hover { background: #33B5EC; border-color: #33B5EC; box-shadow: 0 10px 28px rgba(41,171,226,.35); }
.dp-btn--ghost {
  background: transparent; border-color: rgba(255,255,255,.55); color: #FFFFFF;
}
.dp-btn--ghost:hover { border-color: #FFFFFF; background: rgba(255,255,255,.08); }
.dp-btn--dark { background: var(--dp-primary); border-color: var(--dp-primary); }
.dp-btn--dark:hover { background: var(--dp-primary-deep); border-color: var(--dp-primary-deep); box-shadow: 0 10px 28px rgba(32,29,61,.3); }
.dp-btn--lg { padding: 18px 40px; font-size: .95rem; }

.dp-textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--dp-accent); text-decoration: none;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.dp-textlink:hover { gap: .8rem; border-color: var(--dp-accent); }

/* ── Header ───────────────────────────────────────────────────────── */
.dp-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.dp-utility {
  background: var(--dp-primary-deep);
  overflow: hidden;
  max-height: 44px;
  transition: max-height .4s var(--ease);
}
.dp-utility__inner {
  display: flex; justify-content: flex-end; gap: 2rem;
  padding-block: 10px;
}
.dp-utility__item {
  display: inline-flex; align-items: center; gap: .45rem;
  color: rgba(255,255,255,.82); text-decoration: none;
  font-size: .8rem; letter-spacing: .03em;
}
a.dp-utility__item:hover { color: #FFFFFF; }
.dp-utility__item--muted { color: rgba(255,255,255,.55); }
.dp-i { width: 15px; height: 15px; fill: var(--dp-accent); flex: none; }

.dp-nav { padding-block: 14px; transition: padding .4s var(--ease); }
.dp-nav__inner { display: flex; align-items: center; gap: 2.2rem; }
.dp-nav__brand { flex: none; display: block; }
.dp-nav__brand img { width: 150px; height: auto; }

.dp-nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.dp-nav__links a {
  color: rgba(255,255,255,.92); text-decoration: none;
  font-size: .84rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding-block: 6px;
  background-image: linear-gradient(var(--dp-accent), var(--dp-accent));
  background-size: 0% 2px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .35s var(--ease), color .35s var(--ease);
}
.dp-nav__links a:hover { color: #FFFFFF; background-size: 100% 2px; }

.dp-nav__cta { flex: none; }

/* Scrolled state — frosted indigo, utility strip slides away */
.dp-header.is-scrolled {
  background: rgba(32,29,61,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(23,25,35,.35);
}
.dp-header.is-scrolled .dp-utility { max-height: 0; }
.dp-header.is-scrolled .dp-nav { padding-block: 10px; }

/* Burger */
.dp-burger {
  display: none;
  background: none; border: 0; padding: 10px;
  margin-left: auto;
  flex-direction: column; gap: 5px;
}
.dp-burger span {
  display: block; width: 24px; height: 2px;
  background: #FFFFFF; transition: transform .3s var(--ease);
}

/* ── Mobile menu overlay ──────────────────────────────────────────── */
.dp-mobile {
  position: fixed; inset: 0; z-index: 140;
  background: linear-gradient(160deg, var(--dp-primary) 0%, var(--dp-primary-deep) 100%);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
}
.dp-mobile[aria-hidden="false"] {
  opacity: 1; visibility: visible; transform: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s 0s;
}
.dp-mobile__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.dp-mobile__head img { width: 140px; height: auto; }
.dp-mobile__close { background: none; border: 0; padding: 10px; }
.dp-mobile__close svg { width: 26px; height: 26px; fill: #FFFFFF; }

.dp-mobile__links {
  display: flex; flex-direction: column; gap: .4rem;
  padding: 8vh clamp(20px, 5vw, 48px) 0;
}
.dp-mobile__links a {
  color: #FFFFFF; text-decoration: none;
  font-family: var(--dp-font-display); font-weight: 500;
  font-size: clamp(1.7rem, 6vw, 2.3rem);
  letter-spacing: .04em; text-transform: uppercase;
  padding-block: .35rem;
}
.dp-mobile__links a:active { color: var(--dp-accent); }
.dp-mobile__cta {
  margin-top: 1.6rem; align-self: flex-start;
  font-size: .9rem !important; font-family: var(--dp-font-body) !important;
  letter-spacing: .14em !important;
}
.dp-mobile__foot {
  margin-top: auto; padding-block: 24px;
  display: flex; flex-direction: column; gap: .5rem;
}
.dp-mobile__foot a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .95rem; }

/* ── Hero ─────────────────────────────────────────────────────────── */
.dp-hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--dp-primary-deep);
  padding-block: 140px 90px;
}
.dp-hero__bg { position: absolute; inset: -12% 0; z-index: 0; }
.dp-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.dp-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(78deg, rgba(32,29,61,.94) 0%, rgba(32,29,61,.78) 34%, rgba(46,42,82,.42) 62%, rgba(46,42,82,.55) 100%),
    linear-gradient(0deg, rgba(32,29,61,.55) 0%, rgba(32,29,61,0) 34%);
}
.dp-hero__fan {
  position: absolute; z-index: 2;
  right: -30px; top: 50%; transform: translateY(-50%);
  width: clamp(220px, 26vw, 380px); height: auto;
  color: var(--dp-accent); opacity: .3;
}
.dp-hero__inner { position: relative; z-index: 3; }

.dp-hero__title {
  font-family: var(--dp-font-display); font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  line-height: 1.08; letter-spacing: .01em;
  color: #FFFFFF; text-transform: uppercase;
  max-width: 19ch;
  margin: 0 0 1.3rem;
}
.dp-hero__title .dp-accent { display: block; font-weight: 600; margin-top: .18em; }

.dp-hero__eyebrow { margin-bottom: 1.1rem; }

.dp-hero__sub {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  max-width: 54ch; margin: 0 0 2.1rem;
}

.dp-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.dp-hero__trust {
  display: flex; flex-wrap: wrap; gap: .55rem 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.22);
  max-width: 780px;
}
.dp-hero__trust li {
  position: relative;
  color: rgba(255,255,255,.78);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding-left: 16px;
}
.dp-hero__trust li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  transform: translateY(-50%);
  background: var(--dp-accent);
}

.dp-hero__cue {
  position: absolute; z-index: 3;
  left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.35);
  animation: dp-cue 2.4s var(--ease) infinite;
}
.dp-hero__cue svg { width: 20px; height: 20px; fill: rgba(255,255,255,.85); }
@keyframes dp-cue {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Hero load-in stagger */
.is-hero-animate {
  opacity: 0;
  transform: translateY(26px);
  animation: dp-hero-in 1s var(--ease) forwards;
}
.dp-hero__eyebrow.is-hero-animate { animation-delay: .15s; }
.dp-hero__title.is-hero-animate  { animation-delay: .3s; }
.dp-hero__sub.is-hero-animate    { animation-delay: .48s; }
.dp-hero__actions.is-hero-animate{ animation-delay: .64s; }
.dp-hero__trust.is-hero-animate  { animation-delay: .82s; }
@keyframes dp-hero-in { to { opacity: 1; transform: none; } }

/* ── Stats band ───────────────────────────────────────────────────── */
.dp-stats { background: var(--dp-paper-alt); }
.dp-statgrid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
}
.dp-stat {
  padding-left: 1.3rem;
  border-left: 2px solid var(--dp-accent);
}
.dp-stat__num {
  display: block;
  font-family: var(--dp-font-display); font-weight: 600;
  font-size: clamp(2.3rem, 4.4vw, 3.5rem);
  line-height: 1; color: var(--dp-primary);
  white-space: nowrap;
}
.dp-stat__label {
  display: block; margin-top: .5rem;
  color: var(--dp-muted);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}

/* ── Products ─────────────────────────────────────────────────────── */
.dp-prodgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.1rem, 2.4vw, 1.8rem);
}
.dp-card {
  background: var(--dp-paper);
  border: 1px solid var(--dp-line);
  clip-path: var(--dp-clip);
  padding: 1.4rem 1.4rem 1.6rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.dp-card:hover {
  transform: translateY(-5px);
  border-color: var(--dp-accent);
  box-shadow: 0 18px 40px rgba(46,42,82,.12);
}
.dp-card__figure {
  display: flex; align-items: center; justify-content: center;
  background: var(--dp-paper-alt);
  clip-path: var(--dp-clip);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.dp-card__figure img {
  width: 150px; height: 150px; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .5s var(--ease);
}
.dp-card:hover .dp-card__figure img { transform: scale(1.07); }

.dp-card__title {
  font-family: var(--dp-font-display); font-weight: 600;
  font-size: 1.3rem; letter-spacing: .02em;
  color: var(--dp-primary);
  margin-bottom: .55rem;
}
.dp-card__blurb { color: var(--dp-muted); font-size: .95rem; margin: 0 0 1rem; }

.dp-subtypes { margin-bottom: 1rem; }
.dp-subtypes summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--dp-accent-deep);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding-block: .3rem;
}
.dp-subtypes summary::-webkit-details-marker { display: none; }
.dp-subtypes summary::after {
  content: '+';
  font-size: 1rem; line-height: 1;
  transition: transform .3s var(--ease);
}
.dp-subtypes[open] summary::after { transform: rotate(45deg); }
.dp-subtypes__list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .35rem .8rem;
  padding-top: .7rem;
}
.dp-subtypes__list li {
  position: relative; padding-left: 14px;
  font-size: .88rem; color: var(--dp-ink);
}
.dp-subtypes__list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--dp-accent);
}

.dp-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .5rem;
  align-self: flex-start;
  color: var(--dp-accent-deep); text-decoration: none;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  transition: gap .3s var(--ease);
}
.dp-card__link:hover { gap: .85rem; }

/* ── Dark plates (shared) ─────────────────────────────────────────── */
.dp-plate { background: var(--dp-primary); color: #FFFFFF; overflow: hidden; }
/* contrast guard — explicit light headings on every dark section */
.dp-plate h2, .dp-plate h3 { color: #FFFFFF; }
.dp-plate__fan {
  position: absolute; right: -60px; top: -40px;
  width: clamp(280px, 34vw, 470px); height: auto;
  color: var(--dp-accent); opacity: .1;
  pointer-events: none;
}
.dp-plate__fan--left { right: auto; left: -60px; top: auto; bottom: -40px; transform: scaleX(-1); }

/* ── Dust suppression (signature row) ─────────────────────────────── */
.dp-dust__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.dp-framed { position: relative; }
.dp-framed img { clip-path: var(--dp-clip); }
.dp-framed::before {
  content: ''; position: absolute; z-index: 1;
  left: -12px; bottom: -12px;
  width: 84px; height: 84px;
  border-left: 3px solid var(--dp-accent);
  border-bottom: 3px solid var(--dp-accent);
  pointer-events: none;
}
.dp-dust__copy .dp-body--light { max-width: 52ch; }

/* ── About ────────────────────────────────────────────────────────── */
.dp-about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}
.dp-framed--offset { margin: 18px 0 0 18px; }
.dp-framed--offset::after {
  content: ''; position: absolute; z-index: -1;
  inset: -18px 18px 18px -18px;
  background: var(--dp-paper-alt);
  clip-path: var(--dp-clip);
}
.dp-framed--offset::before {
  left: auto; right: -12px; top: -12px; bottom: auto;
  border-left: 0; border-bottom: 0;
  border-right: 3px solid var(--dp-accent);
  border-top: 3px solid var(--dp-accent);
}
.dp-pullquote {
  margin: 1.6rem 0 1rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--dp-accent);
  font-family: var(--dp-font-display); font-weight: 500;
  font-size: 1.45rem; line-height: 1.3;
  color: var(--dp-primary);
}
.dp-about__note { color: var(--dp-muted); font-size: .95rem; }
.dp-about .u-btn { margin-top: .8rem; }

/* ── Sectors ──────────────────────────────────────────────────────── */
.dp-sectors { background: var(--dp-primary-deep); }
.dp-sectors__bg { position: absolute; inset: 0; z-index: 0; }
.dp-sectors__bg img { width: 100%; height: 100%; object-fit: cover; }
.dp-sectors__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(12deg, rgba(32,29,61,.96) 0%, rgba(46,42,82,.88) 55%, rgba(32,29,61,.93) 100%);
}
.dp-sectors__inner { position: relative; z-index: 2; }
.dp-sectors h2 { color: #FFFFFF; } /* contrast guard */
.dp-sectorgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}
.dp-sectortile {
  display: flex; align-items: center; gap: .7rem;
  padding: 15px 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  clip-path: var(--dp-clip);
  color: rgba(255,255,255,.92);
  font-size: .95rem; font-weight: 500;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.dp-sectortile:hover {
  background: rgba(41,171,226,.14);
  border-color: rgba(41,171,226,.5);
  transform: translateY(-2px);
}
.dp-dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--dp-accent);
}

/* ── B-BBEE ───────────────────────────────────────────────────────── */
.dp-bbbee { background: var(--dp-paper-alt); }
.dp-bbbee__inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.dp-bbbee__badge {
  background: var(--dp-primary-deep);
  clip-path: var(--dp-clip);
  padding: 2.2rem;
  display: flex; align-items: center; justify-content: center;
}
.dp-bbbee__badge img { width: 200px; height: auto; }
.dp-bbbee__sub {
  font-family: var(--dp-font-display); font-weight: 500;
  font-size: 1.35rem; color: var(--dp-accent-deep);
  margin: .2rem 0 .8rem;
}
.dp-bbbee__copy .dp-body { margin-bottom: 0; }

/* ── Why DustPro ──────────────────────────────────────────────────── */
.dp-whygrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.dp-whycard {
  border-top: 1px solid var(--dp-line);
  padding-top: 1.4rem;
  display: grid; grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.1rem;
}
.dp-whycard__num {
  grid-row: 1 / 3;
  font-family: var(--dp-font-display); font-weight: 600;
  font-size: 2rem; line-height: 1;
  color: var(--dp-accent);
}
.dp-whycard__title {
  font-family: var(--dp-font-display); font-weight: 600;
  font-size: 1.18rem; letter-spacing: .01em;
  color: var(--dp-primary);
  margin-bottom: .45rem;
}
.dp-whycard__text { margin: 0; color: var(--dp-muted); font-size: .95rem; max-width: 44ch; }

/* ── CTA band ─────────────────────────────────────────────────────── */
.dp-cta {
  background: var(--dp-primary-deep);
  padding-block: clamp(4.5rem, 9vw, 6.5rem);
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 0 100%);
}
.dp-cta__bg { position: absolute; inset: 0; z-index: 0; }
.dp-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.dp-cta__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(85deg, rgba(32,29,61,.9) 0%, rgba(32,29,61,.6) 60%, rgba(32,29,61,.75) 100%);
}
.dp-cta__inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.dp-cta__title {
  font-family: var(--dp-font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.2; color: #FFFFFF;
  max-width: 24ch;
}
.dp-cta__title .dp-accent { display: block; font-weight: 600; margin-top: .15em; }

/* ── Contact ──────────────────────────────────────────────────────── */
.dp-contact__grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: start;
}
.dp-detaillist { display: flex; flex-direction: column; }
.dp-detaillist li {
  display: grid; gap: .15rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--dp-line);
}
.dp-detaillist li:first-child { padding-top: 0; }
.dp-detaillist__label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dp-muted);
}
.dp-detaillist a, .dp-detaillist li > span:not(.dp-detaillist__label) {
  color: var(--dp-ink); text-decoration: none;
  font-size: 1.05rem; font-weight: 500;
}
.dp-detaillist a:hover { color: var(--dp-accent-deep); }

.dp-maplink {
  margin-top: 1.4rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 13px 22px;
  border: 1px solid var(--dp-accent-deep);
  border-radius: 2px;
  color: var(--dp-accent-deep); text-decoration: none;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.dp-maplink:hover { background: var(--dp-accent-deep); color: #FFFFFF; }
.dp-maplink:hover .dp-i { fill: #FFFFFF; }
.dp-maplink .dp-i { fill: var(--dp-accent-deep); transition: fill .3s var(--ease); }

.dp-form {
  background: var(--dp-paper-alt);
  clip-path: var(--dp-clip);
  padding: clamp(1.6rem, 3.4vw, 2.6rem);
}
.dp-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem;
}
.dp-form label { color: var(--dp-primary); font-weight: 600; }
.dp-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235A6072'%3E%3Cpath d='M12 15.6 5.4 9l1.4-1.4L12 12.8l5.2-5.2L18.6 9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
}
.dp-form__actions { display: flex; flex-direction: column; gap: .9rem; margin-top: .4rem; }
.dp-form__alt {
  align-self: center;
  color: var(--dp-accent-deep);
  font-size: .9rem; font-weight: 500;
}
.dp-form__micro {
  margin: 1rem 0 0; text-align: center;
  font-size: .82rem; color: var(--dp-muted);
}

/* ── Footer ───────────────────────────────────────────────────────── */
.dp-footer {
  background: var(--dp-primary-deep);
  color: rgba(255,255,255,.8);
  padding-top: clamp(3.2rem, 6vw, 4.5rem);
}
.dp-footer__inner {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.6rem;
}
.dp-footer__brand img { width: 160px; height: auto; margin-bottom: 1rem; }
.dp-footer__tag { margin: 0; font-size: .92rem; color: rgba(255,255,255,.6); max-width: 30ch; }
.dp-footer__nav { display: flex; flex-direction: column; gap: .55rem; }
.dp-footer__nav a, .dp-footer__contact a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .95rem;
  transition: color .3s var(--ease);
}
.dp-footer__nav a:hover, .dp-footer__contact a:hover { color: var(--dp-accent); }
.dp-footer__contact { display: flex; flex-direction: column; gap: .55rem; }
.dp-footer__contact span { font-size: .95rem; color: rgba(255,255,255,.6); }
.dp-footer__fine {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.3rem;
}
.dp-footer__fine p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ── WhatsApp FAB ─────────────────────────────────────────────────── */
.dp-fab {
  position: fixed; z-index: 120;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25D366;
  box-shadow: 0 10px 28px rgba(23,25,35,.3);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease), box-shadow .3s var(--ease);
}
.dp-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.dp-fab:hover { box-shadow: 0 14px 34px rgba(23,25,35,.42); }
.dp-fab svg { width: 28px; height: 28px; fill: #FFFFFF; }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .dp-nav__links { gap: 1.3rem; }
}

@media (max-width: 980px) {
  .dp-utility { display: none; }
  .dp-nav__links, .dp-nav__cta { display: none; }
  .dp-burger { display: flex; }
  .dp-header { background: transparent; }
  .dp-header.is-scrolled .dp-nav { padding-block: 12px; }

  .dp-statgrid { grid-template-columns: 1fr 1fr; gap: 2rem 1.6rem; }
  .dp-dust__inner, .dp-about__inner, .dp-contact__grid { grid-template-columns: 1fr; }
  .dp-about__media { order: -1; }
  .dp-framed--offset { margin: 18px 18px 0 18px; }
  .dp-whygrid { grid-template-columns: 1fr; }
  .dp-bbbee__inner { grid-template-columns: 1fr; justify-items: start; }
  .dp-bbbee__badge { padding: 1.8rem; }
  .dp-cta__inner { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .dp-hero { padding-block: 120px 80px; }
  .dp-hero__actions .u-btn { width: 100%; }
  .dp-hero__trust { gap: .5rem 1.2rem; }
  .dp-hero__fan { display: none; }
  .dp-statgrid { grid-template-columns: 1fr; }
  .dp-stat { padding-left: 1.1rem; }
  .dp-form__row { grid-template-columns: 1fr; gap: 0; }
  .dp-cta { clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%); }
  .dp-footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .dp-fab { right: 16px; bottom: 16px; }
}
