:root {
  color-scheme: light;
  --blue: #005eff;
  --blue-dark: #07328f;
  --green: #0f9f6e;
  --amber: #f3b23c;
  --ink: #101828;
  --muted: #5b667a;
  --line: #d9e2ef;
  --soft: #f5f8fc;
  --white: #ffffff;
  --danger: #b42318;
  --success: #067647;
  --shadow: 0 20px 55px rgba(16, 24, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 226, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
  font-weight: 800;
}

.button,
button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero {
  background:
    linear-gradient(120deg, rgba(0, 94, 255, 0.12), rgba(15, 159, 110, 0.09)),
    var(--soft);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: calc(100vh - 72px);
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 {
  font-size: 20px;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 19px;
}

.hero-actions,
.actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen-top {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

.dot:nth-child(2) {
  background: var(--green);
}

.dot:nth-child(3) {
  background: var(--blue);
}

.screen-body {
  padding: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric,
.feature,
.step,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric {
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 28px;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.queue {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.queue-row {
  padding: 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  background: var(--soft);
  font-weight: 700;
}

section {
  padding: 78px 0;
}

.section-heading {
  max-width: 760px;
}

.grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.step,
.faq-item {
  padding: 22px;
}

.feature strong,
.step strong {
  color: var(--blue);
}

.band {
  background: var(--soft);
}

.form-shell {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 78px;
}

.form-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  margin-top: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.error-list,
.notice {
  border-radius: 8px;
  padding: 14px 16px;
}

.error-list {
  border: 1px solid rgba(180, 35, 24, 0.25);
  color: var(--danger);
  background: #fff4f2;
}

.notice {
  border: 1px solid rgba(6, 118, 71, 0.25);
  color: var(--success);
  background: #ecfdf3;
}

.legal {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 78px;
}

.legal h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 26px;
}

.faq-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    padding: 14px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* Digiturnos mockup landing */
.mockup-home {
  background: #fff;
}

.mockup-home .dg {
  min-height: 100vh;
  color: #0e1b36;
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.mockup-home .dg *,
.mockup-home .dg *::before,
.mockup-home .dg *::after {
  box-sizing: border-box;
}

.mockup-home .dg section {
  padding: 0;
  scroll-margin-top: 88px;
}

.dg a {
  text-decoration: none;
}

.dg svg {
  display: block;
}

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

.dg-announcement {
  padding: 9px 16px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  background: linear-gradient(120deg, #0a1f52 0%, #0b5fff 55%, #16b7e6 120%);
}

.dg-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid #eaeff8;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.dg-nav {
  width: min(1180px, calc(100% - 48px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dg-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.dg-brand svg {
  width: 38px;
  height: 34px;
  fill: #0b5fff;
}

.dg-brand-white {
  color: #fff;
}

.dg-brand-white svg {
  fill: #fff;
}

.dg-nav-links,
.dg-nav-actions {
  display: flex;
  align-items: center;
}

.dg-nav-links {
  gap: 20px;
}

.dg-nav-links a,
.dg-login {
  color: #46557a;
  font-size: 14px;
  font-weight: 500;
}

.dg-nav-links a:hover,
.dg-nav-links .is-active,
.dg-nav-links a[aria-current="page"],
.dg-login:hover {
  color: #0b5fff;
}

.dg-nav-links .is-active,
.dg-nav-links a[aria-current="page"] {
  font-weight: 700;
}

.dg-nav-links .is-active::after,
.dg-nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0b5fff, #16b7e6);
}

.dg-nav-actions {
  gap: 12px;
}

.dg-login {
  padding: 9px 14px;
  color: #0a1f52;
  font-weight: 600;
  border-radius: 11px;
}

.dg-login:hover {
  background: #eef2fb;
}

.dg-mobile-button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  display: none;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #eef2fb;
  color: #0a1f52;
}

.dg-mobile-button svg {
  width: 20px;
  height: 20px;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.dg-mobile-menu {
  padding: 10px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #eaeff8;
  background: #fff;
}

.dg-mobile-menu a {
  padding: 11px 8px;
  color: #46557a;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
}

.dg-mobile-menu a:hover {
  color: #0b5fff;
  background: #f4f7fd;
}

.dg-button,
.dg button.dg-button {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
  box-shadow: 0 18px 34px -16px rgba(11, 95, 255, 0.75);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dg-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
}

.dg-button-small {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.dg-button-ghost {
  color: #0a1f52;
  border: 1.5px solid #d8e0f0;
  background: #fff;
  box-shadow: none;
}

.dg-button-ghost:hover {
  color: #0b5fff;
  border-color: #0b5fff;
  background: #fff;
}

.dg-button-white {
  color: #0a1f52;
  background: #fff;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.5);
}

.dg-button-white:hover {
  background: #fff;
}

.dg-button-full {
  width: 100%;
}

.dg-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 80% -8%, rgba(22, 183, 230, 0.18), transparent 60%),
    radial-gradient(740px 420px at 8% 16%, rgba(11, 95, 255, 0.12), transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.dg-page-hero-grid {
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 46px;
}

.dg-page-hero h1 {
  max-width: 780px;
  margin-top: 20px;
  font-size: clamp(36px, 4.8vw, 62px);
}

.dg-page-hero p {
  max-width: 740px;
  margin: 20px 0 0;
  color: #46557a;
  font-size: 18px;
  line-height: 1.7;
}

.dg-page-proof {
  padding: 26px;
  border: 1px solid #e9eef8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px -48px rgba(11, 95, 255, 0.55);
}

.dg-page-proof strong,
.dg-page-proof span {
  display: block;
}

.dg-page-proof strong {
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
}

.dg-page-proof span {
  margin-top: 4px;
  color: #6b7a99;
}

.dg-page-proof dl {
  margin: 22px 0 0;
}

.dg-page-proof div {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #eef2fa;
}

.dg-page-proof dt,
.dg-page-proof dd {
  margin: 0;
  font-size: 14px;
}

.dg-page-proof dt {
  color: #6b7a99;
}

.dg-page-proof dd {
  color: #0a1f52;
  font-weight: 800;
  text-align: right;
}

.dg-page-content {
  padding: 58px 0 94px;
}

.dg-page-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.dg-page-toc {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid #e9eef8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px -46px rgba(16, 38, 80, 0.5);
}

.dg-page-toc strong {
  display: block;
  margin-bottom: 12px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
}

.dg-page-toc a {
  display: block;
  padding: 9px 0;
  color: #5b667a;
  border-top: 1px solid #f0f3fa;
  font-size: 14px;
  line-height: 1.35;
}

.dg-page-toc a:hover {
  color: #0b5fff;
}

.dg-page-main {
  min-width: 0;
}

.dg-page-intro {
  margin: 0 0 34px;
  padding: 24px;
  color: #0a1f52;
  border: 1px solid #dce8ff;
  border-radius: 20px;
  background: #f7fbff;
  font-size: 18px;
  line-height: 1.7;
}

.dg-page-section {
  padding: 0;
}

.dg-page-section + .dg-page-section {
  margin-top: 42px;
}

.dg-page-section h2 {
  margin: 0 0 14px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.dg-page-section h3 {
  margin: 0 0 8px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 20px;
}

.dg-page-section p {
  margin: 0;
  color: #3f4b63;
  font-size: 17px;
  line-height: 1.82;
}

.dg-page-section p + p {
  margin-top: 16px;
}

.dg-page-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dg-page-tags span {
  padding: 8px 12px;
  color: #0a1f52;
  border: 1px solid #dce8ff;
  border-radius: 999px;
  background: #f4f8ff;
  font-size: 13px;
  font-weight: 700;
}

.dg-page-faq article {
  padding: 18px 0;
  border-top: 1px solid #e9eef8;
}

.dg-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 600px at 75% -10%, #eaf3ff 0%, #fff 55%);
}

.dg-hero-grid {
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 48px;
}

.dg-hero-copy {
  animation: dgFadeUp 0.6s ease both;
}

.dg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.dg-pill-live {
  color: #0b8a5b;
  border: 1px solid #c5ecd3;
  background: #e9faf4;
}

.dg-pill-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0fb68a;
}

.dg h1,
.dg h2,
.dg h3 {
  margin: 0;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: -1px;
}

.dg h1 {
  margin-top: 20px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.4px;
}

.dg h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(120deg, #0b5fff, #16b7e6);
  -webkit-background-clip: text;
  background-clip: text;
}

.dg-hero-copy p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #46557a;
  font-size: 18px;
  line-height: 1.6;
}

.dg-hero-copy p strong {
  color: #0a1f52;
}

.dg-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dg-checks {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.dg-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #46557a;
  font-size: 13.5px;
}

.dg-checks span::before,
.dg-benefits li::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 24 24' fill='none' stroke='%230FB68A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.dg-hero-art {
  position: relative;
  animation: dgFadeUp 0.8s ease both;
}

.dg-hero-art::before {
  content: "";
  position: absolute;
  inset: -30px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(22, 183, 230, 0.22), transparent);
  filter: blur(10px);
}

.dg-live-card {
  position: relative;
  padding: 26px;
  border: 1px solid #e9eef8;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 40px 80px -40px rgba(11, 95, 255, 0.5);
}

.dg-card-head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dg-card-head div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dg-card-head svg {
  width: 26px;
  height: 23px;
  fill: #0b5fff;
}

.dg-card-head strong {
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
}

.dg-card-head span {
  padding: 5px 10px;
  color: #0fb68a;
  background: #e9faf4;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.dg-current-turn {
  padding: 24px;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #0a1f52, #0b5fff);
}

.dg-current-turn span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

.dg-current-turn strong {
  display: block;
  margin: 8px 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.dg-current-turn small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.dg-turn-details {
  margin: 18px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dg-turn-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dg-turn-details div:last-child {
  padding-top: 11px;
  border-top: 1px solid #eef2fa;
}

.dg-turn-details dt,
.dg-turn-details dd {
  margin: 0;
  font-size: 13px;
}

.dg-turn-details dt {
  color: #6b7a99;
}

.dg-turn-details dd {
  color: #0a1f52;
  font-weight: 700;
}

.dg-turn-details div:last-child dd {
  color: #0b5fff;
}

.dg-floating-note {
  position: absolute;
  bottom: -22px;
  left: -22px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #e9eef8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 40px -22px rgba(16, 38, 80, 0.4);
  animation: dgFloat 4s ease-in-out infinite;
}

.dg-floating-note > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0fb68a;
  background: #e9faf4;
  font-weight: 800;
}

.dg-floating-note strong,
.dg-floating-note small {
  display: block;
}

.dg-floating-note strong {
  color: #0a1f52;
  font-size: 12px;
}

.dg-floating-note small {
  color: #8a97b3;
  font-size: 11px;
}

.dg-trust-grid {
  padding: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dg-trust-grid div {
  padding: 18px;
  border: 1px solid #eef2fa;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.dg-trust-grid strong {
  display: block;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.dg-trust-grid span {
  display: block;
  margin-top: 2px;
  color: #6b7a99;
  font-size: 12.5px;
}

.dg-section {
  background: #fff;
}

.dg-section > .dg-container {
  padding-top: 72px;
  padding-bottom: 72px;
}

.dg-section-soft {
  background: #f6f8fd;
}

.dg-section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a1f52;
}

.dg-section-dark::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 183, 230, 0.35), transparent 70%);
}

.dg-section-dark .dg-container {
  position: relative;
}

.dg-section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.dg-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.dg-section-heading > span,
.dg-kicker {
  color: #0b5fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dg-section-dark .dg-section-heading > span {
  color: #5bd3f5;
}

.dg-section-heading h2,
.dg-narrow h2,
.dg-signup-grid h2,
.dg-final-cta h2 {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.dg-section-dark h2,
.dg-section-dark h3 {
  color: #fff;
}

.dg-section-heading p,
.dg-narrow p,
.dg-signup-grid p {
  margin: 16px 0 0;
  color: #46557a;
  font-size: 17px;
  line-height: 1.6;
}

.dg-section-dark .dg-section-heading p,
.dg-section-dark article p {
  color: rgba(255, 255, 255, 0.7);
}

.dg-free-grid,
.dg-card-grid,
.dg-store-grid,
.dg-steps-grid,
.dg-sectors-grid,
.dg-footer-grid,
.dg-signup-grid,
.dg-cot-grid {
  display: grid;
  gap: 18px;
}

.dg-free-grid,
.dg-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.dg-free-grid article,
.dg-card-grid article,
.dg-store-grid article,
.dg-steps-grid article {
  border-radius: 20px;
}

.dg-free-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.dg-card-grid article {
  padding: 24px;
  border: 1px solid #e9eef8;
  background: #fff;
}

.dg-free-grid h3,
.dg-card-grid h3,
.dg-store-grid h3,
.dg-steps-grid h3 {
  margin: 16px 0 7px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.dg-free-grid p,
.dg-card-grid p,
.dg-store-grid p,
.dg-steps-grid p {
  margin: 0;
  color: #6b7a99;
  font-size: 13.5px;
  line-height: 1.55;
}

.dg-section-dark .dg-free-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.dg-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-size: 24px;
}

.dg-icon svg,
.dg-store-icon svg,
.dg-cot-app-icon svg,
.dg-floating-note > span svg,
.dg-whatsapp svg {
  display: block;
  flex-shrink: 0;
}

.dg-blue { background: linear-gradient(135deg, #0b5fff, #16b7e6); }
.dg-green { background: linear-gradient(135deg, #0fb68a, #4be0b0); }
.dg-purple { background: linear-gradient(135deg, #7c5cfc, #a98bff); }
.dg-navy { background: linear-gradient(135deg, #0a1f52, #2b4b8f); }
.dg-cyan { background: linear-gradient(135deg, #16b7e6, #5bd3f5); }
.dg-orange { background: linear-gradient(135deg, #e8631e, #ff8c4b); }
.dg-purple-text { color: #7c5cfc !important; }
.dg-green-text { color: #0fb68a !important; }

.dg-store-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dg-store-grid article {
  padding: 22px;
  border: 1px solid #e9eef8;
  background: #fff;
}

.dg-store-grid article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dg-store-grid b {
  padding: 5px 11px;
  border-radius: 999px;
  color: #0b8a5b;
  background: #e9faf4;
  font-size: 11.5px;
}

.dg-store-grid .is-premium {
  border-color: #e7dcff;
  background: linear-gradient(150deg, #fbf7ff, #fff);
}

.dg-store-grid .is-whatsapp {
  border-color: #c5ecd3;
  background: linear-gradient(150deg, #f0fbf6, #fff);
}

.dg-store-grid .is-api {
  border-color: #cfe0ff;
  background: linear-gradient(150deg, #eef4ff, #fff);
}

.dg-store-grid .is-premium b {
  color: #7c5cfc;
  background: #f3eeff;
}

.dg-store-grid .is-api b {
  color: #0b5fff;
  background: #eef3ff;
}

.dg-store-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-weight: 800;
}

.dg-store-blue { color: #0b5fff; background: #eef3ff; }
.dg-store-green { color: #0fb68a; background: #e9faf4; }
.dg-store-cyan { color: #16b7e6; background: #e8f8fd; }
.dg-store-orange { color: #e8631e; background: #fff1e8; }
.dg-store-purple { color: #7c5cfc; background: #f3eeff; }

.dg-store-cta {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a1f52, #0b5fff) !important;
}

.dg-store-cta h3 {
  margin: 0;
  color: #fff;
  font-size: 21px;
  font-weight: 800;
}

.dg-store-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
}

.dg-store-cta a {
  padding: 13px 22px;
  border-radius: 12px;
  color: #0a1f52;
  background: #fff;
  font-size: 14.5px;
  font-weight: 700;
}

.dg-quote-builder-section {
  background: linear-gradient(180deg, #f6f8fd 0%, #eef3fb 100%);
}

.dg-cot-grid {
  grid-template-columns: 1.55fr 0.9fr;
  align-items: start;
  gap: 26px;
}

.dg-cot-main,
.dg-cot-groups {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.dg-cot-group-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dg-cot-group-head h3 {
  margin: 0;
  color: #0a1f52;
  font-size: 18px;
  font-weight: 700;
}

.dg-cot-group-head span {
  flex: 1;
  height: 1px;
  background: #dde6f4;
}

.dg-cot-apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 14px;
}

.dg-cot-app {
  padding: 16px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e9eef8;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px -28px rgba(16, 38, 80, 0.5);
}

.dg-cot-app.is-selected {
  border-color: #bcd4ff;
  background: #f7faff;
}

.dg-cot-app-top,
.dg-cot-app-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dg-cot-app-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 800;
}

.dg-cot-app-icon.dg-store-blue { color: #0b5fff; background: #eef3ff; }
.dg-cot-app-icon.dg-store-green { color: #0fb68a; background: #e9faf4; }
.dg-cot-app-icon.dg-store-cyan { color: #16b7e6; background: #e8f8fd; }
.dg-cot-app-icon.dg-store-orange { color: #e8631e; background: #fff1e8; }
.dg-cot-app-icon.dg-store-purple { color: #7c5cfc; background: #f3eeff; }

.dg-summary-dot.dg-store-blue { background: #0b5fff; }
.dg-summary-dot.dg-store-green { background: #0fb68a; }
.dg-summary-dot.dg-store-cyan { background: #16b7e6; }
.dg-summary-dot.dg-store-orange { background: #e8631e; }
.dg-summary-dot.dg-store-purple { background: #7c5cfc; }


.dg-cot-price {
  font-size: 12.5px;
  font-weight: 700;
}

.dg-cot-price.is-free {
  color: #0b8a5b;
}

.dg-cot-price.is-paid {
  color: #7c5cfc;
}

.dg-cot-app h4 {
  margin: 13px 0 5px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.dg-cot-app p {
  min-height: 38px;
  margin: 0 0 14px;
  color: #6b7a99;
  font-size: 12.5px;
  line-height: 1.5;
}

.dg-qty {
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e3e9f6;
  border-radius: 10px;
  background: #f4f7fd;
}

.dg-qty button {
  width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  color: #0b5fff;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 38, 80, 0.08);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.dg-qty span {
  min-width: 22px;
  text-align: center;
  color: #0a1f52;
  font-size: 13px;
  font-weight: 700;
}

.dg-cot-toggle {
  min-height: 0;
  padding: 8px 12px;
  border: 1px solid #0b5fff;
  border-radius: 10px;
  color: #fff;
  background: #0b5fff;
  font-size: 12.5px;
  font-weight: 700;
}

.dg-cot-toggle.is-selected {
  color: #0b8a5b;
  border-color: #c5ecd3;
  background: #e9faf4;
}

.dg-cot-notes {
  padding: 22px;
  border: 1px solid #e9eef8;
  border-radius: 18px;
  background: #fff;
}

.dg-cot-notes h3 {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: 0;
}

.dg-cot-notes p {
  margin: 0 0 14px;
  color: #8a97b3;
  font-size: 12.5px;
}

.dg-cot-notes label,
.dg-form-grid label {
  display: block;
  color: #46557a;
  font-size: 12.5px;
  font-weight: 600;
}

.dg-cot-notes label + textarea,
.dg-form-grid input,
.dg-form-grid select {
  margin-top: 7px;
}

.dg-cot-notes textarea,
.dg-form-grid input,
.dg-form-grid select {
  width: 100%;
  border: 1px solid #e6ecf8;
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  color: #0e1b36;
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
}

.dg-cot-notes textarea {
  min-height: 84px;
  resize: vertical;
  line-height: 1.55;
}

.dg-cot-notes label:not(:first-of-type) {
  margin-top: 14px;
}

.dg-cot-summary {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid #e9eef8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 28px 60px -40px rgba(16, 38, 80, 0.5);
}

.dg-cot-summary-head {
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #0a1f52, #0b5fff);
}

.dg-cot-summary-head span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.78;
}

.dg-cot-summary-head strong {
  display: block;
  margin-top: 4px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.dg-cot-summary-body {
  padding: 18px 22px;
}

.dg-tax-toggle-wrap {
  margin-bottom: 14px;
  padding: 10px 12px;
  border: 1.5px dashed #cde0fe;
  border-radius: 12px;
  background: #f7faff;
}

.dg-tax-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #0a1f52;
  font-size: 12.5px;
  font-weight: 600;
  user-select: none;
}

.dg-tax-toggle-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0b5fff;
  cursor: pointer;
}


#quoteSummary {
  max-height: 280px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.dg-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dg-summary-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 3px;
}

.dg-summary-copy {
  min-width: 0;
  flex: 1;
}

.dg-summary-copy strong {
  display: block;
  color: #0a1f52;
  font-size: 13px;
  line-height: 1.25;
}

.dg-summary-copy span {
  color: #8a97b3;
  font-size: 11.5px;
}

.dg-summary-price {
  color: #0a1f52;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.dg-summary-remove {
  width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  color: #e5484d;
  background: #fdeef0;
}

.dg-cot-totals {
  margin-top: 14px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid #eef2fa;
}

.dg-cot-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #46557a;
  font-size: 13px;
}

.dg-cot-totals strong {
  color: #0a1f52;
}

.dg-cot-totals .is-total {
  padding-top: 8px;
  border-top: 1px dashed #e1e8f3;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.dg-cot-totals .is-total strong {
  color: #0b5fff;
  font-size: 18px;
  font-weight: 800;
}

.dg-cot-totals small {
  color: #8a97b3;
  text-align: right;
  font-size: 11px;
}

.dg-cot-summary .dg-button-full {
  margin-top: 16px;
}

.dg-steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.dg-steps-grid article strong {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
  font-family: "Outfit", Arial, sans-serif;
}

.dg-sectors-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.dg-sectors-grid article {
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.dg-sectors-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.dg-sectors-grid strong {
  color: #fff;
  font-size: 13.5px;
}

.dg-narrow {
  max-width: 920px;
}

.dg-narrow h2 {
  margin-top: 0;
}

.dg-narrow p {
  line-height: 1.75;
}

.dg-narrow strong {
  color: #0a1f52;
}

.dg-tags {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dg-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  color: #0b5fff;
  background: #eef3ff;
  font-size: 13px;
  font-weight: 500;
}

.dg-faq-wrap {
  max-width: 820px;
}

.dg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-faq-list article {
  overflow: hidden;
  border: 1px solid #e9eef8;
  border-radius: 16px;
  background: #fff;
}

.dg-faq-list button {
  width: 100%;
  min-height: 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: #0a1f52;
  background: none;
  text-align: left;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15.5px;
  font-weight: 600;
}

.dg-faq-list button span {
  color: #0b5fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.dg-faq-list article.is-open button span {
  transform: rotate(45deg);
}

.dg-faq-list article > div {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.dg-faq-list article.is-open > div {
  max-height: 260px;
  opacity: 1;
}

.dg-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: #46557a;
  font-size: 14.5px;
  line-height: 1.65;
}

.dg-signup-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 40px;
}

.dg-benefits {
  margin: 26px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.dg-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0a1f52;
  font-size: 14px;
  font-weight: 500;
}

.dg-signup-card,
.dg-modal-card {
  padding: 30px;
  border: 1px solid #e9eef8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 60px -38px rgba(16, 38, 80, 0.5);
}

.dg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dg-form-grid .is-full {
  grid-column: 1 / -1;
}

.dg-form-error {
  margin: 14px 0 0;
  padding: 11px 13px;
  border: 1px solid #f6d4d6;
  border-radius: 11px;
  color: #c0353a !important;
  background: #fdeced;
  font-size: 13px !important;
  font-weight: 500;
}

.dg-signup-card .dg-button {
  margin-top: 18px;
}

.dg-signup-card small {
  display: block;
  margin-top: 14px;
  color: #8a97b3;
  text-align: center;
  font-size: 12px;
}

.dg-signup-success {
  text-align: center;
}

.dg-signup-success > span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0fb68a, #4be0b0);
  font-size: 34px;
  font-weight: 800;
}

.dg-signup-success h3 {
  margin: 0;
  font-size: 24px;
}

.dg-final-cta {
  padding: 72px 0 !important;
  color: #fff;
  background: linear-gradient(135deg, #0a1f52 0%, #0b5fff 60%, #16b7e6 130%);
  text-align: center;
}

.dg-final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
}

.dg-final-cta p {
  max-width: 600px;
  margin: 18px auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.dg-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #06122e;
}

.dg-footer .dg-container {
  padding-top: 54px;
  padding-bottom: 30px;
}

.dg-footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}

.dg-footer-grid p {
  max-width: 300px;
  margin: 14px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
}

.dg-footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
}

.dg-footer-grid strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dg-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.dg-footer a:hover {
  color: #fff;
}

.dg-footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}

.dg-footer-bottom div {
  display: flex;
  gap: 20px;
}

.dg-footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.dg-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0fb68a;
  box-shadow: 0 14px 30px -8px rgba(15, 182, 138, 0.6);
  font-weight: 800;
  animation: dgPulse 2.6s infinite;
}

.dg-modal,
.dg-quote-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.dg-modal {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 23, 54, 0.5);
  backdrop-filter: blur(4px);
}

.dg-modal-card {
  width: min(520px, 100%);
  max-height: 92vh;
  padding: 0;
  overflow: auto;
  animation: dgFadeUp 0.35s ease both;
}

.dg-modal-head {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0a1f52, #0b5fff);
}

.dg-modal-head strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 19px;
}

.dg-modal-head button {
  width: 36px;
  height: 36px;
  min-height: 36px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 24px;
}

.dg-modal-body {
  padding: 24px 26px 26px;
}

.dg-modal-actions {
  margin-top: 20px;
  display: flex;
  gap: 11px;
}

.dg-modal-actions .dg-button {
  flex: 1;
}

.dg-quote-overlay {
  z-index: 150;
  overflow-y: auto;
  padding-bottom: 60px;
  background: #41506b;
}

.dg-quote-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(10, 23, 54, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dg-quote-bar button {
  min-height: 0;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  font-weight: 700;
}

.dg-quote-bar button:last-child {
  border: 0;
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
}

.dg-quote-doc {
  max-width: 820px;
  margin: 26px auto;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.5);
  color: #1f2937;
  font-family: "Poppins", Arial, sans-serif;
}

.dg-quote-doc > header {
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background: #0a1f52;
}

.dg-quote-doc > header img {
  height: 42px;
  width: auto;
}

.dg-quote-doc > header div {
  text-align: right;
}

.dg-quote-doc > header span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
}

.dg-quote-doc > header strong {
  display: block;
  margin-top: 4px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.dg-quote-doc > header small {
  display: block;
  margin-top: 3px;
  opacity: 0.75;
}

.dg-doc-body {
  padding: 30px 40px 36px;
}

.dg-doc-meta,
.dg-doc-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dg-doc-meta {
  margin-bottom: 24px;
}

.dg-doc-meta > div,
.dg-quote-doc section,
.dg-doc-two > div {
  border: 1px solid #d4deed;
  border-radius: 10px;
  background: #f5f9ff;
}

.dg-doc-meta > div {
  padding: 14px 18px;
  background: #eef4ff;
}

.dg-doc-meta span {
  display: block;
  color: #0b3b75;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dg-doc-meta strong {
  display: block;
  margin-top: 5px;
  color: #0b2545;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 16px;
}

.dg-doc-meta small {
  display: block;
  margin-top: 3px;
  color: #46557a;
  font-size: 12px;
}

.dg-quote-doc section {
  margin-bottom: 22px;
  padding: 16px 20px;
}

.dg-quote-doc h2 {
  margin: 0 0 10px;
  color: #0b3b75;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dg-quote-doc h3 {
  margin: 0 0 6px;
  color: #0b3b75;
  font-size: 11px;
}

.dg-quote-doc p,
.dg-quote-doc li {
  color: #1f2937;
  font-size: 12.5px;
  line-height: 1.65;
}

.dg-quote-doc table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccd7e5;
  font-size: 11.5px;
}

.dg-quote-doc th {
  padding: 9px 11px;
  color: #fff;
  background: #0b3b75;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.dg-quote-doc th:not(:first-child),
.dg-quote-doc td:not(:first-child) {
  text-align: right;
}

.dg-quote-doc td {
  padding: 9px 11px;
  border-top: 1px solid #e2e8f4;
}

.dg-doc-total {
  margin-top: 14px;
  padding: 14px 18px;
  border: 1px solid #0b3b75;
  border-radius: 10px;
  background: #edf3ff;
}

.dg-doc-total div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.dg-doc-total div:nth-child(3) {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #c5d6ef;
}

.dg-doc-total div:nth-child(3) strong {
  color: #0b3b75;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 17px;
}

.dg-doc-two > div {
  padding: 13px 16px;
  background: #fafcff;
}

.dg-quote-doc > footer {
  padding: 24px 40px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e6ecf8;
  background: #fafcff;
}

.dg-quote-doc > footer span {
  display: block;
  color: #8a97b3;
  font-size: 11px;
  line-height: 1.6;
}

.dg-quote-doc > footer img {
  height: 42px;
}

[hidden] {
  display: none !important;
}

@keyframes dgFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes dgPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(15, 182, 138, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(15, 182, 138, 0); }
}

@media print {
  @page { margin: 24mm 12mm 22mm; }
  html,
  body {
    background: #fff !important;
  }
  .dg > *:not(.dg-quote-overlay) {
    display: none !important;
  }
  .dg-quote-overlay {
    position: static !important;
    inset: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #fff !important;
  }
  .dg-quote-bar {
    display: none !important;
  }
  .dg-quote-doc {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
}

@media (max-width: 900px) {
  .dg-container,
  .dg-nav {
    width: min(100% - 32px, 1180px);
  }

  .dg-hero-grid,
  .dg-signup-grid,
  .dg-cot-grid,
  .dg-page-hero-grid,
  .dg-page-layout {
    grid-template-columns: 1fr;
  }

  .dg-hero-art {
    max-width: 420px;
  }

  .dg-free-grid,
  .dg-card-grid,
  .dg-store-grid,
  .dg-steps-grid,
  .dg-sectors-grid,
  .dg-trust-grid,
  .dg-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dg-store-cta {
    grid-column: span 2;
  }

  [data-dg-desktop-nav] {
    display: none !important;
  }

  .dg-mobile-button {
    display: grid;
  }

  .dg-cot-summary {
    position: static;
  }

  .dg-page-toc {
    position: static;
  }
}

@media (max-width: 560px) {
  .dg-free-grid,
  .dg-card-grid,
  .dg-store-grid,
  .dg-steps-grid,
  .dg-footer-grid,
  .dg-form-grid,
  .dg-doc-meta,
  .dg-doc-two {
    grid-template-columns: 1fr;
  }

  .dg-sectors-grid,
  .dg-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dg-store-cta {
    grid-column: span 1;
  }

  .dg-floating-note {
    left: 10px;
  }

  .dg-footer-bottom,
  .dg-quote-doc > header,
  .dg-quote-doc > footer,
  .dg-quote-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .dg-quote-doc > header div {
    text-align: left;
  }

  .dg-doc-body,
  .dg-quote-doc > header,
  .dg-quote-doc > footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}

/* Blog */
.dg-blog {
  min-height: 100vh;
  background: #fff;
}

.blog-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-narrow {
  width: min(850px, calc(100% - 32px));
}

.blog-hero,
.blog-post-header {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    radial-gradient(820px 420px at 82% 0%, rgba(22, 183, 230, 0.18), transparent 58%),
    radial-gradient(720px 420px at 10% 20%, rgba(11, 95, 255, 0.12), transparent 62%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.blog-hero::after,
.blog-post-header::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2));
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(11, 95, 255, 0.12);
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(11, 95, 255, 0.08), transparent);
}

.blog-hero .blog-container,
.blog-post-header .blog-container {
  position: relative;
  z-index: 1;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 40px;
}

.blog-hero-panel {
  padding: 24px;
  border: 1px solid #dce8ff;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px -48px rgba(11, 95, 255, 0.65);
}

.blog-hero-panel strong {
  display: block;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.blog-hero-panel span {
  display: block;
  margin-top: 8px;
  color: #0b5fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-hero-panel p {
  margin-top: 14px;
  color: #46557a;
  font-size: 15px;
  line-height: 1.65;
}

.blog-kicker,
.blog-back,
.blog-card-meta span,
.blog-featured span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #0b5fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-kicker,
.blog-featured span {
  padding: 7px 12px;
  border: 1px solid #dce8ff;
  border-radius: 999px;
  background: #eef5ff;
}

.blog-back {
  gap: 8px;
  text-decoration: none;
}

.blog-back::before {
  content: "<";
  font-size: 14px;
}

.blog-hero h1,
.blog-post-header h1 {
  max-width: 860px;
  margin: 18px 0 0;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.blog-hero p,
.blog-post-header p {
  max-width: 770px;
  margin: 20px 0 0;
  color: #46557a;
  font-size: 18px;
  line-height: 1.7;
}

.blog-list-section {
  padding: 46px 0 92px;
}

.blog-featured {
  margin-bottom: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 28px;
  border: 1px solid #e9eef8;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(11, 95, 255, 0.08), rgba(22, 183, 230, 0.06)),
    #fff;
  box-shadow: 0 28px 70px -48px rgba(11, 95, 255, 0.55);
}

.blog-featured h2 {
  margin-top: 14px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.blog-featured p {
  margin: 0;
  color: #46557a;
  font-size: 16px;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-category-nav {
  margin: 0 0 28px;
  padding: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid #e9eef8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 58px -50px rgba(16, 38, 80, 0.5);
}

.blog-category-nav a {
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a1f52;
  border: 1px solid #e3ebf8;
  border-radius: 999px;
  background: #f8fbff;
  font-size: 13px;
  font-weight: 700;
}

.blog-category-nav a:hover {
  color: #0b5fff;
  border-color: #cfe0ff;
}

.blog-category-nav span {
  min-width: 22px;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  color: #0b5fff;
  border-radius: 999px;
  background: #eaf3ff;
  font-size: 12px;
}

.blog-editorial-card {
  margin-bottom: 36px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(440px 230px at 88% 15%, rgba(22, 183, 230, 0.42), transparent 62%),
    linear-gradient(135deg, #0a1f52, #0b5fff);
  box-shadow: 0 32px 80px -48px rgba(10, 31, 82, 0.8);
}

.blog-editorial-card span {
  color: #8ce7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-editorial-card h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #fff;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.blog-editorial-card p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.blog-category-sections {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.blog-category-section {
  padding: 0;
  scroll-margin-top: 110px;
}

.blog-category-section > header {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.blog-category-section > header span {
  color: #0b5fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-category-section > header h2 {
  margin: 6px 0 0;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.blog-category-section > header a {
  color: #6b7a99;
  font-size: 13px;
  font-weight: 700;
}

.blog-card {
  min-height: 315px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e9eef8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 58px -45px rgba(16, 38, 80, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: #d4e3ff;
  box-shadow: 0 32px 76px -48px rgba(11, 95, 255, 0.6);
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #8a97b3;
  font-size: 13px;
}

.blog-card-meta time,
.blog-card-meta > span:not(:first-child) {
  color: #8a97b3;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.blog-card h2 {
  margin: 15px 0 0;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.5px;
}

.blog-card h2 a {
  text-decoration: none;
}

.blog-card p {
  margin: 14px 0 0;
  color: #5b667a;
  line-height: 1.65;
}

.blog-card-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #8a97b3;
  font-size: 14px;
}

.blog-card-footer a {
  color: #0b5fff;
  text-decoration: none;
  font-weight: 800;
}

.blog-card-footer a::after {
  content: " ->";
}

.blog-post-header {
  padding-bottom: 58px;
}

.blog-post-header .blog-card-meta {
  margin-top: 18px;
}

.blog-content {
  padding: 60px 0 94px;
}

.blog-content section {
  padding: 0;
}

.blog-content section + section {
  margin-top: 42px;
}

.blog-content h2 {
  margin: 0 0 14px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.6px;
}

.blog-content p,
.blog-content li {
  color: #3f4b63;
  font-size: 17px;
  line-height: 1.82;
}

.blog-content p {
  margin: 0;
}

.blog-content p + p {
  margin-top: 16px;
}

.blog-content ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.blog-content li {
  position: relative;
  padding-left: 30px;
}

.blog-content li + li {
  margin-top: 10px;
}

.blog-content li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #e9faf4;
  box-shadow: inset 0 0 0 4px #0fb68a;
}

.blog-cta {
  margin: 52px 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(420px 220px at 86% 20%, rgba(22, 183, 230, 0.42), transparent 62%),
    linear-gradient(135deg, #0a1f52, #0b5fff);
  box-shadow: 0 28px 70px -38px rgba(10, 31, 82, 0.78);
}

.blog-cta span {
  color: #8ce7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-cta h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 34px);
}

.blog-cta p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.blog-cta .dg-button {
  flex: 0 0 auto;
}

.blog-related {
  margin-top: 54px;
  padding: 0;
}

.blog-related > h2 {
  margin-bottom: 18px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-related-grid a {
  min-height: 130px;
  padding: 18px;
  display: block;
  border: 1px solid #e9eef8;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 20px 50px -44px rgba(16, 38, 80, 0.5);
}

.blog-related-grid a:hover {
  border-color: #d4e3ff;
}

.blog-related-grid span {
  color: #0b5fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-related-grid strong {
  display: block;
  margin-top: 8px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.25;
}

@media (max-width: 900px) {
  .blog-featured,
  .blog-hero-grid,
  .blog-editorial-card,
  .blog-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-hero-panel {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .blog-hero,
  .blog-post-header {
    padding: 56px 0 50px;
  }

  .blog-list-section,
  .blog-content {
    padding-bottom: 68px;
  }

  .blog-featured,
  .blog-editorial-card,
  .blog-card,
  .blog-cta {
    border-radius: 18px;
  }

  .blog-featured,
  .blog-editorial-card {
    padding: 22px;
  }

  .blog-category-section > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-cta .dg-button {
    width: 100%;
  }
}

/* ==========================================================================
   Nuevas Secciones Comerciales: Registro, Precios, Demo & Empresa
   ========================================================================== */

/* Subdominio addon & Form Controls */
.dg-input-addon-group {
  display: flex;
  align-items: center;
}

.dg-input-addon-group .dg-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.dg-input-addon {
  padding: 10px 14px;
  background: #edf2fc;
  border: 1px solid #d0dbe9;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #0b5fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.dg-form-help {
  display: block;
  margin-top: 5px;
  color: #6b7c96;
  font-size: 12px;
}

.dg-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1e293b;
  cursor: pointer;
}

.dg-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0b5fff;
  cursor: pointer;
}

/* Form Alerts & Dividers */
.dg-alert {
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
}

.dg-alert-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.dg-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.dg-alert-icon {
  flex-shrink: 0;
}

.dg-divider {
  border: 0;
  border-top: 1px solid #a7f3d0;
  margin: 16px 0;
}

.dg-step-list {
  padding-left: 20px;
  margin: 12px 0;
  line-height: 1.6;
}

/* Sidebar & Onboarding Features */
.dg-onboarding-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dg-feature-check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-feature-check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.5;
}

.dg-feature-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
  font-weight: 900;
}

.dg-card-accent {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
  border: 1px solid #bfdbfe;
}

/* Pricing Page & Toggle Switcher */
.dg-pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.dg-toggle-label {
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
}

.dg-badge-discount {
  background: #10b981;
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
}

.dg-pricing-toggle {
  width: 56px;
  height: 30px;
  background: #cbd5e1;
  border-radius: 30px;
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.dg-pricing-toggle.is-annual,
.dg-pricing-toggle.is-usd {
  background: #0b5fff;
}

.dg-pricing-toggle-handle {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dg-pricing-toggle.is-annual .dg-pricing-toggle-handle,
.dg-pricing-toggle.is-usd .dg-pricing-toggle-handle {
  transform: translateX(26px);
}

/* Pricing Cards */
.dg-pricing-cards {
  align-items: stretch;
}

.dg-pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dg-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(11, 95, 255, 0.15);
}

.dg-pricing-popular {
  border: 2px solid #0b5fff;
  box-shadow: 0 20px 40px -15px rgba(11, 95, 255, 0.25);
}

.dg-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b5fff;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dg-price-tag {
  margin: 20px 0 10px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.dg-currency {
  font-size: 24px;
  font-weight: 700;
  color: #0b5fff;
}

.dg-amount {
  font-size: 48px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.dg-amount-custom {
  font-size: 32px;
  font-weight: 800;
  color: #0b5fff;
}

.dg-period {
  color: #64748b;
  font-size: 15px;
}

.dg-billing-note {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 20px;
}

.dg-pricing-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #334155;
}

.dg-pricing-features li.dg-disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.dg-pricing-features svg {
  color: #10b981;
  flex-shrink: 0;
}

.dg-pricing-features li.dg-disabled svg {
  color: #cbd5e1;
}

/* Calculator & Matrix Table */
.dg-calculator-box {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
}

.dg-range {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  accent-color: #0b5fff;
  cursor: pointer;
}

.dg-calc-result-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 28px;
  border-radius: 16px;
  text-align: center;
}

.dg-calc-price {
  font-size: 42px;
  font-weight: 900;
  color: #38bdf8;
  margin: 10px 0 4px;
}

.dg-calc-price small {
  font-size: 16px;
  color: #94a3b8;
}

.dg-calc-cop {
  display: block;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 16px;
}

.dg-calc-plan-name {
  color: #e2e8f0;
  margin-bottom: 20px;
}

.dg-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
}

.dg-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.dg-comparison-table th,
.dg-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}

.dg-comparison-table th {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 800;
  font-size: 15px;
}

/* Demo Simulator Component */
.dg-demo-instructions {
  margin-bottom: 28px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.dg-step-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin-top: 14px;
}

.dg-step-horizontal li {
  font-size: 14px;
  color: #1e3a8a;
}

.dg-demo-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
  margin-bottom: 28px;
}

.dg-demo-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.08);
}

.dg-demo-panel-header {
  background: #f8fafc;
  padding: 14px 18px;
  border-bottom: 1px solid #e2e8f0;
}

.dg-demo-badge {
  display: inline-block;
  background: #0b5fff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.dg-demo-panel-header h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.dg-demo-panel-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dg-demo-btn-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.dg-demo-btn-grid button {
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 12px 14px;
}

.dg-demo-btn-grid button small {
  color: #64748b;
  font-size: 11px;
}

.dg-demo-last-ticket {
  background: #f1f5f9;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  margin-top: 14px;
}

.dg-ticket-number {
  font-size: 36px;
  font-weight: 900;
  color: #0b5fff;
  letter-spacing: 1px;
}

/* Operator Simulator */
.dg-operator-current {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 16px;
}

.dg-operator-number {
  font-size: 32px;
  font-weight: 900;
  color: #10b981;
}

.dg-operator-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dg-queue-counter {
  margin-top: auto;
  padding-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
  border-top: 1px dashed #e2e8f0;
}

/* TV Screen Simulator */
.dg-tv-screen {
  background: #090d16;
  color: #fff;

}

.dg-tv-call-main {
  background: radial-gradient(circle, #1e293b 0%, #0f172a 100%);
  border: 2px solid #334155;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.dg-tv-call-main.is-flashing {
  animation: tvFlash 0.5s infinite alternate;
}

@keyframes tvFlash {
  0% { border-color: #38bdf8; box-shadow: 0 0 20px #38bdf8; }
  100% { border-color: #f43f5e; box-shadow: 0 0 30px #f43f5e; }
}

.dg-tv-label {
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 1px;
}

.dg-tv-turn {
  font-size: 46px;
  font-weight: 900;
  color: #facc15;
  margin: 6px 0;
  letter-spacing: 2px;
}

.dg-tv-module {
  font-size: 16px;
  font-weight: 800;
  color: #38bdf8;
}

.dg-tv-history h5 {
  margin: 0 0 10px;
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
}

.dg-tv-history-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.dg-tv-history-list li {
  background: #1e293b;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
}

/* Stats and Channels */
.dg-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.dg-stat-item {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.dg-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #0b5fff;
}

.dg-stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.dg-support-channel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.dg-channel-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 18px;
  border-radius: 14px;
}

.dg-channel-item p {
  color: #64748b;
  font-size: 13px;
  margin: 4px 0 12px;
}

.dg-link-arrow {
  display: inline-block;
  margin-top: 12px;
  color: #0b5fff;
  font-weight: 700;
  text-decoration: none;
}

.dg-link-arrow:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
/* ==========================================================================
   Modelo de Venta por Selección de Apps Estilo Odoo
   ========================================================================== */
.dg-odoo-banner {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1.5px solid #6ee7b7;
  padding: 24px;
  border-radius: 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dg-odoo-badge {
  background: #059669;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.dg-grid-cotizacion {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.dg-sticky {
  position: sticky;
  top: 90px;
}

.dg-card-summary {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
}

.dg-badge-sub {
  display: inline-block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 16px;
  font-weight: 600;
}

.dg-summary-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 18px;
  padding-right: 4px;
}

.dg-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 13px;
}

.dg-summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dg-summary-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dg-summary-copy strong {
  font-size: 13px;
  color: #0f172a;
}

.dg-summary-copy span {
  font-size: 11px;
  color: #64748b;
}

.dg-summary-price {
  font-weight: 700;
  font-size: 13px;
  color: #0b5fff;
}

.dg-summary-remove {
  border: none;
  background: transparent;
  color: #ef4444;
  font-size: 16px;
  cursor: pointer;
  padding: 0 4px;
}

/* Odoo Status Box */
.dg-odoo-status-box {
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 18px;
  transition: all 0.3s;
}

.dg-odoo-status-box.is-free {
  background: #ecfdf5;
  border: 1px dashed #10b981;
  color: #065f46;
}

.dg-odoo-status-box.is-paid {
  background: #eff6ff;
  border: 1px dashed #3b82f6;
  color: #1e40af;
}

.dg-odoo-status-label {
  display: block;
  font-weight: 800;
  font-size: 14px;
}

.dg-odoo-status-desc {
  font-size: 12px;
  opacity: 0.9;
}

.dg-summary-totals {
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dg-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

.dg-total-main {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
}

.dg-total-main strong {
  color: #0b5fff;
}

.dg-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PDF Document styles */
.dg-doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.dg-doc-table th,
.dg-doc-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
}

/* ==========================================================================
   Estilos del Árbol de Decisiones (Wizard Interactivo Paso a Paso)
   ========================================================================== */
.dg-wizard-progress {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
}

.dg-wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: all 0.3s;
}

.dg-wizard-step.is-active,
.dg-wizard-step.is-completed {
  opacity: 1;
}

.dg-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #0f172a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}

.dg-wizard-step.is-active .dg-step-num {
  background: #0b5fff;
  color: #fff;
  box-shadow: 0 0 15px rgba(11, 95, 255, 0.4);
}

.dg-wizard-step.is-completed .dg-step-num {
  background: #10b981;
  color: #fff;
}

.dg-step-title {
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
}

.dg-wizard-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.08);
}

.dg-wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.dg-wizard-option-card {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.dg-wizard-option-card:hover {
  border-color: #0b5fff;
  background: #f0f7ff;
  transform: translateY(-3px);
}

.dg-wizard-option-card.is-selected {
  border-color: #0b5fff;
  background: #eff6ff;
  box-shadow: 0 10px 25px -10px rgba(11, 95, 255, 0.3);
}

.dg-wizard-option-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.dg-wizard-option-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #0f172a;
}

.dg-wizard-option-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* Checkbox Grid Step 4 */
.dg-wizard-checkbox-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.dg-wizard-checkbox-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 18px 20px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.dg-wizard-checkbox-card:hover {
  background: #f1f5f9;
}

.dg-wizard-checkbox-card input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  accent-color: #0b5fff;
}

.dg-wizard-checkbox-card strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 4px;
}

.dg-wizard-checkbox-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.dg-wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.dg-button-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .dg-wizard-progress {
    gap: 10px;
  }
  .dg-step-title {
    display: none;
  }
  .dg-wizard-box {
    padding: 24px 16px;
  }
}




/* =====================================================================
   APÉNDICE — primitivas dg-* compartidas por las páginas y el manual
   (reestructuración 2026 sobre el documento comercial)
   ===================================================================== */

/* Botones que faltaban en el sistema dg- */
.dg-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
  box-shadow: 0 18px 34px -16px rgba(11, 95, 255, 0.75);
}
.dg-button-outline {
  color: #0a1f52;
  border: 1.5px solid #d8e0f0;
  background: #fff;
  box-shadow: none;
}
.dg-button-outline:hover {
  color: #0b5fff;
  border-color: #0b5fff;
}
.dg-button-lg {
  padding: 17px 30px;
  font-size: 17px;
}
.dg-button-block {
  width: 100%;
}
.dg-button-ghost-white {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
}
.dg-button-ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
}
.dg-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

/* Rejillas y tarjetas genéricas */
.dg-grid {
  display: grid;
  gap: 26px;
}
.dg-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dg-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dg-card {
  padding: 26px;
  border: 1px solid #e9eef8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px -46px rgba(16, 38, 80, 0.5);
}
.dg-card h2,
.dg-card h3 {
  font-family: "Outfit", Arial, sans-serif;
  color: #0a1f52;
  margin: 0 0 10px;
}
.dg-card p {
  color: #46557a;
  line-height: 1.65;
  margin: 0 0 10px;
}
.dg-card-glow {
  box-shadow: 0 40px 90px -50px rgba(11, 95, 255, 0.6);
  border-color: #dce8ff;
}

.dg-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Tipografía auxiliar */
.dg-lead {
  color: #46557a;
  font-size: 18px;
  line-height: 1.7;
  margin: 18px 0 0;
  max-width: 720px;
}
.dg-text-muted {
  color: #6b7a99;
}
.dg-section-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.dg-section-header h2 {
  font-family: "Outfit", Arial, sans-serif;
  color: #0a1f52;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 12px;
}
.dg-section-header p {
  color: #46557a;
  line-height: 1.65;
}
.dg-section-more {
  margin-top: 28px;
  text-align: center;
  font-weight: 600;
}
.dg-section-more a {
  color: #0b5fff;
}
.dg-section-dark .dg-section-more a {
  color: #16b7e6;
}

/* Padding del hero de página cuando no usa la rejilla */
.dg-page-hero > .dg-container:not(.dg-page-hero-grid) {
  padding: 66px 0 52px;
}
.dg-page-hero > .dg-container:not(.dg-page-hero-grid) h1 {
  margin-top: 18px;
  font-size: clamp(32px, 4.4vw, 54px);
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
}

/* Badges / CTA / iconos */
.dg-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #eef3ff;
  color: #0b5fff;
}
.dg-badge-success {
  background: rgba(15, 182, 138, 0.14);
  color: #0a8f6c;
}
.dg-icon-box {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.12), rgba(22, 183, 230, 0.14));
  color: #0b5fff;
  margin-bottom: 14px;
}
.dg-cta-box {
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  background: linear-gradient(135deg, #0a1f52, #0b5fff);
  color: #fff;
}
.dg-cta-box h2 {
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
}
.dg-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
.dg-cta-box .dg-button-group {
  justify-content: center;
}
.dg-list-check,
.dg-check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.dg-list-check li,
.dg-check-list li {
  position: relative;
  padding-left: 26px;
  color: #46557a;
  line-height: 1.55;
}
.dg-list-check li::before,
.dg-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0fb68a;
  font-weight: 800;
}
.dg-check-list li a {
  color: #0b5fff;
}

/* Formularios genéricos */
.dg-form-group {
  margin-bottom: 16px;
}
.dg-form-group label,
.dg-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0a1f52;
}
.dg-textarea,
.dg-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8e0f0;
  border-radius: 12px;
  font: inherit;
  color: #0a1f52;
  background: #fff;
}
.dg-textarea:focus,
.dg-select:focus,
.dg-input:focus {
  outline: none;
  border-color: #0b5fff;
}
.dg-alert {
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.dg-alert-success {
  background: rgba(15, 182, 138, 0.1);
  border: 1px solid rgba(15, 182, 138, 0.3);
}
.dg-alert-error {
  background: rgba(229, 72, 77, 0.08);
  border: 1px solid rgba(229, 72, 77, 0.3);
}
.dg-alert h3 {
  margin: 0 0 6px;
  color: #0a1f52;
}
.dg-alert ul {
  margin: 8px 0 0 18px;
}

/* Hero: enlace sutil de descarga del documento */
.dg-hero-doc {
  margin: 14px 0 0;
}
.dg-hero-doc a {
  color: #0b5fff;
  font-size: 14px;
  font-weight: 600;
}

/* Chips del núcleo gratuito */
.dg-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.dg-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.dg-chip svg {
  color: #16b7e6;
}
.dg-price-inline {
  display: block;
  margin-top: 8px;
  color: #0b5fff;
  font-family: "Outfit", Arial, sans-serif;
}

/* Nav: enlace secundario "Documento comercial" */
.dg-nav-secondary {
  color: #46557a;
  font-size: 14px;
  font-weight: 500;
}
.dg-nav-secondary:hover {
  color: #0b5fff;
}

/* Tarjetas de recursos en la home */
.dg-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.dg-resource-card {
  display: block;
  padding: 26px;
  border: 1px solid #e9eef8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px -46px rgba(16, 38, 80, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dg-resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 34px 70px -44px rgba(11, 95, 255, 0.5);
}
.dg-resource-card h3 {
  font-family: "Outfit", Arial, sans-serif;
  color: #0a1f52;
  margin: 12px 0 8px;
}
.dg-resource-card p {
  color: #46557a;
  line-height: 1.6;
  margin: 0;
}

/* Páginas legales */
.dg-legal h2 {
  font-family: "Outfit", Arial, sans-serif;
  color: #0a1f52;
  margin: 28px 0 8px;
}
.dg-legal p {
  color: #46557a;
  line-height: 1.7;
}
.dg-legal a {
  color: #0b5fff;
}

/* Documento comercial: modalidades y notas */
.dg-doc-modalidades {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
.dg-doc-modalidades div {
  padding: 16px 18px;
  border: 1px solid #e9eef8;
  border-radius: 14px;
  background: #f8fbff;
}
.dg-doc-modalidades strong {
  display: block;
  color: #0a1f52;
  margin-bottom: 4px;
}
.dg-doc-modalidades span {
  color: #46557a;
  font-size: 14px;
  line-height: 1.55;
}
.dg-doc-note,
.dg-doc-legalnote {
  margin-top: 14px;
  font-size: 12.5px;
  font-style: italic;
  color: #6b7a99;
}

/* Breadcrumb del manual */
.dg-breadcrumb {
  font-size: 13px;
  color: #6b7a99;
  margin-bottom: 10px;
}
.dg-breadcrumb a {
  color: #0b5fff;
}
.dg-breadcrumb span {
  margin: 0 6px;
}

/* Manual: hub */
.dg-manual-search {
  margin-top: 22px;
  max-width: 460px;
}
.dg-manual-search input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d8e0f0;
  border-radius: 12px;
  font: inherit;
  background: #fff;
}
.dg-manual-search input:focus {
  outline: none;
  border-color: #0b5fff;
}
.dg-manual-group {
  margin-bottom: 44px;
}
.dg-manual-group h2 {
  font-family: "Outfit", Arial, sans-serif;
  color: #0a1f52;
  font-size: 22px;
  margin: 0 0 18px;
}
.dg-manual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.dg-manual-card {
  display: block;
  padding: 22px;
  border: 1px solid #e9eef8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px -46px rgba(16, 38, 80, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dg-manual-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 64px -42px rgba(11, 95, 255, 0.5);
}
.dg-manual-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11, 95, 255, 0.12), rgba(22, 183, 230, 0.14));
  color: #0b5fff;
  margin-bottom: 12px;
}
.dg-manual-card strong {
  display: block;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
}
.dg-manual-eyebrow {
  display: block;
  margin: 6px 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #16b7e6;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dg-manual-card p {
  margin: 0;
  color: #46557a;
  font-size: 14px;
  line-height: 1.55;
}
.dg-manual-empty {
  color: #6b7a99;
}
.dg-manual-empty a {
  color: #0b5fff;
}

/* Manual: artículo */
.dg-manual-shot {
  margin: 0 0 28px;
  border: 1px solid #e9eef8;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fbff;
}
.dg-manual-shot img {
  display: block;
  width: 100%;
}
.dg-manual-shot figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: #6b7a99;
  border-top: 1px solid #eef2fa;
}
.dg-manual-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 36px 0;
  padding-top: 20px;
  border-top: 1px solid #eef2fa;
}
.dg-manual-nav a {
  max-width: 46%;
  color: #0b5fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}
.dg-manual-nav .dg-manual-next {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 900px) {
  .dg-grid-2,
  .dg-grid-3,
  .dg-card-grid-4,
  .dg-resource-grid {
    grid-template-columns: 1fr;
  }
  .dg-page-layout {
    grid-template-columns: 1fr;
  }
  .dg-page-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .dg-cta-box {
    padding: 26px;
  }
  .dg-manual-nav {
    flex-direction: column;
  }
  .dg-manual-nav a {
    max-width: 100%;
  }
  .dg-manual-nav .dg-manual-next {
    text-align: left;
  }
}

/* =====================================================================
   Documento de cotización rediseñado (.dg-qd) — estilo del aplicativo
   ===================================================================== */
.dg-qd {
  max-width: 860px;
  margin: 28px auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(3, 12, 33, 0.6);
  color: #1f2a44;
  font-family: "Poppins", Arial, sans-serif;
}
.dg-qd-head {
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  background: linear-gradient(120deg, #0a1f52 0%, #0b5fff 60%, #16b7e6 130%);
}
.dg-qd-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.dg-qd-brand svg {
  width: 34px;
  height: 30px;
  fill: #fff;
}
.dg-qd-head-meta {
  text-align: right;
}
.dg-qd-head-meta span {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.75;
}
.dg-qd-head-meta strong {
  display: block;
  margin-top: 4px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
}
.dg-qd-head-meta small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.8;
}
.dg-qd-band {
  padding: 16px 40px;
  background: #f4f8ff;
  border-bottom: 1px solid #e3ecfb;
}
.dg-qd-band strong {
  display: block;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
}
.dg-qd-band span {
  display: block;
  margin-top: 3px;
  color: #46557a;
  font-size: 12px;
}
.dg-qd-body {
  padding: 28px 40px 34px;
}
.dg-qd-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
.dg-qd-meta > div {
  padding: 14px 18px;
  border: 1px solid #e3ecfb;
  border-radius: 12px;
  background: #f8fbff;
}
.dg-qd-meta span {
  display: block;
  color: #0b5fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dg-qd-meta strong {
  display: block;
  margin-top: 5px;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
}
.dg-qd-meta small {
  display: block;
  margin-top: 2px;
  color: #6b7a99;
  font-size: 11.5px;
}
.dg-qd-section {
  margin-bottom: 24px;
}
.dg-qd-section h2 {
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eaf1ff;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dg-qd-section h3 {
  margin: 0 0 6px;
  color: #0b5fff;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dg-qd-section p {
  margin: 0 0 8px;
  color: #33405c;
  font-size: 12.5px;
  line-height: 1.65;
}
.dg-qd-muted {
  color: #6b7a99 !important;
  font-size: 11.5px !important;
}
.dg-qd-list {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}
.dg-qd-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
  color: #33405c;
  font-size: 12px;
  line-height: 1.6;
}
.dg-qd-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #16b7e6;
}
.dg-qd-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e3ecfb;
  font-size: 11.5px;
}
.dg-qd-table thead th {
  padding: 9px 12px;
  color: #fff;
  background: #0a1f52;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
}
.dg-qd-table th:not(:first-child),
.dg-qd-table td:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}
.dg-qd-table td {
  padding: 9px 12px;
  border-top: 1px solid #eef3fc;
  vertical-align: top;
  color: #33405c;
}
.dg-qd-table td strong {
  color: #0a1f52;
}
.dg-qd-table td small {
  display: block;
  color: #8a97b3;
  font-size: 10.5px;
}
.dg-qd-table .is-free {
  color: #0a8f6c;
  font-weight: 600;
}
.dg-qd-total {
  margin: 14px 0 24px;
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(120deg, #0a1f52, #0b5fff);
  color: #fff;
}
.dg-qd-total div {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  margin-bottom: 6px;
}
.dg-qd-total .is-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.dg-qd-total .is-total strong {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
}
.dg-qd-total small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10.5px;
  font-style: italic;
}
.dg-qd-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.dg-qd-legal {
  margin-top: 12px;
  color: #8a97b3 !important;
  font-size: 10.5px !important;
  font-style: italic;
}
.dg-qd-foot {
  padding: 22px 40px 26px;
  border-top: 1px solid #e6ecf8;
  background: #f8fbff;
}
.dg-qd-foot strong {
  display: block;
  color: #0a1f52;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 4px;
}
.dg-qd-foot span {
  display: block;
  color: #6b7a99;
  font-size: 11px;
  line-height: 1.6;
}

@media print {
  .dg-qd {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .dg-qd-section,
  .dg-qd-total {
    break-inside: avoid;
  }
}

@media (max-width: 720px) {
  .dg-qd-head,
  .dg-qd-band,
  .dg-qd-body,
  .dg-qd-foot {
    padding-left: 22px;
    padding-right: 22px;
  }
  .dg-qd-meta,
  .dg-qd-two {
    grid-template-columns: 1fr;
  }
}

/* Panel de leads */
.dg-leads-table {
  font-size: 12.5px;
}
.dg-leads-table td {
  vertical-align: top;
}
.dg-leads-table td p {
  margin: 0 0 4px;
  font-size: 12px;
}
.dg-lead-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: capitalize;
  background: #eef3ff;
  color: #0b5fff;
}
.dg-lead-cotizacion {
  background: rgba(15, 182, 138, 0.14);
  color: #0a8f6c;
}

/* Documento de cotización: numeración, pasos y firma */
.dg-qd-section h2 {
  display: flex;
  align-items: center;
  gap: 9px;
}
.dg-qd-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b5fff, #16b7e6);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0;
}
.dg-qd-steps {
  margin: 8px 0 0;
  padding-left: 18px;
  counter-reset: dgqd;
  list-style: none;
}
.dg-qd-steps li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 5px;
  color: #33405c;
  font-size: 12px;
  line-height: 1.6;
}
.dg-qd-steps li::before {
  counter-increment: dgqd;
  content: counter(dgqd);
  position: absolute;
  left: -4px;
  top: 1px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #eaf1ff;
  color: #0b5fff;
  font-size: 9.5px;
  font-weight: 700;
}
.dg-qd-sign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 18px;
}
.dg-qd-sign > div {
  display: flex;
  flex-direction: column;
}
.dg-qd-sign span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0b5fff;
}
.dg-qd-sign i {
  margin: 26px 0 6px;
  border-bottom: 1px solid #9fb2d4;
}
.dg-qd-sign small {
  color: #8a97b3;
  font-size: 10.5px;
}
