/*
 Theme Name: DoliCR — Divi Child
 Theme URI: https://dolicr.lat/
 Description: Sitio corporativo de DoliCR, construido sobre Divi para Hexagons Tech.
 Author: Hexagons Tech
 Author URI: https://hexagons.tech/
 Template: Divi
 Version: 1.0.0
 Text Domain: dolicr
*/

:root {
  --dcr-navy-950: #061321;
  --dcr-navy-900: #091b2e;
  --dcr-navy-800: #0e2b47;
  --dcr-navy-700: #123b60;
  --dcr-blue-500: #2478b9;
  --dcr-blue-100: #e7f2fb;
  --dcr-gold-500: #f8bd16;
  --dcr-gold-400: #ffca36;
  --dcr-ink: #102235;
  --dcr-muted: #586a7c;
  --dcr-line: #dbe4ec;
  --dcr-surface: #f4f7fa;
  --dcr-white: #ffffff;
  --dcr-success: #17845c;
  --dcr-shadow: 0 24px 70px rgba(6, 19, 33, 0.12);
  --dcr-shadow-soft: 0 12px 35px rgba(6, 19, 33, 0.08);
  --dcr-radius-lg: 30px;
  --dcr-radius-md: 20px;
  --dcr-radius-sm: 12px;
  --dcr-shell: min(1180px, calc(100% - 40px));
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dcr-white);
  color: var(--dcr-ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
select,
button {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dcr-navy-900);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  padding-bottom: 0;
}

a {
  color: var(--dcr-blue-500);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(248, 189, 22, 0.65);
  outline-offset: 3px;
}

::selection {
  background: var(--dcr-gold-400);
  color: var(--dcr-navy-950);
}

#page-container {
  overflow: hidden;
  padding-top: 78px !important;
}

#main-content {
  background: var(--dcr-white);
}

.et_pb_section,
.et_pb_row,
.et_pb_column,
.et_pb_module {
  padding: 0;
  margin: 0;
}

.et_pb_row {
  width: 100%;
  max-width: none;
}

.dcr-page .et_pb_section,
.dcr-page .et_pb_row {
  padding: 0 !important;
}

/* Header */
#main-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 236, 0.9);
  box-shadow: none;
  min-height: 78px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#main-header.et-fixed-header {
  box-shadow: 0 8px 30px rgba(6, 19, 33, 0.08) !important;
}

#main-header .container {
  width: var(--dcr-shell);
  max-width: 1180px;
}

#main-header .logo_container {
  height: 78px;
}

#logo {
  max-height: 52px;
  width: auto;
}

#et-top-navigation {
  padding-top: 25px;
  font-weight: 700;
}

#top-menu li {
  padding-right: 26px;
}

#top-menu a {
  color: var(--dcr-navy-800);
  font-size: 14px;
  letter-spacing: -0.01em;
  opacity: 1;
  padding-bottom: 26px;
}

#top-menu a:hover,
#top-menu .current-menu-item > a {
  color: var(--dcr-blue-500);
}

#top-menu li.dcr-menu-cta {
  padding-right: 0;
}

#top-menu li.dcr-menu-cta > a {
  background: var(--dcr-gold-500);
  border-radius: 10px;
  color: var(--dcr-navy-950) !important;
  padding: 12px 18px !important;
  transform: translateY(-12px);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

#top-menu li.dcr-menu-cta > a:hover {
  background: var(--dcr-gold-400);
  box-shadow: 0 10px 24px rgba(248, 189, 22, 0.28);
  transform: translateY(-14px);
}

#et_search_icon {
  display: none;
}

.mobile_menu_bar::before {
  color: var(--dcr-navy-800);
}

.et_mobile_menu {
  border-top: 3px solid var(--dcr-gold-500);
  border-radius: 0 0 16px 16px;
  box-shadow: var(--dcr-shadow-soft);
}

.et_mobile_menu li a {
  color: var(--dcr-navy-800);
  font-weight: 700;
}

/* Shared layout */
.dcr-shell {
  width: var(--dcr-shell);
  margin-inline: auto;
}

.dcr-section {
  padding: 104px 0;
  position: relative;
}

.dcr-section--compact {
  padding: 76px 0;
}

.dcr-section--surface {
  background: var(--dcr-surface);
}

.dcr-section--dark {
  background:
    radial-gradient(circle at 80% 15%, rgba(36, 120, 185, 0.2), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(248, 189, 22, 0.11), transparent 24%),
    var(--dcr-navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.dcr-section--dark h1,
.dcr-section--dark h2,
.dcr-section--dark h3,
.dcr-section--dark h4 {
  color: var(--dcr-white);
}

.dcr-grid {
  display: grid;
  gap: 28px;
}

.dcr-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dcr-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.dcr-grid--hero {
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 70px;
}

.dcr-grid--aside {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 72px;
}

.dcr-kicker {
  align-items: center;
  color: var(--dcr-blue-500);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.dcr-kicker::before {
  background: var(--dcr-gold-500);
  border-radius: 999px;
  content: "";
  display: block;
  height: 8px;
  width: 8px;
}

.dcr-section--dark .dcr-kicker {
  color: var(--dcr-gold-400);
}

.dcr-section--dark .dcr-kicker::before {
  background: var(--dcr-gold-400);
}

.dcr-title {
  font-size: clamp(38px, 5vw, 66px);
  margin: 0 0 22px;
  max-width: 900px;
}

.dcr-title--page {
  font-size: clamp(42px, 6vw, 72px);
  max-width: 850px;
}

.dcr-title--section {
  font-size: clamp(34px, 4vw, 50px);
  margin: 0 0 18px;
}

.dcr-title em {
  color: var(--dcr-blue-500);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

.dcr-section--dark .dcr-title em {
  color: var(--dcr-gold-400);
}

.dcr-lead {
  color: var(--dcr-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 760px;
}

.dcr-section--dark .dcr-lead,
.dcr-section--dark .dcr-copy {
  color: rgba(255, 255, 255, 0.74);
}

.dcr-copy {
  color: var(--dcr-muted);
  font-size: 17px;
  line-height: 1.75;
}

.dcr-copy p + p {
  margin-top: 18px;
}

.dcr-heading {
  margin-bottom: 48px;
}

.dcr-heading--center {
  margin-inline: auto;
  max-width: 790px;
  text-align: center;
}

.dcr-heading--center .dcr-lead {
  margin-inline: auto;
}

.dcr-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dcr-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

.dcr-button:hover {
  transform: translateY(-2px);
}

.dcr-button--primary {
  background: var(--dcr-gold-500);
  color: var(--dcr-navy-950);
  box-shadow: 0 12px 28px rgba(248, 189, 22, 0.24);
}

.dcr-button--primary:hover {
  background: var(--dcr-gold-400);
  color: var(--dcr-navy-950);
  box-shadow: 0 16px 34px rgba(248, 189, 22, 0.3);
}

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

.dcr-button--secondary:hover {
  border-color: var(--dcr-blue-500);
  color: var(--dcr-blue-500);
  box-shadow: var(--dcr-shadow-soft);
}

.dcr-button--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--dcr-white);
}

.dcr-button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--dcr-white);
}

.dcr-button__arrow {
  font-size: 19px;
  line-height: 1;
}

.dcr-card {
  background: var(--dcr-white);
  border: 1px solid var(--dcr-line);
  border-radius: var(--dcr-radius-md);
  box-shadow: 0 1px 0 rgba(6, 19, 33, 0.02);
  padding: 30px;
  transition: border 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.dcr-card:hover {
  border-color: rgba(36, 120, 185, 0.35);
  box-shadow: var(--dcr-shadow-soft);
  transform: translateY(-4px);
}

.dcr-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
}

.dcr-card p {
  color: var(--dcr-muted);
  margin: 0;
}

.dcr-card__icon,
.dcr-icon {
  align-items: center;
  background: var(--dcr-blue-100);
  border-radius: 13px;
  color: var(--dcr-blue-500);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 22px;
  width: 46px;
}

.dcr-card__eyebrow {
  color: var(--dcr-blue-500);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dcr-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.dcr-chip {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
}

.dcr-list {
  display: grid;
  gap: 12px;
  list-style: none !important;
  margin: 24px 0 0 !important;
  padding: 0 !important;
}

.dcr-list li {
  color: var(--dcr-muted);
  display: flex;
  gap: 12px;
  line-height: 1.5;
}

.dcr-list li::before {
  align-items: center;
  background: var(--dcr-gold-500);
  border-radius: 50%;
  color: var(--dcr-navy-950);
  content: "✓";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 900;
  height: 20px;
  justify-content: center;
  margin-top: 2px;
  width: 20px;
}

/* Hero */
.dcr-hero {
  background:
    linear-gradient(120deg, rgba(36, 120, 185, 0.08), transparent 45%),
    linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
  min-height: 720px;
  overflow: hidden;
  padding: 106px 0 94px;
  position: relative;
}

.dcr-hero::before {
  background-image:
    linear-gradient(rgba(9, 27, 46, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 27, 46, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, #000, transparent 72%);
  pointer-events: none;
  position: absolute;
}

.dcr-hero .dcr-shell {
  position: relative;
  z-index: 1;
}

.dcr-hero .dcr-title {
  max-width: 720px;
}

.dcr-trust {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.dcr-trust__item {
  align-items: center;
  color: var(--dcr-muted);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}

.dcr-trust__dot {
  background: var(--dcr-success);
  border: 4px solid rgba(23, 132, 92, 0.13);
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

.dcr-dashboard {
  background: var(--dcr-navy-950);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  box-shadow: 0 34px 80px rgba(6, 19, 33, 0.28);
  min-height: 470px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
}

.dcr-dashboard::after {
  background: var(--dcr-gold-500);
  border-radius: 50%;
  content: "";
  filter: blur(75px);
  height: 130px;
  opacity: 0.2;
  position: absolute;
  right: -40px;
  top: -30px;
  width: 130px;
}

.dcr-dashboard__bar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  margin: -2px 0 18px;
  padding: 0 2px 16px;
}

.dcr-dashboard__brand {
  align-items: center;
  color: var(--dcr-white);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.04em;
}

.dcr-dashboard__brand-mark {
  background: var(--dcr-gold-500);
  border-radius: 6px;
  height: 22px;
  position: relative;
  transform: rotate(30deg);
  width: 25px;
}

.dcr-dashboard__status {
  color: #6de7b6;
  font-size: 11px;
  font-weight: 800;
}

.dcr-dashboard__stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.dcr-dashboard__stat,
.dcr-dashboard__panel {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  padding: 15px;
}

.dcr-dashboard__label {
  color: rgba(255, 255, 255, 0.48);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dcr-dashboard__value {
  color: var(--dcr-white);
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 5px;
}

.dcr-dashboard__delta {
  color: #6de7b6;
  font-size: 9px;
  font-weight: 800;
}

.dcr-dashboard__main {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.28fr 0.72fr;
}

.dcr-dashboard__panel {
  min-height: 242px;
}

.dcr-dashboard__panel-title {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
}

.dcr-bars {
  align-items: end;
  display: flex;
  gap: 9px;
  height: 138px;
  margin-top: 24px;
}

.dcr-bars span {
  background: linear-gradient(to top, var(--dcr-blue-500), #56b1e7);
  border-radius: 5px 5px 2px 2px;
  flex: 1;
  min-width: 8px;
}

.dcr-bars span:nth-child(1) { height: 42%; }
.dcr-bars span:nth-child(2) { height: 56%; }
.dcr-bars span:nth-child(3) { height: 48%; }
.dcr-bars span:nth-child(4) { height: 72%; }
.dcr-bars span:nth-child(5) { height: 66%; }
.dcr-bars span:nth-child(6) { height: 88%; background: linear-gradient(to top, #dc9700, var(--dcr-gold-400)); }
.dcr-bars span:nth-child(7) { height: 79%; }
.dcr-bars span:nth-child(8) { height: 96%; }

.dcr-activity {
  display: grid;
  gap: 11px;
  margin-top: 19px;
}

.dcr-activity__row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 9px 1fr;
}

.dcr-activity__row::before {
  background: var(--dcr-gold-500);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.dcr-activity__line {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 7px;
}

.dcr-activity__row:nth-child(2)::before,
.dcr-activity__row:nth-child(4)::before {
  background: #4db3e8;
}

.dcr-activity__row:nth-child(1) .dcr-activity__line { width: 93%; }
.dcr-activity__row:nth-child(2) .dcr-activity__line { width: 78%; }
.dcr-activity__row:nth-child(3) .dcr-activity__line { width: 87%; }
.dcr-activity__row:nth-child(4) .dcr-activity__line { width: 63%; }
.dcr-activity__row:nth-child(5) .dcr-activity__line { width: 82%; }
.dcr-activity__row:nth-child(6) .dcr-activity__line { width: 70%; }

/* Feature sections */
.dcr-band {
  background: var(--dcr-white);
  border-bottom: 1px solid var(--dcr-line);
  border-top: 1px solid var(--dcr-line);
  padding: 26px 0;
}

.dcr-band__inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.3fr repeat(4, 1fr);
}

.dcr-band__lead {
  color: var(--dcr-navy-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dcr-band__item {
  align-items: center;
  color: var(--dcr-muted);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
}

.dcr-band__item::before {
  background: var(--dcr-gold-500);
  border-radius: 4px;
  content: "";
  height: 10px;
  transform: rotate(30deg);
  width: 11px;
}

.dcr-solution {
  min-height: 100%;
}

.dcr-solution__number {
  color: rgba(36, 120, 185, 0.25);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 36px;
}

.dcr-solution__link {
  align-items: center;
  color: var(--dcr-blue-500);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 7px;
  margin-top: 22px;
  text-decoration: none;
}

.dcr-module-card {
  overflow: hidden;
  padding: 0;
}

.dcr-module-card__top {
  background: var(--dcr-navy-900);
  min-height: 132px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.dcr-module-card__top::after {
  border: 15px solid rgba(248, 189, 22, 0.17);
  border-radius: 22px;
  content: "";
  height: 100px;
  position: absolute;
  right: -34px;
  top: 14px;
  transform: rotate(30deg);
  width: 114px;
}

.dcr-module-card__tag {
  background: rgba(248, 189, 22, 0.13);
  border: 1px solid rgba(248, 189, 22, 0.2);
  border-radius: 999px;
  color: var(--dcr-gold-400);
  display: inline-block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.dcr-module-card__top h3 {
  color: var(--dcr-white);
  font-size: 22px;
  margin-top: 18px;
  max-width: 80%;
  position: relative;
  z-index: 1;
}

.dcr-module-card__body {
  padding: 26px;
}

.dcr-module-card__body p {
  min-height: 108px;
}

.dcr-module-card__meta {
  border-top: 1px solid var(--dcr-line);
  color: var(--dcr-blue-500);
  font-size: 12px;
  font-weight: 800;
  margin-top: 22px;
  padding-top: 16px;
}

.dcr-process {
  counter-reset: dcr-process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dcr-process__step {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  counter-increment: dcr-process;
  padding: 34px 28px 0 0;
  position: relative;
}

.dcr-process__step::before {
  align-items: center;
  background: var(--dcr-gold-500);
  border: 6px solid var(--dcr-navy-950);
  border-radius: 50%;
  color: var(--dcr-navy-950);
  content: counter(dcr-process, decimal-leading-zero);
  display: flex;
  font-size: 10px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: -20px;
  width: 38px;
}

.dcr-process__step h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.dcr-process__step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.dcr-stat-panel {
  background: var(--dcr-white);
  border: 1px solid var(--dcr-line);
  border-radius: var(--dcr-radius-lg);
  box-shadow: var(--dcr-shadow);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.dcr-stat {
  padding: 36px;
}

.dcr-stat + .dcr-stat {
  border-left: 1px solid var(--dcr-line);
}

.dcr-stat strong {
  color: var(--dcr-navy-900);
  display: block;
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.dcr-stat span {
  color: var(--dcr-muted);
  font-size: 13px;
  font-weight: 700;
}

.dcr-industry {
  align-items: start;
  display: flex;
  gap: 17px;
}

.dcr-industry .dcr-icon {
  flex: 0 0 auto;
  margin: 0;
}

.dcr-industry h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.dcr-industry p {
  font-size: 14px;
}

.dcr-quote {
  background: var(--dcr-blue-100);
  border-left: 4px solid var(--dcr-blue-500);
  border-radius: 0 var(--dcr-radius-md) var(--dcr-radius-md) 0;
  color: var(--dcr-navy-800);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 30px;
  padding: 26px 28px;
}

.dcr-cta {
  background:
    radial-gradient(circle at 85% 15%, rgba(36, 120, 185, 0.28), transparent 31%),
    var(--dcr-navy-950);
  border-radius: var(--dcr-radius-lg);
  box-shadow: var(--dcr-shadow);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  padding: 56px 60px;
  position: relative;
}

.dcr-cta h2 {
  color: var(--dcr-white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 14px;
  max-width: 760px;
}

.dcr-cta p {
  font-size: 17px;
  margin: 0;
  max-width: 680px;
}

.dcr-cta .dcr-actions {
  align-self: center;
}

/* Inner pages */
.dcr-page-hero {
  background:
    linear-gradient(115deg, rgba(36, 120, 185, 0.1), transparent 45%),
    var(--dcr-surface);
  border-bottom: 1px solid var(--dcr-line);
  padding: 102px 0 86px;
  position: relative;
}

.dcr-breadcrumb {
  color: var(--dcr-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.dcr-breadcrumb a {
  color: var(--dcr-blue-500);
  text-decoration: none;
}

.dcr-sticky {
  position: sticky;
  top: 124px;
}

.dcr-feature-block {
  border-bottom: 1px solid var(--dcr-line);
  display: grid;
  gap: 32px;
  grid-template-columns: 56px 1fr;
  padding: 0 0 34px;
}

.dcr-feature-block + .dcr-feature-block {
  padding-top: 34px;
}

.dcr-feature-block .dcr-icon {
  margin: 0;
}

.dcr-feature-block h3 {
  font-size: 24px;
  margin-bottom: 9px;
}

.dcr-feature-block p {
  color: var(--dcr-muted);
  margin: 0;
}

.dcr-feature-block .dcr-chip-row {
  margin-top: 16px;
}

.dcr-feature-block .dcr-chip {
  background: var(--dcr-surface);
  border-color: var(--dcr-line);
  color: var(--dcr-muted);
}

.dcr-tier {
  height: 100%;
  position: relative;
}

.dcr-tier--highlight {
  border-color: var(--dcr-gold-500);
  box-shadow: var(--dcr-shadow);
}

.dcr-tier__badge {
  background: var(--dcr-gold-500);
  border-radius: 999px;
  color: var(--dcr-navy-950);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
}

.dcr-tier__name {
  color: var(--dcr-blue-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.dcr-tier h3 {
  font-size: 27px;
}

.dcr-tier .dcr-list {
  margin-top: 22px !important;
}

.dcr-faq {
  display: grid;
  gap: 12px;
}

.dcr-faq details {
  background: var(--dcr-white);
  border: 1px solid var(--dcr-line);
  border-radius: var(--dcr-radius-sm);
  padding: 0 22px;
}

.dcr-faq summary {
  color: var(--dcr-navy-800);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  padding: 20px 34px 20px 0;
  position: relative;
}

.dcr-faq summary::-webkit-details-marker {
  display: none;
}

.dcr-faq summary::after {
  color: var(--dcr-blue-500);
  content: "+";
  font-size: 22px;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 14px;
}

.dcr-faq details[open] summary::after {
  content: "−";
}

.dcr-faq details p {
  color: var(--dcr-muted);
  margin: -4px 0 22px;
}

/* Contact */
.dcr-contact-panel {
  background: var(--dcr-white);
  border: 1px solid var(--dcr-line);
  border-radius: var(--dcr-radius-lg);
  box-shadow: var(--dcr-shadow);
  padding: 42px;
}

.dcr-contact-panel h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.dcr-contact-panel > p {
  color: var(--dcr-muted);
  margin-bottom: 28px;
}

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

.dcr-field {
  display: grid;
  gap: 8px;
}

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

.dcr-field label {
  color: var(--dcr-navy-800);
  font-size: 13px;
  font-weight: 800;
}

.dcr-field input,
.dcr-field textarea,
.dcr-field select {
  background: var(--dcr-surface);
  border: 1px solid var(--dcr-line);
  border-radius: 10px;
  color: var(--dcr-ink);
  font-size: 15px;
  min-height: 50px;
  padding: 12px 14px;
  transition: background 180ms ease, border 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.dcr-field textarea {
  min-height: 132px;
  resize: vertical;
}

.dcr-field input:focus,
.dcr-field textarea:focus,
.dcr-field select:focus {
  background: var(--dcr-white);
  border-color: var(--dcr-blue-500);
  box-shadow: 0 0 0 4px rgba(36, 120, 185, 0.1);
  outline: 0;
}

.dcr-form-note {
  color: var(--dcr-muted);
  font-size: 12px;
  line-height: 1.5;
}

.dcr-form-status {
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  grid-column: 1 / -1;
  padding: 13px 15px;
}

.dcr-form-status--success {
  background: #e8f7f1;
  color: #0b6b48;
}

.dcr-form-status--error {
  background: #fff0f0;
  color: #a32d2d;
}

.dcr-honeypot {
  left: -9999px !important;
  position: absolute !important;
}

.dcr-contact-aside {
  background: var(--dcr-navy-950);
  border-radius: var(--dcr-radius-lg);
  color: rgba(255, 255, 255, 0.72);
  min-height: 100%;
  overflow: hidden;
  padding: 44px;
  position: relative;
}

.dcr-contact-aside::after {
  border: 24px solid rgba(248, 189, 22, 0.15);
  border-radius: 35px;
  bottom: -68px;
  content: "";
  height: 190px;
  position: absolute;
  right: -62px;
  transform: rotate(30deg);
  width: 220px;
}

.dcr-contact-aside h2,
.dcr-contact-aside h3 {
  color: var(--dcr-white);
}

.dcr-contact-aside h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.dcr-contact-item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 26px;
  padding-top: 22px;
}

.dcr-contact-item strong {
  color: var(--dcr-white);
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.dcr-contact-item span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

/* Footer */
#main-footer {
  display: none;
}

.dcr-footer {
  background: #04101d;
  color: rgba(255, 255, 255, 0.62);
}

.dcr-footer__main {
  display: grid;
  gap: 54px;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  padding: 72px 0 54px;
}

.dcr-footer__brand img {
  height: auto;
  margin-bottom: 20px;
  max-width: 190px;
  width: 100%;
}

.dcr-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 330px;
}

.dcr-footer h3 {
  color: var(--dcr-white);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.dcr-footer ul {
  display: grid;
  gap: 10px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dcr-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  text-decoration: none;
}

.dcr-footer a:hover {
  color: var(--dcr-gold-400);
}

.dcr-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.dcr-footer__social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.dcr-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 22px 0;
}

.dcr-footer__bottom p {
  margin: 0;
}

.dcr-footer__bottom-links {
  display: flex;
  gap: 18px;
}

/* Privacy and utility */
.dcr-legal {
  color: var(--dcr-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 820px;
}

.dcr-legal h2 {
  font-size: 28px;
  margin: 42px 0 14px;
}

.dcr-legal h3 {
  font-size: 21px;
  margin: 30px 0 10px;
}

.dcr-legal ul {
  margin: 14px 0 20px 22px;
}

.dcr-muted-note {
  background: var(--dcr-surface);
  border: 1px solid var(--dcr-line);
  border-radius: var(--dcr-radius-sm);
  color: var(--dcr-muted);
  font-size: 13px;
  margin-top: 26px;
  padding: 16px 18px;
}

@media (max-width: 1120px) {
  .dcr-grid--hero {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  }

  .dcr-grid--4,
  .dcr-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcr-process {
    gap: 52px 0;
  }

  .dcr-footer__main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  #page-container {
    padding-top: 70px !important;
  }

  #main-header,
  #main-header .logo_container {
    min-height: 70px;
  }

  #logo {
    max-height: 45px;
  }

  #et-top-navigation {
    padding-top: 24px;
  }

  .dcr-section {
    padding: 82px 0;
  }

  .dcr-grid--hero,
  .dcr-grid--aside,
  .dcr-cta {
    grid-template-columns: 1fr;
  }

  .dcr-grid--hero {
    gap: 60px;
  }

  .dcr-hero {
    min-height: 0;
    padding: 86px 0;
  }

  .dcr-dashboard {
    margin-inline: auto;
    max-width: 620px;
    transform: none;
  }

  .dcr-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .dcr-band__lead {
    grid-column: 1 / -1;
  }

  .dcr-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dcr-cta {
    gap: 28px;
    padding: 48px;
  }

  .dcr-sticky {
    position: static;
  }

  .dcr-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  :root {
    --dcr-shell: min(100% - 30px, 1180px);
    --dcr-radius-lg: 22px;
  }

  body {
    font-size: 15px;
  }

  .dcr-section {
    padding: 68px 0;
  }

  .dcr-section--compact {
    padding: 56px 0;
  }

  .dcr-title,
  .dcr-title--page {
    font-size: clamp(37px, 11vw, 52px);
  }

  .dcr-title--section {
    font-size: clamp(31px, 9vw, 42px);
  }

  .dcr-title em {
    white-space: normal;
  }

  .dcr-lead {
    font-size: 17px;
  }

  .dcr-grid--2,
  .dcr-grid--3,
  .dcr-grid--4,
  .dcr-stat-panel,
  .dcr-contact-form,
  .dcr-footer__main {
    grid-template-columns: 1fr;
  }

  .dcr-card {
    padding: 25px;
  }

  .dcr-dashboard {
    margin-left: -5px;
    margin-right: -5px;
    min-height: 430px;
    padding: 15px;
  }

  .dcr-dashboard__stats {
    gap: 7px;
  }

  .dcr-dashboard__stat {
    padding: 11px;
  }

  .dcr-dashboard__value {
    font-size: 17px;
  }

  .dcr-dashboard__main {
    grid-template-columns: 1fr;
  }

  .dcr-dashboard__panel:last-child {
    display: none;
  }

  .dcr-band__inner {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .dcr-band__lead {
    grid-column: auto;
  }

  .dcr-process {
    grid-template-columns: 1fr;
  }

  .dcr-process__step {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 0;
    padding: 0 0 34px 38px;
  }

  .dcr-process__step::before {
    left: -20px;
    top: -4px;
  }

  .dcr-stat {
    padding: 28px;
  }

  .dcr-stat + .dcr-stat {
    border-left: 0;
    border-top: 1px solid var(--dcr-line);
  }

  .dcr-cta {
    padding: 36px 28px;
  }

  .dcr-cta .dcr-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dcr-button {
    width: 100%;
  }

  .dcr-page-hero {
    padding: 78px 0 68px;
  }

  .dcr-feature-block {
    gap: 16px;
    grid-template-columns: 42px 1fr;
  }

  .dcr-feature-block .dcr-icon {
    height: 42px;
    width: 42px;
  }

  .dcr-contact-panel,
  .dcr-contact-aside {
    padding: 28px;
  }

  .dcr-field--full {
    grid-column: auto;
  }

  .dcr-footer__main {
    gap: 38px;
    padding-top: 58px;
  }

  .dcr-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
