:root {
  --dmp-primary: #0088de;
  --dmp-primary-rgb: 0, 136, 222;
  --dmp-accent: #00d9ff;
  --dmp-dark: #071224;
  --dmp-black: #020711;
  --dmp-white: #ffffff;
  --dmp-muted: #6b7483;
  --dmp-light: #f3f7fb;
  --dmp-border: rgba(7, 18, 36, .12);
  --dmp-shadow: 0 30px 80px rgba(2, 7, 17, .18);
  --dmp-radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.dmp-body {
  margin: 0;
  font-family: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dmp-dark);
  background: var(--dmp-white);
  overflow-x: hidden;
}
body.dmp-body.admin-bar .dmp-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.dmp-page-loader {
  position: fixed;
  inset: 0;
  background: var(--dmp-dark);
  z-index: 10000;
  display: grid;
  place-items: center;
  animation: dmpLoaderExit .8s ease 1.1s forwards;
  pointer-events: none;
}
.dmp-page-loader span {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255,255,255,.2);
  border-top-color: var(--dmp-primary);
  border-radius: 50%;
  animation: dmpSpin 1s linear infinite;
}
@keyframes dmpSpin { to { transform: rotate(360deg); } }
@keyframes dmpLoaderExit { to { opacity: 0; visibility: hidden; } }

.dmp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.dmp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.dmp-header.is-scrolled {
  background: rgba(7, 18, 36, .94);
  backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.dmp-header__inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dmp-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.dmp-logo img { max-height: 56px; width: auto; }
.dmp-logo__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dmp-primary), var(--dmp-accent));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  box-shadow: 0 0 0 8px rgba(255,255,255,.08);
}
.dmp-logo__text { font-family: 'Oswald', sans-serif; font-size: 24px; }
.dmp-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dmp-nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
}
.dmp-nav > a:not(.dmp-nav__cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: var(--dmp-primary);
  transition: width .25s ease;
}
.dmp-nav > a:hover::after { width: 100%; }
.dmp-nav__cta {
  padding: 13px 20px;
  background: var(--dmp-primary);
  border: 2px solid var(--dmp-primary);
  box-shadow: 0 12px 26px rgba(var(--dmp-primary-rgb), .36);
}
.dmp-nav__cta:hover { background: #fff; color: var(--dmp-dark); }
.dmp-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}
.dmp-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.dmp-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--dmp-dark);
  display: grid;
  align-items: center;
  padding: 125px 0 120px;
}
.dmp-hero__slider,
.dmp-hero__slide,
.dmp-hero__shade {
  position: absolute;
  inset: 0;
}
.dmp-hero__slide {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.1s ease, transform 7s ease;
  background-size: cover;
  background-position: center;
}
.dmp-hero__slide.is-active { opacity: 1; transform: scale(1); }
.dmp-hero__slide--1 { background: radial-gradient(circle at 25% 30%, rgba(var(--dmp-primary-rgb), .58), transparent 30%), linear-gradient(120deg, #071224 0%, #132236 40%, #0f91df 100%); }
.dmp-hero__slide--2 { background: radial-gradient(circle at 75% 25%, rgba(0,217,255,.48), transparent 26%), linear-gradient(120deg, #08101f 0%, #053f66 52%, #1b9de8 100%); }
.dmp-hero__slide--3 { background: radial-gradient(circle at 70% 70%, rgba(var(--dmp-primary-rgb), .5), transparent 30%), linear-gradient(120deg, #030811 0%, #0c2238 56%, #00b7ff 100%); }
.dmp-hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}
.dmp-hero__shade { background: linear-gradient(90deg, rgba(1,6,15,.9), rgba(1,6,15,.66) 40%, rgba(1,6,15,.24)); }
.dmp-hero__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: start;
  z-index: 2;
  width: min(1240px, calc(100% - 32px));
  max-width: none;
  margin: 0 auto;
}
.dmp-hero__copy {
  max-width: 740px;
  margin-right: auto;
  margin-left: -8px;
  text-align: left;
}
.dmp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.dmp-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dmp-primary);
  box-shadow: 0 0 0 7px rgba(var(--dmp-primary-rgb), .18);
}
.dmp-hero h1 {
  margin: 18px 0 14px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6.1vw, 84px);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.03em;
}
.dmp-hero h1 strong { color: var(--dmp-primary); }
.dmp-hero p {
  max-width: 700px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.72;
}
.dmp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}
.dmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}
.dmp-hero .dmp-btn {
  clip-path: none !important;
  border-radius: 0 !important;
}
.dmp-btn:hover { transform: translateY(-4px); }
.dmp-btn--primary { background: var(--dmp-primary); color: #fff; box-shadow: 0 18px 40px rgba(var(--dmp-primary-rgb), .32); }
.dmp-btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.dmp-btn--white { background: #fff; color: var(--dmp-dark); }
.dmp-btn--outline-white { border-color: #fff; color: #fff; }
.dmp-hero-card {
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.dmp-hero-card__screen {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  backdrop-filter: blur(20px);
  box-shadow: var(--dmp-shadow);
  min-height: 460px;
  transform: rotate(-2deg);
}
.dmp-hero-card__screen::before {
  content: '';
  position: absolute;
  inset: -18px;
  border: 2px solid rgba(255,255,255,.16);
  transform: rotate(5deg);
  z-index: -1;
}
.dmp-window-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.dmp-window-bar span { width: 12px; height: 12px; border-radius: 50%; background: var(--dmp-primary); }
.dmp-window-bar span:nth-child(2) { background: var(--dmp-accent); }
.dmp-window-bar span:nth-child(3) { background: #fff; }
.dmp-mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dmp-mini-dashboard div {
  padding: 18px;
  min-height: 110px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.dmp-mini-dashboard small { display: block; color: rgba(255,255,255,.72); font-weight: 700; }
.dmp-mini-dashboard b { color: #fff; font-family: 'Oswald'; font-size: 44px; }
.dmp-mini-dashboard em { color: var(--dmp-accent); font-style: normal; font-weight: 900; }
.dmp-chart-bars { display: flex; align-items: flex-end; gap: 16px; height: 180px; margin: 30px 10px 22px; }
.dmp-chart-bars i {
  flex: 1;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, var(--dmp-accent), var(--dmp-primary));
  box-shadow: 0 18px 40px rgba(var(--dmp-primary-rgb), .25);
  transform-origin: bottom;
  animation: dmpBars 2.4s ease-in-out infinite alternate;
}
.dmp-chart-bars i:nth-child(1) { height: 44%; animation-delay: .1s; }
.dmp-chart-bars i:nth-child(2) { height: 72%; animation-delay: .3s; }
.dmp-chart-bars i:nth-child(3) { height: 55%; animation-delay: .5s; }
.dmp-chart-bars i:nth-child(4) { height: 88%; animation-delay: .7s; }
.dmp-chart-bars i:nth-child(5) { height: 64%; animation-delay: .9s; }
@keyframes dmpBars { from { transform: scaleY(.72); } to { transform: scaleY(1); } }
.dmp-hero-card__note {
  padding: 18px;
  background: #fff;
  color: var(--dmp-dark);
}
.dmp-hero-card__note span { display:block; color: var(--dmp-primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.dmp-hero-card__note strong { display: block; margin-top: 8px; font-size: 18px; line-height: 1.4; }
.dmp-hero__geometry { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.dmp-shape { position: absolute; border: 3px solid rgba(255,255,255,.14); }
.dmp-shape--circle { width: 380px; height: 380px; border-radius: 50%; left: -110px; top: 120px; animation: dmpFloat 10s ease-in-out infinite; }
.dmp-shape--diamond { width: 310px; height: 310px; right: 12%; top: 17%; transform: rotate(45deg); animation: dmpFloat 12s ease-in-out infinite reverse; }
.dmp-shape--square { width: 170px; height: 170px; right: 6%; bottom: 12%; animation: dmpFloat 9s ease-in-out infinite; }
@keyframes dmpFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -24px; } }
.dmp-hero__caption {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 4;
  width: min(760px, calc(100% - 36px));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px 28px;
  color: #fff;
  background: var(--dmp-primary);
  clip-path: polygon(0 0, 100% 0, calc(100% - 24px) 100%, 24px 100%);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.dmp-hero__caption strong {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-size: 22px;
  text-align: center;
}
.dmp-hero__caption span {
  display: block;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  text-align: center;
}

.dmp-discipline-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: clamp(240px, 17vw, 330px);
  background: var(--dmp-dark);
  overflow: hidden;
}
.dmp-discipline {
  position: relative;
  min-height: clamp(240px, 17vw, 330px);
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #071224, #0088de);
}
.dmp-discipline--1 { background: linear-gradient(135deg, #0c2c46, #0088de); }
.dmp-discipline--2 { background: linear-gradient(135deg, #111827, #00a6ed); }
.dmp-discipline--3 { background: linear-gradient(135deg, #06233b, #20d5ff); }
.dmp-discipline--4 { background: linear-gradient(135deg, #071224, #0075be); }
.dmp-discipline--5 { background: linear-gradient(135deg, #0c1a2b, #00b3ff); }
.dmp-discipline--6 { background: linear-gradient(135deg, #020711, #0088de); }
.dmp-discipline__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.08) contrast(1.03) brightness(.86);
  transform: scale(1.01);
  transition: transform .7s ease, filter .7s ease;
}
.dmp-discipline::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,18,36,.10) 0%, rgba(7,18,36,.32) 42%, rgba(0,0,0,.76) 100%), radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.25) 72%);
  transition: background .45s ease, opacity .45s ease;
}
.dmp-discipline::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 130px;
  height: 130px;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.dmp-discipline:hover .dmp-discipline__image { transform: scale(1.09); filter: saturate(1.16) contrast(1.06) brightness(.98); }
.dmp-discipline:hover::before { background: linear-gradient(180deg, rgba(7,18,36,.05) 0%, rgba(7,18,36,.20) 42%, rgba(0,0,0,.68) 100%); }
.dmp-discipline:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.dmp-discipline__overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 26px 18px;
  text-align: center;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,.62);
  background: linear-gradient(180deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,.22) 48%, rgba(0,0,0,.54) 100%);
}
.dmp-discipline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(78px, 5.8vw, 110px);
  height: clamp(78px, 5.8vw, 110px);
  margin: 0 0 14px;
}
.dmp-discipline__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 4px 13px rgba(0,0,0,.38));
}
.dmp-discipline__icon .dmp-stroke {
  fill: none;
  stroke: rgba(255,255,255,.98);
  stroke-width: 5.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dmp-discipline__icon .dmp-fill {
  fill: rgba(255,255,255,.98);
  stroke: none;
}
.dmp-discipline__overlay h3 { margin: 0; max-width: 92%; font-family: 'Oswald'; font-size: clamp(20px, 1.6vw, 28px); line-height: 1.08; text-transform: uppercase; }

.dmp-section { padding: 96px 0; }
.dmp-section--light { background: var(--dmp-light); }
.dmp-title { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.dmp-title--left { text-align: left; margin-left: 0; }
.dmp-title span {
  color: var(--dmp-primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.dmp-title h2,
.dmp-faq h2,
.dmp-demo h2,
.dmp-slant-panel h2 {
  margin: 0 0 14px;
  font-family: 'Oswald';
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
}
.dmp-title h2::after {
  content: '';
  display: block;
  width: 58px;
  height: 5px;
  margin: 18px auto 0;
  background: var(--dmp-primary);
}
.dmp-title--left h2::after { margin-left: 0; }
.dmp-title p { color: var(--dmp-muted); font-size: 18px; line-height: 1.7; }
.dmp-title--white h2,
.dmp-title--white p { color: #fff; }

.dmp-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dmp-plan {
  position: relative;
  padding: 38px 32px;
  background: #fff;
  border: 1px solid var(--dmp-border);
  box-shadow: 0 18px 54px rgba(7,18,36,.07);
  min-height: 360px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dmp-plan::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(var(--dmp-primary-rgb), .12);
}
.dmp-plan:hover { transform: translateY(-10px); box-shadow: var(--dmp-shadow); }
.dmp-plan.is-featured { background: var(--dmp-dark); color: #fff; transform: translateY(-18px); }
.dmp-plan__badge {
  display: inline-block;
  padding: 7px 12px;
  background: var(--dmp-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.dmp-plan h3 { font-family: 'Oswald'; font-size: 34px; text-transform: uppercase; margin: 18px 0 8px; }
.dmp-plan__audience { color: var(--dmp-muted); font-weight: 700; }
.dmp-plan.is-featured .dmp-plan__audience { color: rgba(255,255,255,.75); }
.dmp-plan__price { color: var(--dmp-primary); font-family: 'Oswald'; font-size: 34px; margin: 18px 0; }
.dmp-plan p { line-height: 1.7; }
.dmp-plan__link { display: inline-flex; margin-top: 16px; color: var(--dmp-primary); font-weight: 900; text-transform: uppercase; }
.dmp-plan__link::after { content: '→'; margin-left: 8px; }

.dmp-features { background: #fff; position: relative; overflow: hidden; }
.dmp-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--dmp-primary-rgb), .05), transparent 48%), radial-gradient(circle at 100% 20%, rgba(var(--dmp-primary-rgb), .1), transparent 30%);
  pointer-events: none;
}
.dmp-feature-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dmp-feature {
  position: relative;
  padding: 30px 24px;
  border: 1px solid rgba(var(--dmp-primary-rgb), .22);
  background-color: rgba(255,255,255,.96);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
  min-height: 230px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  box-shadow: 0 14px 34px rgba(2,7,17,.06);
  transition: transform .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.dmp-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--dmp-primary-rgb), .40), rgba(255,255,255,.92));
  transition: background .3s ease, opacity .3s ease;
  z-index: 0;
}
.dmp-feature::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: #eef3f8;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 2;
}
.dmp-feature > * { position: relative; z-index: 1; }
.dmp-feature:hover {
  transform: translateY(-8px);
  color: #fff;
  border-color: rgba(var(--dmp-primary-rgb), .5);
  box-shadow: 0 22px 46px rgba(2,7,17,.14);
}
.dmp-feature:hover::before {
  background: linear-gradient(180deg, rgba(7,18,36,.68), rgba(var(--dmp-primary-rgb), .78));
}
.dmp-feature__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: var(--dmp-primary);
  color: #fff;
  font-family: 'Oswald';
  font-size: 24px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 12px 24px rgba(var(--dmp-primary-rgb), .24);
}
.dmp-feature h3 { font-family: 'Oswald'; text-transform: uppercase; font-size: 24px; margin: 0 0 10px; }
.dmp-feature p { color: #4f5d73; line-height: 1.65; margin: 0; }
.dmp-feature:hover p,
.dmp-feature:hover h3 { color: rgba(255,255,255,.95); }
.dmp-feature:hover .dmp-feature__icon { background: #fff; color: var(--dmp-primary); }
.dmp-feature--1 { background-image: url('https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--2 { background-image: url('https://images.pexels.com/photos/5234778/pexels-photo-5234778.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--3 { background-image: url('https://images.pexels.com/photos/4386370/pexels-photo-4386370.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--4 { background-image: url('https://images.pexels.com/photos/6456141/pexels-photo-6456141.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--5 { background-image: url('https://images.pexels.com/photos/3756042/pexels-photo-3756042.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--6 { background-image: url('https://images.pexels.com/photos/590022/pexels-photo-590022.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--7 { background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1200'); }
.dmp-feature--8 { background-image: url('https://images.pexels.com/photos/607812/pexels-photo-607812.jpeg?auto=compress&cs=tinysrgb&w=1200'); }

.dmp-parallax {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
.dmp-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,7,17,.74), rgba(2,7,17,.32) 42%, rgba(2,7,17,.12) 100%);
}
.dmp-parallax--cta {
  min-height: 560px;
  background-image: linear-gradient(135deg, #031629, #0088de);
}
.dmp-parallax--cta::before {
  background: linear-gradient(90deg, rgba(2,7,17,.20) 0, rgba(2,7,17,.08) 38%, rgba(var(--dmp-primary-rgb), .08) 100%);
}
.dmp-parallax__inner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.dmp-parallax--cta .dmp-parallax__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}
.dmp-slant-panel {
  position: relative;
  width: 50vw;
  min-width: 50vw;
  min-height: 560px;
  margin-left: auto;
  margin-right: 0;
  padding: 48px 56px;
  background: rgba(var(--dmp-primary-rgb), .68);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.dmp-slant-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  pointer-events: none;
}
.dmp-slant-panel > * { position: relative; z-index: 1; }
.dmp-slant-panel h2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.dmp-slant-panel p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.94);
  text-align: center;
}
.dmp-slant-panel .dmp-hero__actions {
  margin-top: 24px;
  justify-content: center;
}
.dmp-slant-panel .dmp-btn {
  clip-path: none;
  border-radius: 0;
  min-width: 220px;
}

.dmp-experience { background: var(--dmp-light); }
.dmp-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.dmp-filter button {
  border: 1px solid var(--dmp-border);
  padding: 12px 18px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dmp-filter button.is-active,
.dmp-filter button:hover { background: var(--dmp-primary); color: #fff; border-color: var(--dmp-primary); }
.dmp-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.dmp-gallery__item {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7,18,36,.08);
  transition: transform .28s ease, opacity .28s ease;
}
.dmp-gallery__item.is-hidden { opacity: .18; transform: scale(.96); pointer-events: none; }
.dmp-gallery__item--1, .dmp-gallery__item--4 { grid-row: span 2; }
.dmp-gallery__item--2, .dmp-gallery__item--5 { grid-column: span 2; }
.dmp-gallery__visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--dmp-primary-rgb), .9), rgba(2,7,17,.9));
  background-size: cover;
  background-position: center;
}
.dmp-gallery__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,7,17,.22), rgba(var(--dmp-primary-rgb), .88));
}
.dmp-gallery__visual::after {
  content: none;
  display: none;
}
.dmp-gallery__text {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.8));
  color: #fff;
}
.dmp-gallery__text h3 { font-family: 'Oswald'; font-size: 26px; margin: 0 0 6px; text-transform: uppercase; }
.dmp-gallery__text p { margin: 0; color: rgba(255,255,255,.8); line-height: 1.5; }

.dmp-parallax--testimonials { padding: 86px 0; background-image: linear-gradient(135deg, #050912, #004c7d); }
.dmp-testimonial-slider { position: relative; min-height: 270px; }
.dmp-testimonial {
  position: absolute;
  inset: 0;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.dmp-testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dmp-testimonial blockquote {
  margin: 0 0 26px;
  padding: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
  font-family: 'Oswald';
}
.dmp-testimonial strong { display: block; font-size: 18px; }
.dmp-testimonial span { color: var(--dmp-accent); font-weight: 800; }

.dmp-faq { background: #fff; }
.dmp-faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.dmp-faq .dmp-eyebrow { color: var(--dmp-dark); background: rgba(var(--dmp-primary-rgb), .1); }
.dmp-faq p { color: var(--dmp-muted); line-height: 1.75; }
.dmp-accordion__item { border: 1px solid var(--dmp-border); margin-bottom: 14px; background: #fff; }
.dmp-accordion__item button {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  color: var(--dmp-dark);
}
.dmp-accordion__item span { color: var(--dmp-primary); font-size: 26px; }
.dmp-accordion__item div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.dmp-accordion__item div p { overflow: hidden; margin: 0; padding: 0 22px; }
.dmp-accordion__item.is-open div { grid-template-rows: 1fr; }
.dmp-accordion__item.is-open div p { padding-bottom: 22px; }

.dmp-demo {
  position: relative;
  padding: 96px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--dmp-dark), #003c64 70%, var(--dmp-primary));
  overflow: hidden;
}
.dmp-demo::before {
  content: '';
  position: absolute;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 50%;
  right: -180px;
  top: -220px;
}
.dmp-demo__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.dmp-demo p { color: rgba(255,255,255,.82); line-height: 1.75; font-size: 18px; }
.dmp-contact-list { display: grid; gap: 12px; margin-top: 24px; }
.dmp-contact-list a { color: #fff; font-weight: 900; }
.dmp-demo-form {
  padding: 34px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}
.dmp-demo-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; }
.dmp-demo-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.dmp-demo-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 16px;
  outline: none;
  font: inherit;
}
.dmp-demo-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"])::placeholder,
.dmp-demo-form textarea::placeholder { color: rgba(255,255,255,.55); }
.dmp-demo-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.dmp-demo-form textarea:focus { border-color: var(--dmp-accent); box-shadow: 0 0 0 4px rgba(0,217,255,.12); }
.dmp-demo-form small { display: block; margin-top: 14px; color: rgba(255,255,255,.7); }

.dmp-footer { background: #020711; color: rgba(255,255,255,.72); padding-top: 70px; }
.dmp-footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .9fr 1fr; gap: 36px; }
.dmp-footer__brand { color: #fff; font-family: 'Oswald'; font-size: 34px; text-transform: uppercase; }
.dmp-footer h4 { color: #fff; font-family: 'Oswald'; text-transform: uppercase; font-size: 22px; margin: 0 0 16px; }
.dmp-footer a,
.dmp-footer span { display: block; margin: 9px 0; }
.dmp-footer a:hover { color: var(--dmp-primary); }
.dmp-footer__copy {
  margin-top: 54px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

[data-dmp-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
[data-dmp-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .dmp-hero__content { grid-template-columns: 1fr; gap: 42px; }
  .dmp-hero-card__screen { min-height: 390px; }
  .dmp-discipline-strip { grid-template-columns: repeat(3, 1fr); }
  .dmp-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dmp-gallery { grid-template-columns: repeat(2, 1fr); }
  .dmp-gallery__item { grid-column: auto !important; grid-row: auto !important; }
}

@media (max-width: 860px) {
  body.dmp-body.admin-bar .dmp-header { top: 46px; }
  .dmp-nav-toggle { display: inline-block; }
  .dmp-nav {
    position: fixed;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    background: rgba(7,18,36,.98);
    padding: 14px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .dmp-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .dmp-nav a { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .dmp-nav__cta { text-align: center; margin-top: 8px; }
  .dmp-hero { padding: 110px 0 96px; min-height: auto; }
  .dmp-hero__content { width: min(100% - 28px, 1240px); }
  .dmp-hero__copy { max-width: 100%; margin-left: 0; }
  .dmp-hero__caption { width: min(100%, 560px); padding: 16px 18px; clip-path: none; text-align: center; justify-items: center; }
  .dmp-mini-dashboard { grid-template-columns: 1fr; }
  .dmp-chart-bars { height: 120px; }
  .dmp-discipline-strip { grid-template-columns: repeat(2, 1fr); }
  .dmp-plan-grid,
  .dmp-demo__grid,
  .dmp-faq__grid,
  .dmp-footer__grid { grid-template-columns: 1fr; }
  .dmp-plan.is-featured { transform: none; }
  .dmp-parallax--cta .dmp-parallax__inner { width: min(100% - 28px, 1240px); margin: 0 auto; }
  .dmp-slant-panel { width: 100%; min-width: 0; min-height: auto; clip-path: none; padding: 34px 26px; }
  .dmp-slant-panel .dmp-hero__actions { justify-content: center; }
  .dmp-gallery { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .dmp-section, .dmp-demo { padding: 74px 0; }
}

@media (max-width: 560px) {
  .dmp-container { width: min(100% - 28px, 1180px); }
  .dmp-logo__text { font-size: 20px; }
  .dmp-hero h1 { font-size: 38px; }
  .dmp-hero p { font-size: 15px; }
  .dmp-hero__caption { padding: 16px 18px; clip-path: none; text-align: center; justify-items: center; }
  .dmp-btn { width: 100%; clip-path: none; }
  .dmp-hero-card__screen { transform: none; padding: 16px; }
  .dmp-hero-card__screen::before { display: none; }
  .dmp-discipline-strip { grid-template-columns: 1fr; }
  .dmp-feature-grid { grid-template-columns: 1fr; }
  .dmp-steps { grid-template-columns: 1fr; }
  .dmp-footer__copy { align-items: center; flex-direction: column; }
}


/* v1.1.20 - Centrado reforzado del banner azul inferior del hero */
.dmp-hero .dmp-hero__caption {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
.dmp-hero .dmp-hero__caption strong,
.dmp-hero .dmp-hero__caption span {
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .dmp-discipline__icon { width: 82px; height: 82px; margin-bottom: 10px; }
}


/* v1.1.25 - Botones del hero cuadrados/rectangulares, sin cortes diagonales ni bordes redondeados. */


/* v1.1.26 - En móvil se agrega más espacio al hero para que el banner inferior no tape los botones. */
@media (max-width: 767px) {
  .dmp-hero {
    padding-top: 110px;
    padding-bottom: 250px;
  }
  .dmp-hero__copy {
    padding-bottom: 12px;
  }
  .dmp-hero__actions {
    margin-bottom: 12px;
  }
  .dmp-hero__caption {
    bottom: 16px;
    width: calc(100% - 28px);
  }
}

@media (max-width: 560px) {
  .dmp-hero {
    padding-bottom: 285px;
  }
  .dmp-hero__actions {
    gap: 14px;
  }
  .dmp-hero__caption {
    bottom: 16px;
    padding: 18px 18px;
  }
  .dmp-hero__caption strong {
    font-size: 20px;
    line-height: 1.1;
  }
  .dmp-hero__caption span {
    font-size: 13px;
    line-height: 1.45;
  }
}


/* v1.1.27 - Más espacio en móvil para que el banner del hero no cubra los botones. */
@media (max-width: 767px) {
  .dmp-hero {
    padding-top: 110px;
    padding-bottom: 340px;
  }
  .dmp-hero__content {
    padding-bottom: 30px;
  }
  .dmp-hero__actions {
    margin-bottom: 42px;
  }
  .dmp-hero__caption {
    bottom: 20px;
    width: calc(100% - 28px);
  }
}

@media (max-width: 560px) {
  .dmp-hero {
    padding-bottom: 390px;
  }
  .dmp-hero__content {
    padding-bottom: 36px;
  }
  .dmp-hero__actions {
    gap: 14px;
    margin-bottom: 54px;
  }
  .dmp-hero__caption {
    bottom: 20px;
    padding: 18px 18px;
  }
  .dmp-hero__caption strong {
    font-size: 20px;
    line-height: 1.1;
  }
  .dmp-hero__caption span {
    font-size: 13px;
    line-height: 1.45;
  }
}


/* v1.1.28 - En móvil el banner inferior del hero deja de superponerse sobre los botones. */
@media (max-width: 767px) {
  .dmp-hero {
    min-height: auto;
    padding-bottom: 36px;
  }
  .dmp-hero__actions {
    margin-bottom: 0;
  }
  .dmp-hero__caption {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 28px);
    margin: 28px auto 0;
    clip-path: none;
  }
}

@media (max-width: 560px) {
  .dmp-hero {
    padding-bottom: 32px;
  }
  .dmp-hero__caption {
    margin-top: 22px;
    padding: 22px 18px;
  }
}


/* v1.1.29 - Corrección reforzada: banner del hero en móvil debajo de los botones y sin superposición. */
@media screen and (max-width: 767px) {
  .dmp-hero {
    display: block !important;
    min-height: auto !important;
    padding-top: 110px !important;
    padding-bottom: 36px !important;
  }

  .dmp-hero__content {
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
    width: min(100% - 28px, 1240px) !important;
    padding-bottom: 0 !important;
  }

  .dmp-hero__copy {
    padding-bottom: 0 !important;
  }

  .dmp-hero__actions {
    position: relative !important;
    z-index: 6 !important;
    margin-top: 28px !important;
    margin-bottom: 0 !important;
    gap: 14px !important;
  }

  .dmp-hero .dmp-hero__caption {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 5 !important;
    width: calc(100% - 28px) !important;
    margin: 30px auto 0 !important;
    padding: 22px 18px !important;
    clip-path: none !important;
    box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
  }
}

@media screen and (max-width: 560px) {
  .dmp-hero {
    padding-bottom: 32px !important;
  }

  .dmp-hero .dmp-hero__caption {
    margin-top: 28px !important;
    padding: 22px 16px !important;
  }

  .dmp-hero .dmp-hero__caption strong {
    font-size: 20px !important;
    line-height: 1.16 !important;
  }

  .dmp-hero .dmp-hero__caption span {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}


/* v1.1.30 - Mejora de legibilidad en tarjetas de capacidades/módulos. */
.dmp-feature {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 22px 22px;
}
.dmp-feature::before {
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.34) 20%, rgba(7,18,36,.18) 48%, rgba(7,18,36,.50) 100%);
}
.dmp-feature__icon {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}
.dmp-feature__copy {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 18px 16px 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  border-left: 4px solid var(--dmp-primary);
  box-shadow: 0 14px 32px rgba(2,7,17,.12);
  backdrop-filter: blur(6px);
}
.dmp-feature h3 {
  color: #031629;
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 10px;
  text-shadow: none;
}
.dmp-feature p {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}
.dmp-feature:hover::before {
  background: linear-gradient(180deg, rgba(7,18,36,.28), rgba(7,18,36,.38) 30%, rgba(var(--dmp-primary-rgb), .62) 100%);
}
.dmp-feature:hover .dmp-feature__copy {
  background: linear-gradient(180deg, rgba(7,18,36,.88), rgba(8,56,96,.88));
  border-left-color: var(--dmp-accent);
  box-shadow: 0 18px 38px rgba(2,7,17,.22);
}
.dmp-feature:hover h3,
.dmp-feature:hover p {
  color: rgba(255,255,255,.97);
}
@media (max-width: 860px) {
  .dmp-feature {
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .dmp-feature {
    min-height: 250px;
    padding: 20px 18px 18px;
  }
  .dmp-feature__copy {
    padding: 16px 14px 14px;
  }
  .dmp-feature h3 {
    font-size: 20px;
  }
  .dmp-feature p {
    font-size: 14px;
  }
}


/* v1.1.31 - Imagen de apoyo en Preguntas frecuentes solo para escritorio. */
.dmp-faq__intro {
  position: relative;
}
.dmp-faq__image {
  display: block;
  width: min(390px, 100%);
  margin-top: 34px;
  border: 1px solid rgba(7,18,36,.12);
  box-shadow: 0 24px 58px rgba(2,7,17,.12);
  overflow: hidden;
  background: #eef3f8;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.dmp-faq__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}
@media (max-width: 860px) {
  .dmp-faq__image {
    display: none;
  }
}


/* v1.1.33 - Hero responsive: evita repetición y permite imagen específica para móvil. */
.dmp-hero__slide {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
}
@media (max-width: 767px) {
  .dmp-hero__slide {
    background-image: var(--dmp-hero-mobile-image) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
  }
}
@media (max-width: 420px) {
  .dmp-hero__slide {
    background-position: center top !important;
  }
}


/* v1.1.34 - WhatsApp directo y formulario con envío real por correo. */
.dmp-contact-whatsapp {
  margin-top: 22px;
  width: max-content;
}
.dmp-btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .25);
}
.dmp-btn--whatsapp:hover {
  background: #fff;
  color: #075e54;
  border-color: #25d366;
}
.dmp-whatsapp-floating {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.dmp-whatsapp-floating::before {
  content: '';
  width: 22px;
  height: 22px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.69 12.69 0 0 0 5.1 22.34L3.2 28.8l6.63-1.8a12.67 12.67 0 1 0 6.19-23.8Zm0 2.36a10.31 10.31 0 0 1 8.77 15.72 10.31 10.31 0 0 1-13.55 3.18l-.48-.28-3.93 1.06 1.1-3.79-.32-.5A10.33 10.33 0 0 1 16.02 5.56Zm-4.22 5.5c-.25 0-.64.1-.98.46-.34.37-1.28 1.25-1.28 3.05s1.31 3.54 1.49 3.78c.18.25 2.54 4.07 6.25 5.54 3.08 1.22 3.72.98 4.39.92.67-.06 2.16-.88 2.46-1.73.31-.85.31-1.58.22-1.73-.09-.15-.34-.25-.7-.43-.37-.18-2.16-1.06-2.5-1.18-.34-.13-.58-.18-.83.18-.25.37-.95 1.18-1.16 1.43-.21.25-.43.28-.8.1-.37-.18-1.55-.57-2.95-1.82-1.09-.97-1.83-2.17-2.04-2.54-.21-.37-.02-.57.16-.75.16-.16.37-.43.55-.64.18-.21.25-.37.37-.61.12-.25.06-.46-.03-.64-.09-.18-.83-2-1.14-2.74-.3-.72-.6-.62-.83-.63h-.71Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3.2A12.69 12.69 0 0 0 5.1 22.34L3.2 28.8l6.63-1.8a12.67 12.67 0 1 0 6.19-23.8Zm0 2.36a10.31 10.31 0 0 1 8.77 15.72 10.31 10.31 0 0 1-13.55 3.18l-.48-.28-3.93 1.06 1.1-3.79-.32-.5A10.33 10.33 0 0 1 16.02 5.56Zm-4.22 5.5c-.25 0-.64.1-.98.46-.34.37-1.28 1.25-1.28 3.05s1.31 3.54 1.49 3.78c.18.25 2.54 4.07 6.25 5.54 3.08 1.22 3.72.98 4.39.92.67-.06 2.16-.88 2.46-1.73.31-.85.31-1.58.22-1.73-.09-.15-.34-.25-.7-.43-.37-.18-2.16-1.06-2.5-1.18-.34-.13-.58-.18-.83.18-.25.37-.95 1.18-1.16 1.43-.21.25-.43.28-.8.1-.37-.18-1.55-.57-2.95-1.82-1.09-.97-1.83-2.17-2.04-2.54-.21-.37-.02-.57.16-.75.16-.16.37-.43.55-.64.18-.21.25-.37.37-.61.12-.25.06-.46-.03-.64-.09-.18-.83-2-1.14-2.74-.3-.72-.6-.62-.83-.63h-.71Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.dmp-whatsapp-floating:hover {
  transform: translateY(-3px);
  background: #128c7e;
}
.dmp-form-feedback {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  line-height: 1.45;
}
.dmp-form-feedback--success {
  background: rgba(37, 211, 102, .16);
  color: #ffffff;
}
.dmp-form-feedback--error {
  background: rgba(255, 87, 87, .18);
  color: #ffffff;
}
.dmp-hp-field {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 560px) {
  .dmp-contact-whatsapp {
    width: 100%;
  }
  .dmp-whatsapp-floating {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 14px;
    font-size: 11px;
  }
}


/* v1.1.37 - Login destacado, carrito y checkout */
.dmp-nav__login {
  padding: 12px 18px;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
}
.dmp-nav__login:hover { background: #fff; color: var(--dmp-dark) !important; }
.dmp-btn--ghost-dark { color: var(--dmp-dark); border-color: rgba(7,18,36,.28); background:#fff; }
.dmp-commerce { background: linear-gradient(180deg,#fff 0%, var(--dmp-light) 100%); }
.dmp-commerce-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; }
.dmp-commerce-products { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.dmp-commerce-product { min-height: 260px; padding: 26px 22px; background:#fff; border:1px solid var(--dmp-border); box-shadow:0 18px 40px rgba(7,18,36,.08); display:flex; flex-direction:column; gap:12px; }
.dmp-commerce-product h3 { margin:0; font-family:'Oswald'; text-transform:uppercase; font-size:26px; }
.dmp-commerce-product p { color:var(--dmp-muted); line-height:1.6; margin:0; }
.dmp-commerce-product strong { margin-top:auto; color:var(--dmp-primary); font-family:'Oswald'; font-size:28px; }
.dmp-commerce-product small { color:var(--dmp-muted); font-family:'Raleway'; font-size:13px; }
.dmp-commerce-product .dmp-btn { width:100%; clip-path:none; border-radius:0; }
.dmp-checkout-form { padding:30px; background:var(--dmp-dark); color:#fff; box-shadow:var(--dmp-shadow); position:sticky; top:100px; }
.dmp-checkout-form h3 { margin:0 0 18px; font-family:'Oswald'; text-transform:uppercase; font-size:30px; }
.dmp-checkout-form label { display:grid; gap:8px; margin-bottom:14px; font-weight:800; }
.dmp-checkout-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]), .dmp-checkout-form select, .dmp-checkout-form textarea { width:100%; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.12); color:#fff; padding:14px; font:inherit; outline:none; }
.dmp-checkout-form select option { color:#071224; }
.dmp-checkout-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus, .dmp-checkout-form select:focus, .dmp-checkout-form textarea:focus { border-color:var(--dmp-accent); box-shadow:0 0 0 4px rgba(0,217,255,.12); }
.dmp-checkout-fields { display:grid; grid-template-columns:1fr 1fr; gap:0 14px; }
.dmp-gateways { margin:16px 0 20px; padding:16px; background:rgba(255,255,255,.08); display:grid; gap:10px; }
.dmp-gateways span { font-weight:900; text-transform:uppercase; font-size:12px; letter-spacing:.08em; color:var(--dmp-accent); }
.dmp-gateways label { display:flex; align-items:center; gap:8px; margin:0; }
.dmp-gateways input { width:auto; }
.dmp-terms { color:rgba(255,255,255,.76); font-size:13px; line-height:1.5; }
.dmp-terms a { color:var(--dmp-accent); font-weight:900; }
.dmp-commerce-notice { max-width:920px; margin:0 auto 28px; padding:16px 18px; font-weight:800; text-align:center; }
.dmp-commerce-notice--success { background:#dcfce7; color:#166534; }
.dmp-commerce-notice--error { background:#fee2e2; color:#991b1b; }
@media (max-width: 1100px) { .dmp-commerce-grid { grid-template-columns:1fr; } .dmp-checkout-form { position:relative; top:auto; } }
@media (max-width: 860px) { .dmp-commerce-products { grid-template-columns:1fr; } .dmp-checkout-fields { grid-template-columns:1fr; } .dmp-nav__login { text-align:center; margin-top:8px; } }


/* v1.1.38 - Checkout en página independiente */
.dmp-commerce-products--landing { max-width: 1180px; margin: 0 auto; }
.dmp-checkout-hero { min-height: 520px; padding: 140px 0 88px; }
.dmp-checkout-hero .dmp-hero__slide { opacity: 1; transform: none; background-repeat: no-repeat; background-size: cover; background-position: center center; }
.dmp-checkout-hero__copy { max-width: 820px; }
.dmp-checkout-hero h1 { max-width: 920px; }
.dmp-checkout-page { background: linear-gradient(180deg, #ffffff 0%, var(--dmp-light) 100%); }
.dmp-checkout-page-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 34px; align-items: start; }
.dmp-checkout-title { margin-bottom: 26px; }
.dmp-commerce-products--checkout { grid-template-columns: 1fr; }
.dmp-commerce-products--checkout .dmp-commerce-product { min-height: auto; }
.dmp-commerce-product.is-selected { border-color: var(--dmp-primary); box-shadow: 0 22px 46px rgba(var(--dmp-primary-rgb), .18); }
.dmp-commerce-product.is-selected::before { content: 'Seleccionado'; display: inline-flex; width: fit-content; padding: 6px 10px; background: rgba(var(--dmp-primary-rgb), .12); color: var(--dmp-primary); font-weight: 900; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.dmp-payment-box { max-width: 860px; margin: 0 auto; padding: 34px; background: #fff; border: 1px solid var(--dmp-border); box-shadow: var(--dmp-shadow); }
.dmp-payment-summary { padding: 18px; margin: 18px 0 24px; background: var(--dmp-light); border-left: 5px solid var(--dmp-primary); line-height: 1.8; }
.dmp-payment-box .error { background: #fee2e2; color: #991b1b; padding: 14px 16px; margin: 16px 0; font-weight: 800; }
@media (max-width: 1100px) { .dmp-checkout-page-grid { grid-template-columns: 1fr; } .dmp-checkout-form { position: relative; top: auto; } }
@media (max-width: 767px) { .dmp-checkout-hero { min-height: auto; padding: 112px 0 62px; } .dmp-checkout-hero .dmp-hero__slide { background-image: var(--dmp-hero-mobile-image) !important; background-position: center center; } .dmp-payment-box { padding: 24px 18px; } }


/* v1.1.40 - Integración WooCommerce */
.dmp-commerce-notice--warning {
  background: #fff7ed;
  color: #9a3412;
  border-color: rgba(154, 52, 18, .25);
}
.dmp-wc-map-table select {
  width: 100%;
  max-width: 520px;
}


/* v1.1.41 - Planes WooCommerce con diseño comercial y páginas internas reales. */
.dmp-commerce--plans { background: linear-gradient(180deg, #f3f7fb 0%, #ffffff 100%); }
.dmp-commerce--plans .dmp-title { max-width: 900px; margin-bottom: 56px; }
.dmp-commerce--plans .dmp-title h2 { color: var(--dmp-dark); }
.dmp-commerce-products--landing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; max-width: 1180px; margin: 0 auto; }
.dmp-commerce-product { position: relative; min-height: 435px; padding: 38px 32px; background: #fff; border: 1px solid var(--dmp-border); box-shadow: 0 22px 55px rgba(7,18,36,.08); display: flex; flex-direction: column; gap: 0; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.dmp-commerce-product::before { content: ''; position: absolute; width: 160px; height: 160px; right: -70px; top: -70px; border-radius: 50%; background: rgba(var(--dmp-primary-rgb), .12); }
.dmp-commerce-product:hover { transform: translateY(-10px); box-shadow: var(--dmp-shadow); }
.dmp-commerce-product > * { position: relative; z-index: 1; }
.dmp-commerce-product.is-featured { background: var(--dmp-dark); color: #fff; transform: translateY(-18px); }
.dmp-commerce-product.is-featured::before { background: rgba(var(--dmp-primary-rgb), .18); }
.dmp-commerce-product.is-featured:hover { transform: translateY(-26px); }
.dmp-commerce-product__badge { display: inline-flex; align-self: flex-start; margin-bottom: 24px; padding: 8px 14px; background: var(--dmp-primary); color: #fff; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.dmp-commerce-product h3 { margin: 0 0 14px; color: var(--dmp-dark); font-family: 'Oswald'; font-size: 34px; line-height: 1.05; text-transform: uppercase; }
.dmp-commerce-product.is-featured h3 { color: #fff; }
.dmp-commerce-product__audience { margin: 0 0 22px; color: #5f6b7b; font-weight: 800; line-height: 1.55; }
.dmp-commerce-product.is-featured .dmp-commerce-product__audience { color: rgba(255,255,255,.78); }
.dmp-commerce-product__price { margin: 0 0 22px; color: var(--dmp-primary); font-family: 'Oswald'; font-size: 34px; line-height: 1.18; }
.dmp-commerce-product__price small { margin-left: 4px; color: inherit; font-family: 'Raleway'; font-size: 15px; font-weight: 900; text-transform: uppercase; }
.dmp-commerce-product__features { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; }
.dmp-commerce-product__features li { position: relative; padding-left: 26px; color: #263244; line-height: 1.45; }
.dmp-commerce-product__features li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--dmp-primary); font-weight: 900; }
.dmp-commerce-product.is-featured .dmp-commerce-product__features li { color: rgba(255,255,255,.88); }
.dmp-commerce-product__action { margin-top: auto; }
.dmp-commerce-product .dmp-btn { width: 100%; clip-path: none; border-radius: 0; }
.dmp-page-hero { position: relative; padding: 150px 0 72px; color: #fff; background: linear-gradient(135deg, rgba(7,18,36,.98), rgba(0,136,222,.88)); overflow: hidden; }
.dmp-page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 70px 70px; opacity: .38; }
.dmp-page-hero .dmp-container { position: relative; z-index: 1; }
.dmp-page-hero h1 { margin: 18px 0 0; max-width: 900px; font-family: 'Oswald'; font-size: clamp(42px, 5vw, 74px); line-height: .98; text-transform: uppercase; }
.dmp-page-content { background: #fff; }
.dmp-wp-content, .dmp-woocommerce-page .woocommerce { max-width: 1100px; margin: 0 auto; }
.dmp-wp-content h2 { font-family: 'Oswald'; text-transform: uppercase; }
.dmp-woocommerce-page .woocommerce a.button, .dmp-woocommerce-page .woocommerce button.button, .dmp-woocommerce-page .woocommerce input.button, .dmp-woocommerce-page .woocommerce #respond input#submit { border-radius: 0; background: var(--dmp-primary); color: #fff; font-weight: 900; text-transform: uppercase; }
.dmp-woocommerce-page .woocommerce a.button:hover, .dmp-woocommerce-page .woocommerce button.button:hover, .dmp-woocommerce-page .woocommerce input.button:hover, .dmp-woocommerce-page .woocommerce #respond input#submit:hover { background: var(--dmp-dark); color: #fff; }
@media (max-width: 1100px) { .dmp-commerce-products--landing { grid-template-columns: 1fr; } .dmp-commerce-product.is-featured, .dmp-commerce-product.is-featured:hover { transform: none; } }
@media (max-width: 767px) { .dmp-commerce-product { min-height: auto; padding: 30px 24px; } .dmp-page-hero { padding: 120px 0 54px; } }


/* v1.1.42 - Checkout WooCommerce: hero del front, carrito de un solo plan y eliminación visible. */
.dmp-woocommerce-front-hero {
  min-height: 620px;
  padding: 140px 0 96px;
}
.dmp-woocommerce-front-hero .dmp-hero__slide {
  opacity: 1;
  transform: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.dmp-woocommerce-page--checkout .woocommerce {
  max-width: 1180px;
}
.dmp-woocommerce-page--checkout .woocommerce-checkout-review-order-table {
  background: #fff;
  border: 1px solid var(--dmp-border);
  box-shadow: 0 18px 42px rgba(7,18,36,.08);
}
.dmp-wc-checkout-remove {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 10px;
  background: #fee2e2;
  color: #991b1b !important;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dmp-wc-checkout-remove:hover {
  background: #991b1b;
  color: #fff !important;
}
.dmp-woocommerce-page--checkout .woocommerce-checkout-review-order-table .product-quantity {
  color: var(--dmp-primary);
  font-weight: 900;
}
@media (max-width: 767px) {
  .dmp-woocommerce-front-hero {
    min-height: auto;
    padding: 112px 0 64px;
  }
  .dmp-woocommerce-front-hero .dmp-hero__slide {
    background-image: var(--dmp-hero-mobile-image) !important;
    background-position: center center;
  }
}


/* v1.1.43 - Hero visual del front también en la página real de checkout (/finalizar-compra/). */
.dmp-woocommerce-front-hero--page {
  margin-top: 0;
}
.dmp-woocommerce-front-hero--page .dmp-hero__caption {
  display: flex;
}
.dmp-page-content.dmp-woocommerce-page--checkout {
  background: linear-gradient(180deg, #ffffff 0%, var(--dmp-light) 100%);
}
.dmp-page-content.dmp-woocommerce-page--checkout .dmp-wp-content {
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .dmp-woocommerce-front-hero--page .dmp-hero__caption {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: calc(100% - 28px) !important;
    margin: 28px auto 0 !important;
    clip-path: none !important;
  }
}


/* v1.1.44 - Hero del front también en WooCommerce order-received. */
.dmp-woocommerce-page--order-received .woocommerce-order {
  max-width: 980px;
  margin: 0 auto;
}
.dmp-woocommerce-page--order-received .woocommerce-order-overview {
  padding: 22px;
  background: var(--dmp-light);
  border-left: 5px solid var(--dmp-primary);
}

/* v1.1.45 - Selector mensual/anual para planes de suscripción. */
.dmp-subscription-switch{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin:0 0 18px;padding:5px;background:#edf4fa;border:1px solid rgba(var(--dmp-primary-rgb),.18)}
.dmp-subscription-switch button{min-height:40px;border:0;background:transparent;color:#344256;font:inherit;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;cursor:pointer}
.dmp-subscription-switch button.is-active{background:var(--dmp-primary);color:#fff;box-shadow:0 8px 20px rgba(var(--dmp-primary-rgb),.22)}
.dmp-commerce-product.is-featured .dmp-subscription-switch{background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.16)}
.dmp-commerce-product.is-featured .dmp-subscription-switch button{color:rgba(255,255,255,.82)}
.dmp-commerce-product.is-featured .dmp-subscription-switch button.is-active{color:#fff}
.dmp-subscription-renewal-note{margin:-10px 0 20px!important;color:#59677a!important;font-size:12px;line-height:1.5!important}
.dmp-commerce-product.is-featured .dmp-subscription-renewal-note{color:rgba(255,255,255,.68)!important}

/* v1.1.46 - Redes sociales, enlaces legales y Libro de Reclamaciones */
.dmp-footer { padding-top: 64px; }
.dmp-footer__grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, .75fr));
  gap: 42px;
  padding-bottom: 44px;
}
.dmp-footer__about p { max-width: 540px; }
.dmp-footer__social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.dmp-footer__social a {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.dmp-footer__social a:hover { background: rgba(0,217,255,.13); border-color: rgba(0,217,255,.42); transform: translateY(-1px); }
.dmp-footer__social svg { fill: currentColor; height: 17px; width: 17px; }
.dmp-footer__social svg rect,
.dmp-footer__social svg circle { fill: none; stroke: currentColor; stroke-width: 2; }
.dmp-footer__social svg .dmp-icon-cut { fill: #020711; stroke: #020711; }
.dmp-footer__social span { display: inline; margin: 0; }
.dmp-footer__legal > a { align-items: center; display: flex; gap: 8px; }
.dmp-footer__book-link {
  background: linear-gradient(135deg, rgba(0,136,222,.19), rgba(0,217,255,.09));
  border: 1px solid rgba(0,217,255,.28);
  border-radius: 10px;
  color: #fff !important;
  margin-top: 14px !important;
  padding: 11px 12px;
}
.dmp-footer__book-link svg { fill: none; height: 21px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; width: 21px; }
.dmp-footer__book-link span { display: inline; margin: 0; }
.dmp-footer__trust { border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
.dmp-footer__trust .dmp-container { align-items: center; display: flex; gap: 22px; justify-content: space-between; padding-bottom: 16px; padding-top: 16px; }
.dmp-footer__trust span { color: rgba(255,255,255,.62); font-size: .82rem; margin: 0; }
.dmp-footer__trust nav { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: flex-end; }
.dmp-footer__trust a { font-size: .82rem; margin: 0; text-decoration: underline; text-decoration-color: rgba(255,255,255,.22); text-underline-offset: 3px; }
.dmp-footer__copy { margin-top: 0; }
.dmp-checkout-legal-links {
  background: #f5f9fd;
  border: 1px solid #d8e5f0;
  border-radius: 10px;
  color: #32445b;
  margin: 14px 0;
  padding: 13px 14px;
}
.dmp-checkout-legal-links strong { color: #071224; display: block; font-size: .88rem; margin-bottom: 7px; }
.dmp-checkout-legal-links > div { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.dmp-checkout-legal-links a { color: #006eaf; font-size: .82rem; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.dmp-checkout-legal-links p { font-size: .78rem; margin: 8px 0 0; }
.dmp-checkout-form .dmp-checkout-legal-links { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.74); }
.dmp-checkout-form .dmp-checkout-legal-links strong { color: #fff; }
.dmp-checkout-form .dmp-checkout-legal-links a { color: var(--dmp-accent); }
.dmp-page-content .dmp-wp-content { color: #2c3d52; line-height: 1.75; }
@media (max-width: 1050px) {
  .dmp-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .dmp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .dmp-footer__trust .dmp-container { align-items: flex-start; flex-direction: column; }
  .dmp-footer__trust nav { justify-content: flex-start; }
  .dmp-footer__social a span { display: none; }
  .dmp-footer__social a { height: 42px; justify-content: center; padding: 0; width: 42px; }
}
/* v1.1.49 - Se retiró el acceso flotante al Libro de Reclamaciones.
   El enlace legal permanece visible en el footer y en la franja de confianza. */
.dmp-footer__social-title { font-size: 17px !important; margin: 22px 0 10px !important; }
.dmp-footer__social { margin-top: 0; }


/* v1.1.48 - Checkboxes legales alineados y responsive.
   Los checkbox/radio ya no heredan ancho, padding ni apariencia de los campos de texto. */
.dmp-checkout-form .dmp-legal-checkbox,
.dmp-demo-form .dmp-legal-checkbox,
.woocommerce-checkout .dmp-checkout-legal-acceptance label.checkbox,
.woocommerce-checkout .dmp-checkout-legal-acceptance .dmp-marketing-consent {
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start !important;
  column-gap: 11px !important;
  row-gap: 0 !important;
  width: 100%;
  min-width: 0;
  margin: 10px 0 0 !important;
  padding: 12px 13px;
  border: 1px solid rgba(7, 18, 36, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .78);
  color: #2d4057;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.55;
  cursor: pointer;
}

.dmp-checkout-form .dmp-legal-checkbox {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
}

.dmp-demo-form .dmp-legal-checkbox {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
}

.dmp-checkout-form .dmp-legal-checkbox input[type="checkbox"],
.dmp-demo-form .dmp-legal-checkbox input[type="checkbox"],
.woocommerce-checkout .dmp-checkout-legal-acceptance input[type="checkbox"] {
  -webkit-appearance: checkbox !important;
  appearance: checkbox !important;
  box-sizing: border-box !important;
  display: block !important;
  grid-column: 1;
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border: 1px solid #8fa4b8 !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
  accent-color: var(--dmp-primary, #0088de);
  cursor: pointer;
}

.dmp-checkout-form .dmp-legal-checkbox > span,
.dmp-demo-form .dmp-legal-checkbox > span,
.woocommerce-checkout .dmp-checkout-legal-acceptance label.checkbox > span,
.woocommerce-checkout .dmp-checkout-legal-acceptance .dmp-marketing-consent > span {
  display: block !important;
  grid-column: 2;
  min-width: 0;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit;
  overflow-wrap: anywhere;
  word-break: normal;
}

.dmp-checkout-form .dmp-legal-checkbox a,
.dmp-demo-form .dmp-legal-checkbox a,
.woocommerce-checkout .dmp-checkout-legal-acceptance a {
  display: inline;
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
  text-underline-offset: 2px;
}

.dmp-checkout-form .dmp-legal-checkbox:focus-within,
.dmp-demo-form .dmp-legal-checkbox:focus-within,
.woocommerce-checkout .dmp-checkout-legal-acceptance label.checkbox:focus-within {
  border-color: var(--dmp-accent, #00d9ff);
  box-shadow: 0 0 0 3px rgba(0, 136, 222, .13);
}

.dmp-checkout-legal-links--custom > .dmp-legal-checkbox:first-of-type {
  margin-top: 13px !important;
}

.woocommerce-checkout .dmp-checkout-legal-acceptance {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.woocommerce-checkout .dmp-checkout-legal-acceptance .dmp-checkout-privacy-notice {
  box-sizing: border-box;
  width: 100%;
  margin: 11px 0 0;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .dmp-checkout-legal-links,
  .dmp-checkout-legal-acceptance {
    padding: 12px !important;
  }

  .dmp-checkout-form .dmp-legal-checkbox,
  .dmp-demo-form .dmp-legal-checkbox,
  .woocommerce-checkout .dmp-checkout-legal-acceptance label.checkbox,
  .woocommerce-checkout .dmp-checkout-legal-acceptance .dmp-marketing-consent {
    grid-template-columns: 19px minmax(0, 1fr);
    column-gap: 10px !important;
    padding: 11px;
    font-size: .84rem;
    line-height: 1.5;
  }

  .dmp-checkout-form .dmp-legal-checkbox input[type="checkbox"],
  .dmp-demo-form .dmp-legal-checkbox input[type="checkbox"],
  .woocommerce-checkout .dmp-checkout-legal-acceptance input[type="checkbox"] {
    width: 19px !important;
    min-width: 19px !important;
    max-width: 19px !important;
    height: 19px !important;
    min-height: 19px !important;
  }
}

@media (max-width: 420px) {
  .dmp-demo-form,
  .dmp-checkout-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dmp-checkout-form .dmp-legal-checkbox,
  .dmp-demo-form .dmp-legal-checkbox,
  .woocommerce-checkout .dmp-checkout-legal-acceptance label.checkbox,
  .woocommerce-checkout .dmp-checkout-legal-acceptance .dmp-marketing-consent {
    padding: 10px;
    font-size: .81rem;
  }
}
