:root {
  --dc-blue: #063f68;
  --dc-blue-dark: #062b45;
  --dc-cyan: #0c7da0;
  --dc-green: #05a66b;
  --dc-green-dark: #047b55;
  --dc-ink: #10212d;
  --dc-muted: #657684;
  --dc-white: #ffffff;
  --dc-paper: #f4f8fa;
  --dc-line: #dbe7ec;
  --dc-shadow: 0 28px 80px rgba(4, 43, 69, 0.18);
}

html {
  scroll-behavior: smooth;
}

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

.dincorales-page *,
.dc-footer * {
  box-sizing: border-box;
}

.dincorales-page a,
.dc-footer a {
  color: inherit;
  text-decoration: none;
}

.dincorales-page {
  overflow: hidden;
}

.dc-hero {
  min-height: 94vh;
  color: var(--dc-white);
  position: relative;
  background:
    radial-gradient(circle at 78% 18%, rgba(5, 166, 107, 0.34), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(12, 125, 160, 0.34), transparent 26%),
    linear-gradient(120deg, rgba(6, 43, 69, 0.98), rgba(6, 63, 104, 0.92) 48%, rgba(5, 166, 107, 0.84));
}

.dc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.dc-hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 20%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(18deg);
  animation: dcFloatShape 8s ease-in-out infinite;
}

.dc-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

.dc-brand img {
  width: min(330px, 58vw);
  height: auto;
  display: block;
  background: var(--dc-white);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.dc-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.96rem;
}

.dc-nav-button {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.dc-hero-grid {
  min-height: calc(94vh - 110px);
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 58px;
  padding: 42px 0 76px;
}

.dc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #9ff4cd;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.dc-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--dc-green);
}

.dincorales-page h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
  margin: 0 0 24px;
}

.dc-hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  margin: 0 0 34px;
}

.dc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dc-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.dc-button:hover {
  transform: translateY(-3px);
}

.dc-button-primary {
  color: var(--dc-white);
  background: linear-gradient(135deg, var(--dc-green), var(--dc-cyan));
  box-shadow: 0 18px 42px rgba(5, 166, 107, 0.26);
}

.dc-button-secondary {
  color: var(--dc-white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.dc-dashboard {
  background: rgba(255, 255, 255, 0.94);
  color: var(--dc-ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--dc-shadow);
  overflow: hidden;
  animation: dcRiseIn 0.9s ease both;
}

.dc-dashboard-top {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #eef8f4);
  border-bottom: 1px solid var(--dc-line);
}

.dc-dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.dc-dashboard-title strong {
  font-size: 1.1rem;
}

.dc-pulse {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--dc-green);
  animation: dcPulse 1.8s infinite;
}

.dc-chart {
  height: 220px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding-top: 20px;
}

.dc-bar {
  flex: 1;
  min-width: 30px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--dc-green), var(--dc-blue));
  transform-origin: bottom;
  animation: dcGrowBar 1.4s ease both;
  animation-delay: var(--delay);
  box-shadow: 0 12px 22px rgba(6, 63, 104, 0.15);
}

.dc-dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dc-line);
}

.dc-dash-cell {
  padding: 20px;
  border-right: 1px solid var(--dc-line);
}

.dc-dash-cell:last-child {
  border-right: 0;
}

.dc-dash-cell strong {
  display: block;
  color: var(--dc-blue);
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 6px;
}

.dc-dash-cell span {
  color: var(--dc-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.dincorales-page section {
  padding: 88px 0;
}

.dc-section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.dc-kicker {
  color: var(--dc-green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.dincorales-page h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

.dc-section-head p,
.dc-lead {
  color: var(--dc-muted);
  font-size: 1.07rem;
}

.dc-section-head p,
.dc-lead,
.dc-service-card p,
.dc-contact p {
  margin-top: 0;
}

.dc-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dc-service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--dc-line);
  border-radius: 8px;
  background: var(--dc-white);
  box-shadow: 0 16px 42px rgba(6, 43, 69, 0.08);
  position: relative;
  overflow: hidden;
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.dc-service-card.visible,
.dc-benefit.visible {
  transform: translateY(0);
  opacity: 1;
}

.dc-service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--dc-blue), var(--dc-green));
}

.dc-service-number {
  color: rgba(6, 63, 104, 0.13);
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 30px;
}

.dc-service-card h3 {
  font-size: 1.35rem;
  margin: 0 0 14px;
}

.dc-service-card p {
  color: var(--dc-muted);
}

.dc-proof {
  background: var(--dc-white);
  border-top: 1px solid var(--dc-line);
  border-bottom: 1px solid var(--dc-line);
}

.dc-proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

.dc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.dc-metric {
  padding: 24px;
  border-radius: 8px;
  background: #edf7f3;
  border: 1px solid #d2e9df;
}

.dc-metric strong {
  color: var(--dc-blue);
  display: block;
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 8px;
}

.dc-metric span {
  color: var(--dc-muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.dc-benefit-list {
  display: grid;
  gap: 14px;
}

.dc-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--dc-line);
  border-radius: 8px;
  background: #fbfdfe;
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.dc-benefit-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dc-white);
  background: linear-gradient(135deg, var(--dc-green), var(--dc-blue));
  font-weight: 900;
}

.dc-contact {
  color: var(--dc-white);
  background: linear-gradient(135deg, var(--dc-blue-dark), #064d68 54%, var(--dc-green-dark));
  position: relative;
}

.dc-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.dc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.dc-contact p {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px 0 28px;
  font-size: 1.08rem;
}

.dc-contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 28px;
  backdrop-filter: blur(14px);
}

.dc-contact-item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dc-contact-item:last-child {
  border-bottom: 0;
}

.dc-contact-item span {
  display: block;
  color: #9ff4cd;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dc-footer {
  padding: 28px 0;
  background: #eaf2f5;
  color: var(--dc-muted);
  border-top: 1px solid var(--dc-line);
  font-family: Arial, Helvetica, sans-serif;
}

.dc-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

@keyframes dcGrowBar {
  from { transform: scaleY(0); opacity: 0.35; }
  to { transform: scaleY(1); opacity: 1; }
}

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

@keyframes dcPulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 166, 107, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(5, 166, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 166, 107, 0); }
}

@keyframes dcFloatShape {
  0%, 100% { transform: translateY(0) rotate(18deg); }
  50% { transform: translateY(18px) rotate(22deg); }
}

@media (max-width: 920px) {
  .dc-nav {
    display: none;
  }

  .dc-hero-grid,
  .dc-section-head,
  .dc-proof-grid,
  .dc-contact-grid {
    grid-template-columns: 1fr;
  }

  .dc-hero-grid {
    gap: 38px;
  }

  .dc-services,
  .dc-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dc-container {
    width: min(100% - 28px, 1180px);
  }

  .dc-brand img {
    width: min(290px, 82vw);
  }

  .dincorales-page h1 {
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  .dc-dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .dc-dash-cell {
    border-right: 0;
    border-bottom: 1px solid var(--dc-line);
  }

  .dc-dash-cell:last-child {
    border-bottom: 0;
  }

  .dc-actions,
  .dc-footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .dc-button {
    width: 100%;
  }

  .dincorales-page section {
    padding: 64px 0;
  }
}
