/* ==========================================================================
   Dot Core Solution – Home page (creative dark theme)
   Style: Hero-centric + Bento grid + motion (UI/UX Pro Max recommendation
   for agencies). Fonts: Space Grotesk / DM Sans.
   Scoped to body.dc-home so it doesn't clash with common.css.
   ========================================================================== */

:root {
  /* Surfaces */
  --dc-bg: #070a16;
  --dc-bg-2: #0b1020;
  --dc-surface: #111829;
  --dc-surface-2: #172036;
  --dc-line: rgba(255, 255, 255, .08);
  --dc-line-2: rgba(255, 255, 255, .14);
  /* Text */
  --dc-heading: #ffffff;
  --dc-text: #c6cfe2;
  --dc-muted: #97a3bf;
  /* Brand */
  --dc-brand: #4a63f0;
  --dc-accent: #45bfff;          /* logo sky blue – icons, highlights, glow */
  --dc-accent-ink: #04112a;      /* text on sky-blue fills (contrast > 9:1) */
  --dc-accent-2: #6d83ff;        /* logo royal blue – gradients, charts */
  --dc-cta: #ffd84d;             /* logo yellow – primary buttons */
  --dc-cta-hover: #ffe27a;
  --dc-cta-ink: #1a1400;         /* text on yellow (contrast > 13:1) */
  --dc-lime: #c3fb73;            /* logo lime – small positive labels */
  --dc-grad: linear-gradient(100deg, #6fd3ff 0%, #45bfff 40%, #6d83ff 100%);
  /* Light surfaces (forms) */
  --dc-paper: #ffffff;
  --dc-paper-2: #f3f5fa;
  --dc-ink: #0b1226;
  --dc-ink-muted: #525d78;
  --dc-paper-line: #dfe4ef;
  /* Shape & depth */
  --dc-r-sm: 10px;
  --dc-r: 18px;
  --dc-r-lg: 28px;
  --dc-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  --dc-glow: 0 0 0 1px rgba(69, 191, 255, .35), 0 12px 40px rgba(69, 191, 255, .18);
  /* Type */
  --dc-font-head: "Space Grotesk", system-ui, sans-serif;
  --dc-font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  /* Motion */
  --dc-ease: cubic-bezier(.22, 1, .36, 1);
  --dc-nav-h: 76px;
}

/* ---------- Base ---------- */
body.dc-home {
  width: auto; margin: 0;
  font-family: var(--dc-font); font-size: 16px; line-height: 1.65;
  color: var(--dc-text); background: var(--dc-bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
:where(.dc-home) :is(h1, h2, h3, h4) {
  font-family: var(--dc-font-head); color: var(--dc-heading);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.025em;
  text-wrap: balance;
}
:where(.dc-home) img { max-width: 100%; height: auto; display: block; }
:where(.dc-home) a { color: var(--dc-accent); }
.dc-home :focus-visible { outline: 3px solid var(--dc-accent); outline-offset: 3px; border-radius: 6px; }
.dc-home button, .dc-home a { touch-action: manipulation; }
.dc-sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.dc-skip {
  position: fixed; top: 12px; left: 12px; z-index: 3000; transform: translateY(-200%);
  padding: 10px 16px; border-radius: 8px; background: var(--dc-accent); color: var(--dc-accent-ink) !important; font-weight: 700;
}
.dc-skip:focus { transform: none; }
.dc-container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.dc-section { position: relative; padding: 110px 0; }
.dc-section--alt { background: var(--dc-bg-2); }
.dc-grad-text {
  background: var(--dc-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Section heading */
.dc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font: 600 13px/1 var(--dc-font); letter-spacing: .16em; text-transform: uppercase;
  color: var(--dc-accent);
}
.dc-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--dc-accent); box-shadow: 0 0 12px var(--dc-accent);
}
.dc-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.dc-head--left { margin-left: 0; text-align: left; }
.dc-head h2 { font-size: clamp(30px, 4.2vw, 52px); margin: 0 0 16px; }
.dc-head p { font-size: 18px; color: var(--dc-muted); margin: 0; }
.dc-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.dc-head-row .dc-head { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.dc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 14px 26px;
  font: 700 15px/1 var(--dc-font); letter-spacing: .01em;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--dc-ease), background-color .2s, color .2s, border-color .2s, box-shadow .25s;
}
.dc-btn:hover { transform: translateY(-2px); text-decoration: none; }
.dc-btn:active { transform: scale(.98); }
.dc-btn i { transition: transform .25s var(--dc-ease); }
.dc-btn:hover i.fa-arrow-right { transform: translateX(3px); }
.dc-btn--primary { background: var(--dc-cta); color: var(--dc-cta-ink); box-shadow: 0 10px 30px rgba(255, 216, 77, .25); }
.dc-btn--primary:hover { background: var(--dc-cta-hover); color: var(--dc-cta-ink); box-shadow: 0 14px 40px rgba(255, 216, 77, .4); }
.dc-btn--ghost { background: rgba(255, 255, 255, .04); color: #fff; border-color: var(--dc-line-2); }
.dc-btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); }
.dc-btn--sm { min-height: 44px; padding: 10px 20px; font-size: 14px; }
.dc-btn--block { width: 100%; }

/* ---------- Navbar ---------- */
.dc-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--dc-nav-h);
  display: flex; align-items: center;
  transition: background-color .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
/* Blur lives on a pseudo-element: backdrop-filter on .dc-nav itself would become the
   containing block for the fixed mobile menu panel and squash it to the header height. */
.dc-nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(7, 10, 22, .82);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  opacity: 0; transition: opacity .3s;
}
.dc-nav.is-scrolled::before, .dc-nav.is-open::before { opacity: 1; }
.dc-nav.is-scrolled, .dc-nav.is-open { border-bottom-color: var(--dc-line); }
.dc-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; max-width: 1360px; }
.dc-nav__brand img { height: 46px; width: auto; }
.dc-nav__menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.dc-nav__item { position: relative; }
.dc-nav__link {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border-radius: 999px;
  font: 500 15px/1 var(--dc-font); color: rgba(255, 255, 255, .78); text-decoration: none; white-space: nowrap;
  background: none; border: 0; cursor: pointer; transition: color .2s, background-color .2s;
}
.dc-nav__link:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.dc-nav__link[aria-current="page"], .dc-nav__link.is-active { color: #fff; background: rgba(69, 191, 255, .12); }
.dc-sub a[aria-current="page"] { color: #fff; background: rgba(69, 191, 255, .12); }
.dc-sub a[aria-current="page"]::before { background: var(--dc-accent); }
.dc-nav__link .fa-chevron-down { font-size: 10px; transition: transform .2s; }
.dc-sub {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 280px; padding: 8px; list-style: none; margin: 0;
  background: rgba(17, 24, 41, .98); border: 1px solid var(--dc-line-2); border-radius: 16px; box-shadow: var(--dc-shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s, transform .25s var(--dc-ease), visibility .2s;
}
.dc-sub::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.dc-sub a {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px;
  font-size: 14.5px; color: var(--dc-text); text-decoration: none;
}
.dc-sub a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--dc-line-2); transition: background-color .2s; }
.dc-sub a:hover { background: rgba(69, 191, 255, .08); color: #fff; }
.dc-sub a:hover::before { background: var(--dc-accent); }
.dc-nav__actions { display: flex; align-items: center; gap: 12px; }
.dc-nav__phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 14px; text-decoration: none; white-space: nowrap; }
.dc-nav__phone i { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }
.dc-nav__phone:hover { color: var(--dc-accent); }
.dc-nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--dc-line-2); background: transparent; color: #fff; font-size: 20px;
}
@media (max-width: 1379.98px) { .dc-nav__phone span { display: none; } }
@media (min-width: 1100px) {
  .dc-nav__panel { display: flex; align-items: center; }
  .dc-nav__panel > .dc-btn { display: none; }
  .dc-nav__item:hover > .dc-sub, .dc-nav__item:focus-within > .dc-sub, .dc-nav__item.is-open > .dc-sub { opacity: 1; visibility: visible; transform: none; }
  .dc-nav__item:hover > .dc-nav__link .fa-chevron-down { transform: rotate(180deg); }
}
@media (max-width: 1099.98px) {
  .dc-nav__toggle { display: grid; place-items: center; }
  .dc-nav__panel {
    position: fixed; top: var(--dc-nav-h); left: 0; right: 0; bottom: 0; padding: 16px 20px 32px; overflow-y: auto;
    background: var(--dc-bg); transform: translateX(100%); transition: transform .35s var(--dc-ease);
  }
  .dc-nav.is-open .dc-nav__panel { transform: none; }
  .dc-nav__menu { flex-direction: column; align-items: stretch; gap: 2px; }
  .dc-nav__link { width: 100%; justify-content: space-between; padding: 16px 14px; font-size: 17px; border-radius: 12px; }
  .dc-sub { position: static; min-width: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; margin: 4px 0 8px; }
  .dc-nav__item.is-open > .dc-sub { display: block; }
  .dc-nav__item.is-open > .dc-nav__link .fa-chevron-down { transform: rotate(180deg); }
  .dc-nav__actions > .dc-btn { display: none; }
  .dc-nav__panel > .dc-btn { margin-top: 24px; width: 100%; }
}

/* ---------- Hero ---------- */
.dc-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--dc-nav-h) + 56px) 0 90px;
}
/* photo + dark overlay + aurora + grid backdrop */
.dc-hero__bg {
  position: absolute; inset: 0; z-index: -3;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 30%;
}
.dc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(700px 480px at 78% 30%, rgba(69, 191, 255, .22), transparent 65%),
    radial-gradient(520px 420px at 95% 85%, rgba(109, 131, 255, .14), transparent 65%),
    radial-gradient(600px 400px at 5% 90%, rgba(74, 99, 240, .18), transparent 65%),
    linear-gradient(0deg, var(--dc-bg) 0%, rgba(7, 10, 22, 0) 22%),
    linear-gradient(90deg, rgba(7, 10, 22, .9) 0%, rgba(7, 10, 22, .72) 45%, rgba(7, 10, 22, .38) 100%);
}
.dc-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 80%);
}
.dc-hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.dc-hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; padding: 6px 16px 6px 6px;
  border-radius: 999px; border: 1px solid var(--dc-line-2); background: rgba(255, 255, 255, .04);
  font-size: 14px; color: #e6ebf5;
}
.dc-hero__badge b { padding: 5px 10px; border-radius: 999px; background: var(--dc-accent); color: var(--dc-accent-ink); font-size: 12px; letter-spacing: .04em; }
.dc-hero h1 { font-size: clamp(36px, 4.2vw, 60px); font-weight: 700; letter-spacing: -0.035em; margin: 0 0 24px; line-height: 1.02; }
.dc-hero__lead { font-size: clamp(16px, 1.5vw, 19px); max-width: 540px; margin: 0 0 34px; color: var(--dc-text); }
.dc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.dc-hero__points { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0; padding: 0; font-size: 15px; color: var(--dc-text); }
.dc-hero__points li { display: inline-flex; align-items: center; gap: 8px; }
.dc-hero__points i { color: var(--dc-accent); }
.dc-trust { display: flex; align-items: center; gap: 16px; }
.dc-trust__avatars { display: flex; }
.dc-trust__avatars img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--dc-bg); margin-left: -12px;
}
.dc-trust__avatars img:first-child { margin-left: 0; }
.dc-trust strong { display: block; font: 700 20px/1.1 var(--dc-font-head); color: #fff; }
.dc-trust span { font-size: 14px; color: var(--dc-muted); }

/* Hero visual – coded browser dashboard + phone app (scales with its container) */
.dc-collage { position: relative; aspect-ratio: 1 / .86; container-type: inline-size; }
.dc-browser {
  position: absolute; left: 0; top: 9%; width: 84%;
  border-radius: 3cqw; overflow: hidden;
  background: #0e1426; border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow), 0 0 90px rgba(69, 191, 255, .16);
}
.dc-browser__bar { display: flex; align-items: center; gap: 1.2cqw; padding: 2cqw 2.6cqw; background: #151d33; border-bottom: 1px solid var(--dc-line); }
.dc-browser__bar i { width: 1.8cqw; height: 1.8cqw; border-radius: 50%; background: #ff5f57; }
.dc-browser__bar i:nth-child(2) { background: #febc2e; }
.dc-browser__bar i:nth-child(3) { background: #28c840; }
.dc-browser__bar span { margin-left: 2cqw; padding: .8cqw 3cqw; border-radius: 99px; background: rgba(255, 255, 255, .06); font-size: 2cqw; color: var(--dc-muted); }
.dc-dash { display: grid; grid-template-columns: 9cqw 1fr; min-height: 50cqw; }
.dc-dash__side { display: flex; flex-direction: column; align-items: center; gap: 2.4cqw; padding: 3cqw 0; border-right: 1px solid var(--dc-line); }
.dc-dash__side b { width: 3.6cqw; height: 3.6cqw; border-radius: 1cqw; background: rgba(255, 255, 255, .08); }
.dc-dash__side b.on { background: var(--dc-accent); box-shadow: 0 0 2cqw rgba(69, 191, 255, .6); }
.dc-dash__main { padding: 3cqw; display: grid; gap: 2.4cqw; }
.dc-dash__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8cqw; }
.dc-dash__kpis div { padding: 2cqw; border-radius: 1.6cqw; background: rgba(255, 255, 255, .04); border: 1px solid var(--dc-line); }
.dc-dash__kpis small { display: block; font-size: 1.8cqw; color: var(--dc-muted); }
.dc-dash__kpis strong { display: block; font: 700 3.4cqw/1.2 var(--dc-font-head); color: #fff; }
.dc-dash__kpis em { font-style: normal; font-size: 1.7cqw; font-weight: 700; color: var(--dc-lime); }
.dc-dash__chart { height: 16cqw; border-radius: 1.6cqw; background: rgba(255, 255, 255, .03); border: 1px solid var(--dc-line); overflow: hidden; }
.dc-dash__chart svg { width: 100%; height: 100%; display: block; }
.dc-dash__bars { display: flex; align-items: flex-end; gap: 1.6cqw; height: 9cqw; }
.dc-dash__bars span { flex: 1; height: var(--h); border-radius: .8cqw .8cqw 0 0; background: linear-gradient(180deg, var(--dc-accent-2), rgba(109, 131, 255, .15)); }
.dc-dash__bars span:nth-child(odd) { background: linear-gradient(180deg, var(--dc-accent), rgba(69, 191, 255, .15)); }

.dc-phone-mock {
  position: absolute; right: 0; bottom: 0; width: 34%; aspect-ratio: 9 / 18.5;
  padding: 1.6cqw; border-radius: 6cqw; background: #1a2440; border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow), 0 0 60px rgba(109, 131, 255, .15);
}
.dc-phone-mock__notch { position: absolute; top: 2.6cqw; left: 50%; transform: translateX(-50%); width: 9cqw; height: 2.2cqw; border-radius: 99px; background: #000; z-index: 1; }
.dc-app {
  height: 100%; border-radius: 4.6cqw; overflow: hidden; padding: 6cqw 2.6cqw 2.6cqw;
  display: flex; flex-direction: column; gap: 1.8cqw;
  background: linear-gradient(180deg, #0c1224, #080d1c);
}
.dc-app__head { display: flex; align-items: center; justify-content: space-between; font: 600 2.4cqw/1 var(--dc-font-head); color: #fff; }
.dc-app__head b { width: 4.4cqw; height: 4.4cqw; border-radius: 50%; background: var(--dc-grad); }
.dc-app__card { padding: 2.4cqw; border-radius: 2.4cqw; background: var(--dc-grad); color: var(--dc-accent-ink); }
.dc-app__card small { display: block; font-size: 1.7cqw; font-weight: 600; }
.dc-app__card strong { display: block; font: 700 4.6cqw/1.1 var(--dc-font-head); }
.dc-app__progress { height: 1cqw; margin-top: 1.2cqw; border-radius: 99px; background: rgba(4, 17, 42, .2); }
.dc-app__progress i { display: block; width: 82%; height: 100%; border-radius: inherit; background: var(--dc-accent-ink); }
.dc-app__row { display: flex; align-items: center; gap: 1.6cqw; padding: 1.6cqw; border-radius: 2cqw; background: rgba(255, 255, 255, .05); }
.dc-app__row i { width: 4.6cqw; height: 4.6cqw; flex: none; border-radius: 1.4cqw; display: grid; place-items: center; font-size: 2cqw; background: rgba(69, 191, 255, .15); color: var(--dc-accent); }
.dc-app__row span { font-size: 1.9cqw; font-weight: 600; color: #fff; line-height: 1.25; }
.dc-app__row small { display: block; font-size: 1.6cqw; font-weight: 400; color: var(--dc-muted); }
.dc-app__nav { margin-top: auto; display: flex; justify-content: space-around; padding: 1.8cqw 0 .6cqw; border-top: 1px solid var(--dc-line); font-size: 2.2cqw; color: var(--dc-muted); }
.dc-app__nav i:first-child { color: var(--dc-accent); }
.dc-chip-float {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  border-radius: 16px; background: rgba(17, 24, 41, .78); border: 1px solid var(--dc-line-2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--dc-shadow);
}
.dc-chip-float i { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--dc-accent); color: var(--dc-accent-ink); font-size: 17px; }
.dc-chip-float strong { display: block; font: 700 18px/1.1 var(--dc-font-head); color: #fff; }
.dc-chip-float span { font-size: 12.5px; color: var(--dc-muted); }
.dc-chip-float--a { right: 0; top: 0; }
.dc-chip-float--b { left: 4%; bottom: 6%; }
.dc-float-a { animation: dc-bob 6s ease-in-out infinite; }
.dc-float-b { animation: dc-bob 7s ease-in-out -2s infinite; }
.dc-float-c { animation: dc-bob 8s ease-in-out -4s infinite; }
@keyframes dc-bob { 50% { translate: 0 -12px; } }

.dc-scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--dc-line-2); color: var(--dc-muted); text-decoration: none;
}
.dc-scroll-cue:hover { color: #fff; border-color: var(--dc-accent); }

/* ---------- Awards marquee ---------- */
.dc-awards { padding: 36px 0; border-top: 1px solid var(--dc-line); border-bottom: 1px solid var(--dc-line); background: var(--dc-bg-2); overflow: hidden; }
.dc-awards__label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--dc-muted); margin: 0 0 22px; }
.dc-awards__track { display: flex; width: max-content; gap: 28px; animation: dc-marquee 45s linear infinite; }
.dc-awards__track img {
  height: 86px; width: auto; flex: none; object-fit: contain; padding: 8px 18px;
  background: #fff; border-radius: 14px;
}
.dc-awards:hover .dc-awards__track { animation-play-state: paused; }
.dc-fade-x {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
@keyframes dc-marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.dc-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dc-stat {
  position: relative; overflow: hidden; padding: 28px 22px;
  border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
}
.dc-stat::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 191, 255, .18), transparent 70%);
}
.dc-stat i { font-size: 20px; color: var(--dc-accent); margin-bottom: 18px; display: block; }
.dc-stat__num { display: block; font: 700 clamp(30px, 3.2vw, 44px)/1 var(--dc-font-head); color: #fff; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.dc-stat__label { display: block; margin-top: 10px; font-size: 14px; color: var(--dc-muted); }

/* ---------- About ---------- */
.dc-about { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.dc-mosaic { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; aspect-ratio: 1 / .9; }
.dc-mosaic figure { margin: 0; overflow: hidden; border-radius: var(--dc-r); border: 1px solid var(--dc-line); }
.dc-mosaic figure:first-child { grid-row: span 2; }
.dc-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--dc-ease); }
.dc-mosaic figure:hover img { transform: scale(1.06); }
.dc-mosaic__badge {
  position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px; padding: 14px 20px; white-space: nowrap;
  border-radius: 18px; background: var(--dc-accent); color: var(--dc-accent-ink); box-shadow: var(--dc-shadow);
}
.dc-mosaic__badge strong { font: 700 34px/1 var(--dc-font-head); }
.dc-mosaic__badge span { font-size: 14px; font-weight: 600; line-height: 1.3; }
.dc-about p { font-size: 17px; }
.dc-ticks { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dc-ticks li {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border-radius: 14px; background: var(--dc-surface); border: 1px solid var(--dc-line);
  font-weight: 600; color: #fff;
}
.dc-ticks i { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }

/* ---------- Services bento ---------- */
.dc-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 18px; }
.dc-tile {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  border-radius: var(--dc-r-lg); border: 1px solid var(--dc-line);
  color: var(--dc-text); text-decoration: none; background: var(--dc-surface);
  transition: border-color .3s, box-shadow .3s, transform .4s var(--dc-ease);
}
.dc-tile--xl { grid-column: span 2; grid-row: span 2; }
.dc-tile--wide { grid-column: span 2; }
.dc-tile > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--dc-ease); }
.dc-tile::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7, 10, 22, .05) 0%, rgba(7, 10, 22, .55) 45%, rgba(7, 10, 22, .95) 100%);
  transition: background-color .3s;
}
.dc-tile:hover { border-color: rgba(69, 191, 255, .5); box-shadow: var(--dc-glow); transform: translateY(-4px); text-decoration: none; color: var(--dc-text); }
.dc-tile:hover > img { transform: scale(1.07); }
.dc-tile__icon {
  position: absolute; top: 22px; left: 22px;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 20px;
  background: rgba(7, 10, 22, .6); border: 1px solid var(--dc-line-2); color: var(--dc-accent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.dc-tile__arrow {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; color: var(--dc-accent-ink); transform: rotate(-45deg);
  transition: background-color .25s, transform .35s var(--dc-ease);
}
.dc-tile:hover .dc-tile__arrow { background: var(--dc-accent); transform: rotate(0); }
.dc-tile h3 { font-size: 22px; margin: 0 0 8px; }
.dc-tile--xl h3 { font-size: clamp(26px, 2.6vw, 36px); }
.dc-tile p { margin: 0; font-size: 15px; color: #d3dbec; max-width: 520px; }
.dc-tile__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.dc-tile__tags span { padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(255, 255, 255, .1); border: 1px solid var(--dc-line-2); color: #fff; }
button.dc-tile { font: inherit; text-align: left; cursor: pointer; }

/* ---------- Process ---------- */
.dc-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; list-style: none; margin: 0; padding: 0; }
.dc-steps::before {
  content: ""; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--dc-accent), var(--dc-accent-2), transparent); opacity: .5;
}
.dc-step { position: relative; text-align: center; padding: 0 8px; }
.dc-step__num {
  position: relative; z-index: 1; width: 68px; height: 68px; margin: 0 auto 24px; border-radius: 50%;
  display: grid; place-items: center; font: 700 22px/1 var(--dc-font-head); color: var(--dc-accent);
  background: var(--dc-bg); border: 2px solid rgba(69, 191, 255, .5); box-shadow: 0 0 30px rgba(69, 191, 255, .25);
  transition: background-color .3s, color .3s;
}
.dc-step:hover .dc-step__num { background: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-step h3 { font-size: 20px; margin: 0 0 10px; }
.dc-step p { margin: 0; color: var(--dc-muted); font-size: 15.5px; }

/* ---------- Why us ---------- */
.dc-why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.dc-why__visual { position: relative; }
.dc-why__visual::before {
  content: ""; position: absolute; inset: 10% 5% 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(69, 191, 255, .35), transparent 65%); filter: blur(20px);
}
.dc-why__visual img { position: relative; margin: 0 auto; max-height: 580px; width: auto; transform: scaleX(-1); }
.dc-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dc-why__item {
  padding: 26px; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
  transition: border-color .3s, transform .4s var(--dc-ease);
}
.dc-why__item:hover { border-color: rgba(69, 191, 255, .45); transform: translateY(-4px); }
.dc-why__item i { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; margin-bottom: 18px; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }
.dc-why__item h3 { font-size: 19px; margin: 0 0 8px; }
.dc-why__item p { margin: 0; font-size: 15px; color: var(--dc-muted); }

/* ---------- Tech stack ---------- */
.dc-tabs { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 6px; padding: 6px; margin: 0 auto 40px; border-radius: 999px; background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-tabs-wrap { text-align: center; }
.dc-tab {
  min-height: 44px; padding: 10px 20px; border-radius: 999px; border: 0; cursor: pointer;
  font: 600 14.5px/1 var(--dc-font); color: var(--dc-muted); background: transparent; transition: background-color .2s, color .2s;
}
.dc-tab:hover { color: #fff; }
.dc-tab[aria-selected="true"] { background: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-tech { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.dc-tech[hidden] { display: none; }
.dc-tech__item {
  width: 180px; padding: 28px 16px 22px; text-align: center; border-radius: var(--dc-r);
  background: var(--dc-surface); border: 1px solid var(--dc-line); transition: border-color .3s, transform .4s var(--dc-ease);
  animation: dc-in .5s var(--dc-ease) both;
}
.dc-tech__item:hover { border-color: rgba(69, 191, 255, .45); transform: translateY(-4px); }
.dc-tech__item img { width: 72px; height: 72px; object-fit: contain; margin: 0 auto 16px; padding: 10px; border-radius: 16px; background: #fff; }
.dc-tech__item span { font-weight: 700; color: #fff; }
@keyframes dc-in { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Reviews ---------- */
.dc-reviews {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 48px) / 3); gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 20px; scrollbar-width: none;
}
.dc-reviews::-webkit-scrollbar { display: none; }
.dc-review {
  scroll-snap-align: start; margin: 0; display: flex; flex-direction: column; gap: 20px; padding: 30px;
  border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
}
.dc-review > i { font-size: 30px; color: var(--dc-accent); opacity: .8; }
.dc-review blockquote { margin: 0; flex: 1; font-size: 16px; color: var(--dc-text); }
.dc-review figcaption { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--dc-line); }
.dc-review figcaption img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(69, 191, 255, .5); }
.dc-review figcaption strong { display: block; color: #fff; }
.dc-review figcaption span { font-size: 13.5px; color: var(--dc-muted); }
.dc-arrows { display: flex; gap: 10px; }
.dc-round {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: var(--dc-surface); border: 1px solid var(--dc-line-2); color: #fff; transition: background-color .2s, color .2s, border-color .2s;
}
.dc-round:hover { background: var(--dc-accent); color: var(--dc-accent-ink); border-color: var(--dc-accent); }

/* ---------- FAQ ---------- */
.dc-faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.dc-faq__aside { position: sticky; top: calc(var(--dc-nav-h) + 24px); }
.dc-faq__help {
  display: flex; align-items: center; gap: 16px; margin-top: 28px; padding: 20px;
  border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
}
.dc-faq__help img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.dc-faq__help strong { display: block; color: #fff; }
.dc-faq__help a { display: inline-block; padding: 12px 0; font-weight: 600; }
.dc-faq__list { display: grid; gap: 14px; }
.dc-faq details { border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line); transition: border-color .3s; }
.dc-faq details[open] { border-color: rgba(69, 191, 255, .4); }
.dc-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px;
  cursor: pointer; list-style: none; font: 600 17px/1.4 var(--dc-font-head); color: #fff;
}
.dc-faq summary::-webkit-details-marker { display: none; }
.dc-faq summary i {
  flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-size: 13px;
  background: rgba(255, 255, 255, .06); color: var(--dc-accent); transition: transform .3s var(--dc-ease), background-color .3s, color .3s;
}
.dc-faq details[open] summary i { transform: rotate(45deg); background: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-faq details p { margin: 0; padding: 0 24px 24px; color: var(--dc-muted); }

/* ---------- Contact ---------- */
.dc-contact { display: grid; grid-template-columns: 1fr 1.1fr; border-radius: var(--dc-r-lg); overflow: hidden; border: 1px solid var(--dc-line-2); box-shadow: var(--dc-shadow); }
.dc-contact__visual { position: relative; isolation: isolate; padding: 52px 44px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.dc-contact__visual > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.dc-contact__visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(165deg, rgba(7, 10, 22, .9) 0%, rgba(7, 10, 22, .75) 50%, rgba(24, 36, 110, .88) 100%); }
.dc-contact__visual h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 0 0 14px; }
.dc-contact__visual p { margin: 0; color: #d3dbec; }
.dc-contact__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.dc-contact__list a, .dc-contact__list div {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; text-decoration: none;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--dc-line-2); color: #fff; transition: background-color .2s, border-color .2s;
}
.dc-contact__list a:hover { background: rgba(69, 191, 255, .12); border-color: var(--dc-accent); color: #fff; }
.dc-contact__list i { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-contact__list small { display: block; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #aab5cf; }
.dc-contact__list b { font-weight: 600; overflow-wrap: anywhere; }
.dc-contact__form { padding: 52px 44px; background: var(--dc-paper); color: var(--dc-ink-muted); }
.dc-contact__form h3 { color: var(--dc-ink); font-size: 26px; margin: 0 0 6px; }
.dc-contact__form > p { margin: 0 0 28px; }
.dc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dc-field { display: flex; flex-direction: column; gap: 6px; }
.dc-field--full { grid-column: 1 / -1; }
.dc-field label { font-size: 14px; font-weight: 600; color: var(--dc-ink); }
.dc-field label em { color: #c62828; font-style: normal; }
.dc-input {
  width: 100%; min-height: 50px; padding: 12px 14px; font: 400 16px/1.4 var(--dc-font); color: var(--dc-ink);
  background: var(--dc-paper-2); border: 1px solid var(--dc-paper-line); border-radius: 12px;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}
.dc-input::placeholder { color: #7e89a3; }
.dc-input:focus { outline: none; background: #fff; border-color: var(--dc-brand); box-shadow: 0 0 0 4px rgba(74, 99, 240, .16); }
textarea.dc-input { min-height: 120px; resize: vertical; }
.dc-phone { display: flex; gap: 8px; }
.dc-phone select { flex: 0 0 120px; }
.dc-phone input { flex: 1; min-width: 0; }
.dc-error { font-size: 13.5px; font-weight: 500; color: #c62828; }
.dc-error:empty { display: none; }
.dc-input[aria-invalid="true"] { border-color: #c62828; box-shadow: 0 0 0 3px rgba(198, 40, 40, .12); }
.dc-form__status { margin: 10px 0 0; font-size: 14px; font-weight: 600; color: #c62828; }
.dc-form__status:empty { display: none; }
.dc-btn[disabled] { opacity: .7; cursor: wait; transform: none; }
.dc-contact__form .dc-btn--primary, .dc-modal .dc-btn--primary { background: var(--dc-brand); color: #fff; box-shadow: 0 10px 24px rgba(74, 99, 240, .3); }
.dc-contact__form .dc-btn--primary:hover, .dc-modal .dc-btn--primary:hover { background: #3a51d6; color: #fff; }
.dc-form__note { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; font-size: 13.5px; }
.dc-form__note i { color: var(--dc-brand); }

/* ---------- Final CTA ---------- */
.dc-final { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--dc-r-lg); padding: 72px 56px; text-align: center; border: 1px solid var(--dc-line-2); }
.dc-final > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.dc-final::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, rgba(7, 10, 22, .72), rgba(7, 10, 22, .94)); }
.dc-final h2 { font-size: clamp(30px, 4.4vw, 58px); margin: 0 auto 16px; max-width: 820px; }
.dc-final p { margin: 0 auto 32px; max-width: 560px; font-size: 18px; color: #d3dbec; }
.dc-final__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ==========================================================================
   Inner pages (About Us, ...)
   ========================================================================== */
.dc-page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: calc(var(--dc-nav-h) + 90px) 0 110px; text-align: center;
}
.dc-page-hero > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; opacity: 30%; }
.dc-page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(640px 360px at 50% 0%, rgba(69, 191, 255, .25), transparent 70%),
    radial-gradient(420px 320px at 90% 100%, rgba(109, 131, 255, .2), transparent 70%),
    linear-gradient(0deg, var(--dc-bg) 0%, rgba(7, 10, 22, 0) 35%),
    linear-gradient(180deg, rgba(7, 10, 22, .75), rgba(7, 10, 22, .9));
}
.dc-page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, #000 20%, transparent 75%);
}
.dc-page-hero h1 { font-size: clamp(36px, 5vw, 64px); max-width: 900px; margin: 0 auto 20px; letter-spacing: -0.03em; }
.dc-page-hero p { max-width: 640px; margin: 0 auto 34px; font-size: clamp(16px, 1.5vw, 19px); }
.dc-page-hero .dc-hero__cta { justify-content: center; margin-bottom: 0; }
.dc-crumbs { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px; padding: 8px 16px; list-style: none; border-radius: 999px; background: rgba(255, 255, 255, .05); border: 1px solid var(--dc-line-2); font-size: 14px; }
.dc-crumbs li { display: inline-flex; align-items: center; gap: 10px; color: var(--dc-muted); }
.dc-crumbs li + li::before { content: "/"; color: var(--dc-line-2); }
.dc-crumbs a { color: var(--dc-text); text-decoration: none; }
.dc-crumbs a:hover { color: #fff; }
.dc-crumbs [aria-current] { color: var(--dc-accent); font-weight: 600; }

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

/* Advantage cards */
.dc-adv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dc-adv__item {
  position: relative; overflow: hidden; padding: 30px 28px;
  border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
  transition: border-color .3s, transform .4s var(--dc-ease);
}
.dc-adv__item:hover { border-color: rgba(69, 191, 255, .45); transform: translateY(-4px); }
.dc-adv__item::after {
  content: attr(data-num); position: absolute; right: 18px; top: 10px;
  font: 700 64px/1 var(--dc-font-head); color: rgba(255, 255, 255, .04);
}
.dc-adv__item i { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 21px; margin-bottom: 20px; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }
.dc-adv__item h3 { font-size: 20px; margin: 0 0 10px; }
.dc-adv__item p { margin: 0; font-size: 15.5px; color: var(--dc-muted); }

/* Services – 4 equal image tiles */
.dc-bento--4 { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 360px; }

/* Where we serve */
.dc-reach { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 20px; }
.dc-reach__hq {
  padding: 30px; border-radius: var(--dc-r); color: var(--dc-accent-ink);
  background: var(--dc-grad);
}
.dc-reach__hq i { font-size: 26px; margin-bottom: 18px; display: block; }
.dc-reach__hq h3 { color: var(--dc-accent-ink); font-size: 24px; margin: 0 0 8px; }
.dc-reach__hq p { margin: 0; font-weight: 500; }
.dc-reach__item {
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 28px;
  border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
}
.dc-reach__item img { width: 64px; height: 44px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, .35); }
.dc-reach__item h3 { font-size: 20px; margin: 0 0 4px; }
.dc-reach__item span { font-size: 14.5px; color: var(--dc-muted); }

/* ==========================================================================
   Product pages (game software, rummy, teen patti, fantasy, color prediction)
   ========================================================================== */
.dc-hero--page { min-height: 0; padding: calc(var(--dc-nav-h) + 64px) 0 96px; }
.dc-hero--page h1 { font-size: clamp(34px, 4vw, 56px); }
.dc-hero--page .dc-crumbs { margin-bottom: 20px; }

.dc-split2 { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.dc-split2 p { font-size: 17px; }
.dc-panel {
  position: relative; overflow: hidden; padding: 36px; border-radius: var(--dc-r-lg);
  background: linear-gradient(160deg, var(--dc-surface-2), var(--dc-surface)); border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow);
}
.dc-panel::before { content: ""; position: absolute; right: -80px; top: -80px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(69, 191, 255, .25), transparent 70%); }
.dc-panel__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; font-size: 24px; margin-bottom: 20px; background: var(--dc-grad); color: var(--dc-accent-ink); }
.dc-panel h3 { font-size: 24px; margin: 0 0 10px; }
.dc-panel p { color: var(--dc-muted); margin: 0 0 20px; font-size: 16px; }
.dc-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dc-panel li { display: flex; gap: 12px; align-items: flex-start; color: #fff; font-weight: 500; }
.dc-panel li i, .dc-group li i, .dc-plan li i { flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: rgba(69, 191, 255, .15); color: var(--dc-accent); }

.dc-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dc-group, .dc-list { padding: 30px; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line); transition: border-color .3s; }
.dc-group:hover, .dc-list:hover { border-color: rgba(69, 191, 255, .4); }
.dc-group__top { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--dc-line); }
.dc-group__top i { width: 48px; height: 48px; flex: none; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }
.dc-group__top h3 { font-size: 19px; margin: 0; }
.dc-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.dc-group li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }

.dc-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dc-list dl { margin: 0; display: grid; gap: 16px; }
.dc-list dl div { padding-left: 16px; border-left: 2px solid rgba(69, 191, 255, .35); }
.dc-list dt { font: 600 16px/1.3 var(--dc-font-head); color: #fff; margin-bottom: 4px; }
.dc-list dd { margin: 0; font-size: 15px; color: var(--dc-muted); }

.dc-adv--2 { grid-template-columns: repeat(2, 1fr); }
.dc-adv--4 { grid-template-columns: repeat(4, 1fr); }

.dc-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dc-cat {
  display: flex; flex-direction: column; padding: 28px; border-radius: var(--dc-r); text-decoration: none; color: var(--dc-text);
  background: var(--dc-surface); border: 1px solid var(--dc-line); transition: border-color .3s, transform .4s var(--dc-ease), box-shadow .3s;
}
a.dc-cat:hover { border-color: rgba(69, 191, 255, .5); transform: translateY(-4px); box-shadow: var(--dc-glow); color: var(--dc-text); text-decoration: none; }
.dc-cat__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; margin-bottom: 18px; background: var(--dc-grad); color: var(--dc-accent-ink); }
.dc-cat h3 { font-size: 20px; margin: 0 0 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dc-cat__go { font-size: 15px; color: var(--dc-accent); transition: transform .3s var(--dc-ease); }
a.dc-cat:hover .dc-cat__go { transform: translateX(4px); }
.dc-cat p { margin: 0; font-size: 15px; color: var(--dc-muted); flex: 1; }

.dc-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.dc-plan { position: relative; display: flex; flex-direction: column; padding: 32px; border-radius: var(--dc-r-lg); background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-plan--featured { border-color: rgba(69, 191, 255, .6); box-shadow: var(--dc-glow); background: linear-gradient(180deg, rgba(69, 191, 255, .08), var(--dc-surface) 40%); }
.dc-plan__badge { position: absolute; top: -13px; left: 32px; padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; background: var(--dc-cta); color: var(--dc-cta-ink); }
.dc-plan h3 { font-size: 24px; margin: 0 0 6px; }
.dc-plan > p { margin: 0 0 22px; color: var(--dc-muted); font-size: 15px; }
.dc-plan ul { list-style: none; margin: 0 0 28px; padding: 22px 0 0; border-top: 1px solid var(--dc-line); display: grid; gap: 12px; flex: 1; }
.dc-plan li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }

.dc-related { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; padding: 28px 32px; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-related__label { font: 600 16px/1.3 var(--dc-font-head); color: #fff; }
.dc-related__links { display: flex; flex-wrap: wrap; gap: 10px; }
.dc-related__link {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 16px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; text-decoration: none; color: #fff; border: 1px solid var(--dc-line-2); background: rgba(255, 255, 255, .03);
  transition: background-color .2s, border-color .2s;
}
.dc-related__link i:first-child { color: var(--dc-accent); }
.dc-related__link i:last-child { font-size: 12px; opacity: .6; }
.dc-related__link:hover { background: rgba(69, 191, 255, .12); border-color: var(--dc-accent); color: #fff; text-decoration: none; }

/* Service pages: framed image, pills, timeline, alternating rows */
.dc-framed {
  margin: 0; padding: 10px; border-radius: var(--dc-r-lg);
  background: linear-gradient(160deg, var(--dc-surface-2), var(--dc-surface)); border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow), 0 0 70px rgba(69, 191, 255, .12);
}
.dc-framed img { width: 100%; border-radius: calc(var(--dc-r-lg) - 8px); }
.dc-group__text { margin: 0 0 18px; font-size: 15.5px; color: var(--dc-muted); }
.dc-groups--2 { grid-template-columns: repeat(2, 1fr); }

.dc-pills { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
.dc-pills li {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px;
  background: var(--dc-surface); border: 1px solid var(--dc-line); color: #fff; font-weight: 600; font-size: 15.5px;
  transition: border-color .3s, transform .3s var(--dc-ease);
}
.dc-pills li:hover { border-color: rgba(69, 191, 255, .45); transform: translateY(-2px); }
.dc-pills i { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }

.dc-timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: none; }
.dc-timeline li { position: relative; padding: 24px 20px; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line); transition: border-color .3s; }
.dc-timeline li:hover { border-color: rgba(69, 191, 255, .45); }
.dc-timeline__num { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 14px; border-radius: 50%; font: 700 16px/1 var(--dc-font-head); color: var(--dc-accent); border: 2px solid rgba(69, 191, 255, .5); box-shadow: 0 0 20px rgba(69, 191, 255, .2); }
.dc-timeline h3 { font-size: 17px; margin: 0 0 6px; }
.dc-timeline p { margin: 0; font-size: 14.5px; color: var(--dc-muted); }

.dc-rows { display: grid; gap: 88px; }
.dc-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.dc-row--flip > :first-child { order: 2; }
.dc-row__title { font-size: clamp(26px, 3vw, 38px); margin: 0 0 16px; }
.dc-row p { font-size: 16.5px; }
.dc-checklist { list-style: none; margin: 22px 0 24px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.dc-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: #fff; }
.dc-checklist li i { flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: rgba(69, 191, 255, .15); color: var(--dc-accent); }
.dc-row__note { display: flex; gap: 10px; padding: 12px 16px; border-radius: 12px; font-size: 14px !important; background: rgba(255, 216, 77, .08); border: 1px solid rgba(255, 216, 77, .25); color: #f3e7b5; }
.dc-row__note i { color: var(--dc-cta); margin-top: 3px; }

/* Jump links land below the fixed navbar */
.dc-home [id] { scroll-margin-top: calc(var(--dc-nav-h) + 20px); }
@media (prefers-reduced-motion: no-preference) { html:has(body.dc-home) { scroll-behavior: smooth; } }

/* Contact hub */
.dc-ccards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -64px; position: relative; z-index: 2; }
.dc-ccard {
  display: flex; flex-direction: column; gap: 14px; padding: 26px; border-radius: var(--dc-r-lg); text-align: left;
  background: var(--dc-surface); border: 1px solid var(--dc-line-2); color: var(--dc-text); text-decoration: none; cursor: pointer;
  font: inherit; box-shadow: var(--dc-shadow); transition: border-color .3s, transform .4s var(--dc-ease), box-shadow .3s;
}
.dc-ccard:hover { border-color: rgba(69, 191, 255, .55); transform: translateY(-6px); box-shadow: var(--dc-glow); color: var(--dc-text); text-decoration: none; }
.dc-ccard__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 22px; background: var(--dc-grad); color: var(--dc-accent-ink); }
.dc-ccard--wa .dc-ccard__icon { background: #25d366; color: #fff; font-size: 26px; }
.dc-ccard small { font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--dc-muted); }
.dc-ccard strong { font: 700 16.5px/1.3 var(--dc-font-head); color: #fff; overflow-wrap: anywhere; }
.dc-ccard span { font-size: 14.5px; color: var(--dc-muted); }
.dc-ccard__go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--dc-accent); }
.dc-ccard:hover .dc-ccard__go i { transform: translateX(4px); }
.dc-ccard__go i { transition: transform .3s var(--dc-ease); }

.dc-map { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; border-radius: var(--dc-r-lg); overflow: hidden; border: 1px solid var(--dc-line-2); box-shadow: var(--dc-shadow); }
.dc-map__info { padding: 44px 40px; background: linear-gradient(160deg, var(--dc-surface-2), var(--dc-surface)); display: flex; flex-direction: column; gap: 18px; }
.dc-map__info h2 { font-size: clamp(26px, 3vw, 36px); margin: 0; }
.dc-map__info p { margin: 0; color: var(--dc-muted); }
.dc-map__row { display: flex; gap: 14px; align-items: flex-start; }
.dc-map__row i { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(69, 191, 255, .12); color: var(--dc-accent); }
.dc-map__row b { display: block; color: #fff; }
.dc-map__row span { font-size: 15px; color: var(--dc-muted); }
.dc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ==========================================================================
   Blog (list + details)
   ========================================================================== */
.dc-search {
  display: flex; align-items: center; gap: 10px; max-width: 560px; margin: 0 auto; padding: 6px 6px 6px 20px;
  border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid var(--dc-line-2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.dc-search:focus-within { border-color: var(--dc-accent); box-shadow: 0 0 0 4px rgba(69, 191, 255, .15); }
.dc-search > i { color: var(--dc-muted); }
.dc-search input { flex: 1; min-width: 0; min-height: 44px; border: 0; outline: 0; background: transparent; color: #fff; font: 400 16px var(--dc-font); }
.dc-search input::placeholder { color: var(--dc-muted); }

.dc-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.dc-chips a {
  display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 18px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14.5px; color: var(--dc-text); background: var(--dc-surface); border: 1px solid var(--dc-line-2);
  transition: background-color .2s, border-color .2s, color .2s;
}
.dc-chips a span { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: rgba(255, 255, 255, .08); }
.dc-chips a:hover { border-color: var(--dc-accent); color: #fff; }
.dc-chips a[aria-current="page"] { background: var(--dc-accent); border-color: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-chips a[aria-current="page"] span { background: rgba(4, 17, 42, .15); }
.dc-results { text-align: center; color: var(--dc-muted); margin: -12px 0 32px; }

.dc-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; overflow: hidden; margin-bottom: 36px;
  border-radius: var(--dc-r-lg); background: var(--dc-surface); border: 1px solid var(--dc-line-2); box-shadow: var(--dc-shadow);
}
.dc-featured__media { position: relative; display: block; overflow: hidden; min-height: 320px; }
.dc-featured__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--dc-ease); }
.dc-featured:hover .dc-featured__media img { transform: scale(1.04); }
.dc-badge { position: absolute; left: 18px; top: 18px; padding: 6px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; background: var(--dc-cta); color: var(--dc-cta-ink); }
.dc-featured__body { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.dc-featured__body h2 { font-size: clamp(24px, 2.6vw, 34px); margin: 14px 0 14px; }
.dc-featured__body h2 a, .dc-post h3 a { color: #fff; text-decoration: none; }
.dc-featured__body h2 a:hover, .dc-post h3 a:hover { color: var(--dc-accent); }
.dc-featured__body p { color: var(--dc-muted); margin: 0 0 26px; }
.dc-featured__body .dc-btn { align-self: flex-start; }

.dc-post__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: 13.5px; color: var(--dc-muted); }
.dc-post__meta span + span::before { content: "•"; margin-right: 14px; opacity: .5; }
.dc-post__cat { color: var(--dc-accent); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 12.5px; }

.dc-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dc-post {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line);
  transition: border-color .3s, transform .4s var(--dc-ease), box-shadow .3s;
}
.dc-post:hover { border-color: rgba(69, 191, 255, .45); transform: translateY(-4px); box-shadow: var(--dc-glow); }
.dc-post__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.dc-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--dc-ease); }
.dc-post:hover .dc-post__media img { transform: scale(1.05); }
.dc-post__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dc-post h3 { font-size: 19px; margin: 12px 0 10px; }
.dc-post p { font-size: 15px; color: var(--dc-muted); margin: 0 0 18px; flex: 1; }
.dc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--dc-accent); text-decoration: none; }
.dc-link i { transition: transform .3s var(--dc-ease); }
.dc-link:hover i { transform: translateX(4px); }

.dc-pager { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 44px; }
.dc-pager a {
  min-width: 46px; height: 46px; padding: 0 12px; display: inline-grid; place-items: center; border-radius: 12px; text-decoration: none;
  font-weight: 700; color: var(--dc-text); background: var(--dc-surface); border: 1px solid var(--dc-line-2);
}
.dc-pager a:hover { border-color: var(--dc-accent); color: #fff; }
.dc-pager a[aria-current="page"] { background: var(--dc-accent); border-color: var(--dc-accent); color: var(--dc-accent-ink); }

.dc-empty { text-align: center; max-width: 560px; margin: 0 auto; padding: 56px 28px; border-radius: var(--dc-r-lg); background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-empty > i { font-size: 44px; color: var(--dc-accent); margin-bottom: 18px; }
.dc-empty h2 { font-size: 26px; margin: 0 0 10px; }
.dc-empty p { color: var(--dc-muted); margin: 0 auto 24px; }

/* Article */
.dc-article-hero { padding-bottom: 56px; }
.dc-article-hero h1 { max-width: 920px; font-size: clamp(30px, 4.2vw, 54px); }
.dc-article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; color: var(--dc-muted); font-size: 15px; }
.dc-article-meta i { color: var(--dc-accent); margin-right: 6px; }
.dc-article-cover { max-width: 1000px; margin: 0 auto 56px; overflow: hidden; border-radius: var(--dc-r-lg); border: 1px solid var(--dc-line-2); box-shadow: var(--dc-shadow); }
.dc-article-cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.dc-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 56px; align-items: start; }

.dc-prose { font-size: 17.5px; line-height: 1.8; color: var(--dc-text); max-width: 760px; }
.dc-prose > :first-child { margin-top: 0; }
.dc-prose h2 { font-size: clamp(24px, 2.4vw, 30px); margin: 48px 0 16px; }
.dc-prose h3 { font-size: 22px; margin: 36px 0 12px; }
.dc-prose p { margin: 0 0 20px; }
.dc-prose a { color: var(--dc-accent); text-decoration: underline; text-underline-offset: 3px; }
.dc-prose strong { color: #fff; }
.dc-prose ul, .dc-prose ol { margin: 0 0 24px; padding-left: 0; list-style: none; display: grid; gap: 12px; counter-reset: dc-ol; }
.dc-prose ul li, .dc-prose ol li { position: relative; padding-left: 36px; }
.dc-prose ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; background: rgba(69, 191, 255, .15); color: var(--dc-accent);
}
.dc-prose ol li { counter-increment: dc-ol; }
.dc-prose ol li::before {
  content: counter(dc-ol); position: absolute; left: 0; top: 2px; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font: 700 13px/1 var(--dc-font-head); background: var(--dc-accent); color: var(--dc-accent-ink);
}
.dc-prose blockquote { margin: 28px 0; padding: 20px 24px; border-left: 4px solid var(--dc-accent); border-radius: 0 14px 14px 0; background: var(--dc-surface); color: #fff; font-style: italic; }
.dc-prose img { max-width: 100%; height: auto; border-radius: 14px; margin: 24px 0; }
.dc-prose table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15.5px; }
.dc-prose th, .dc-prose td { padding: 12px 14px; border: 1px solid var(--dc-line-2); text-align: left; }
.dc-prose th { background: var(--dc-surface); color: #fff; }

.dc-share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--dc-line); }
.dc-share > span:first-child { font-weight: 700; color: #fff; margin-right: 6px; }
.dc-share a, .dc-share button {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; text-decoration: none;
  color: #fff; background: var(--dc-surface); border: 1px solid var(--dc-line-2); transition: background-color .2s, border-color .2s;
}
.dc-share a:hover, .dc-share button:hover { background: var(--dc-accent); border-color: var(--dc-accent); color: var(--dc-accent-ink); }
.dc-share__done { font-size: 14px; color: var(--dc-lime); }

.dc-article-side { position: sticky; top: calc(var(--dc-nav-h) + 24px); display: grid; gap: 20px; }
.dc-side-card { padding: 26px; border-radius: var(--dc-r); background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-side-card h2 { font-size: 18px; margin: 0 0 16px; }
.dc-side-card--cta { background: linear-gradient(160deg, rgba(69, 191, 255, .14), var(--dc-surface) 70%); border-color: rgba(69, 191, 255, .35); }
.dc-side-card--cta > i { font-size: 26px; color: var(--dc-accent); margin-bottom: 14px; }
.dc-side-card--cta p { color: var(--dc-muted); font-size: 15px; margin: -6px 0 18px; }
.dc-side-cats { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.dc-side-cats a { display: flex; justify-content: space-between; padding: 10px 12px; border-radius: 10px; color: var(--dc-text); text-decoration: none; }
.dc-side-cats a:hover { background: rgba(69, 191, 255, .1); color: #fff; }
.dc-side-cats span { color: var(--dc-muted); }
.dc-side-posts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.dc-side-posts a { display: flex; gap: 14px; align-items: center; text-decoration: none; color: #fff; font-weight: 600; font-size: 14.5px; line-height: 1.4; }
.dc-side-posts a:hover { color: var(--dc-accent); }
.dc-side-posts img { width: 72px; height: 54px; flex: none; object-fit: cover; border-radius: 10px; }
.dc-side-posts small { display: block; margin-top: 4px; font-weight: 400; color: var(--dc-muted); font-size: 12.5px; }

/* Thank-you page */
.dc-thanks { padding-bottom: 72px; }
.dc-thanks h1 { font-size: clamp(38px, 5.4vw, 68px); }
.dc-thanks h1 span { background: var(--dc-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dc-thanks p strong { color: #fff; }
.dc-thanks__badge {
  width: 112px; height: 112px; margin: 0 auto 28px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, rgba(69, 191, 255, .25), rgba(69, 191, 255, 0) 70%);
  animation: dc-pulse 2.4s ease-out 1s infinite;
}
.dc-thanks__badge svg { width: 88px; height: 88px; }
.dc-thanks__badge circle { fill: rgba(69, 191, 255, .12); stroke: var(--dc-accent); stroke-width: 2.5; stroke-dasharray: 151; stroke-dashoffset: 151; animation: dc-draw .7s ease-out forwards; }
.dc-thanks__badge path { fill: none; stroke: var(--dc-cta); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 36; stroke-dashoffset: 36; animation: dc-draw .45s ease-out .6s forwards; }
@keyframes dc-draw { to { stroke-dashoffset: 0; } }
@keyframes dc-pulse { 0% { box-shadow: 0 0 0 0 rgba(69, 191, 255, .35); } 100% { box-shadow: 0 0 0 28px rgba(69, 191, 255, 0); } }
@media (prefers-reduced-motion: reduce) { .dc-thanks__badge circle, .dc-thanks__badge path { stroke-dashoffset: 0; } }

.dc-next { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.dc-next::before {
  content: ""; position: absolute; top: 50px; left: 16%; right: 16%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--dc-accent), var(--dc-accent-2)); opacity: .4;
}
.dc-next li { position: relative; z-index: 1; padding: 30px 28px; text-align: center; border-radius: var(--dc-r-lg); background: var(--dc-surface); border: 1px solid var(--dc-line); }
.dc-next__icon { width: 64px; height: 64px; margin: -2px auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 24px; background: var(--dc-grad); color: var(--dc-accent-ink); box-shadow: 0 0 0 8px var(--dc-surface); }
.dc-next__step { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dc-accent); margin-bottom: 8px; }
.dc-next h3 { font-size: 20px; margin: 0 0 8px; }
.dc-next p { margin: 0; font-size: 15.5px; color: var(--dc-muted); }

/* Hero image collage (game pages) */
.dc-shots { position: relative; aspect-ratio: 1 / .82; }
.dc-shots__main {
  position: absolute; left: 0; top: 12%; width: 88%;
  padding: 10px; border-radius: 22px;
  background: linear-gradient(160deg, #1d2640, #0b1020); border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow), 0 0 90px rgba(69, 191, 255, .18);
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
}
.dc-shots__main img { width: 100%; border-radius: 14px; }
.dc-shots__side {
  position: absolute; right: 0; top: 0; width: 28%;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--dc-line-2);
  box-shadow: var(--dc-shadow); transform: rotate(5deg);
}
.dc-shots__side img { width: 100%; }
.dc-shots__phone { position: absolute; left: -2%; bottom: 0; width: 50%; filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .6)); transform: rotate(-4deg); }
.dc-shots__chip--a { left: 2%; top: 0; }
.dc-shots__chip--b { right: 4%; bottom: 4%; }

/* Screenshot gallery + lightbox */
.dc-gallery__label { font-size: 18px; margin: 0 0 18px; color: var(--dc-text); display: flex; align-items: center; gap: 12px; }
.dc-gallery__label::after { content: ""; flex: 1; height: 1px; background: var(--dc-line); }
.dc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.dc-gallery:last-child { margin-bottom: 0; }
.dc-shot { margin: 0; }
.dc-shot__btn {
  position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--dc-line-2); border-radius: var(--dc-r);
  overflow: hidden; background: var(--dc-surface); cursor: zoom-in; aspect-ratio: 16 / 9;
  transition: border-color .3s, box-shadow .3s;
}
.dc-shot__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--dc-ease); }
.dc-shot__btn:hover { border-color: rgba(69, 191, 255, .5); box-shadow: var(--dc-glow); }
.dc-shot__btn:hover img { transform: scale(1.05); }
.dc-shot__zoom {
  position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(7, 10, 22, .75); color: #fff; opacity: 0; transition: opacity .3s;
}
.dc-shot__btn:hover .dc-shot__zoom, .dc-shot__btn:focus-visible .dc-shot__zoom { opacity: 1; }
.dc-shot figcaption { margin-top: 12px; font-size: 15px; font-weight: 600; color: #fff; }
.dc-lightbox { max-width: min(1200px, 94vw); max-height: 92vh; padding: 0; border: 0; border-radius: var(--dc-r); background: #000; overflow: visible; }
.dc-lightbox::backdrop { background: rgba(3, 5, 12, .85); backdrop-filter: blur(4px); }
.dc-lightbox img { display: block; max-width: 100%; max-height: 92vh; border-radius: var(--dc-r); }
.dc-lightbox__close {
  position: absolute; top: -18px; right: -18px; width: 44px; height: 44px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--dc-ink); font-size: 18px; box-shadow: var(--dc-shadow);
}

/* ---------- Floating actions ---------- */
.dc-float { position: fixed; right: 20px; bottom: 20px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.dc-float button {
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center;
  font-size: 26px; color: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, .4); transition: transform .25s var(--dc-ease);
}
.dc-float button:hover { transform: scale(1.08); }
.dc-float__wa { background: #25d366; }
.dc-float__call { background: #1877f2; font-size: 22px !important; }

/* ---------- Lead modal ---------- */
.dc-modal {
  position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px;
  background: rgba(3, 5, 12, .72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.dc-modal__box {
  position: relative; display: grid; grid-template-columns: .9fr 1fr; width: 100%; max-width: 820px;
  max-height: calc(100dvh - 40px); overflow: hidden auto; border-radius: 24px; background: #fff; box-shadow: var(--dc-shadow);
  animation: dc-pop .35s var(--dc-ease);
}
@keyframes dc-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } }
.dc-modal__side { position: relative; isolation: isolate; padding: 34px 30px; display: flex; flex-direction: column; justify-content: flex-end; color: #d3dbec; min-height: 100%; }
.dc-modal__side > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.dc-modal__side::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 10, 22, .2), rgba(7, 10, 22, .92)); }
.dc-modal__side h2 { font-size: 26px; margin: 0 0 8px; }
.dc-modal__side p { margin: 0; font-size: 14.5px; }
.dc-modal__side ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; font-size: 14px; }
.dc-modal__side li i { color: var(--dc-accent); margin-right: 8px; }
.dc-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--dc-paper-line); background: #fff; color: var(--dc-ink); font-size: 18px;
}
.dc-modal__close:hover { background: var(--dc-paper-2); }
.dc-modal__body { padding: 36px 30px 30px; display: grid; gap: 14px; align-content: start; }
.dc-modal__body h3 { color: var(--dc-ink); font-size: 22px; margin: 0; padding-right: 40px; }

/* ---------- Reveal on scroll ---------- */
.dc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--dc-ease), transform .8s var(--dc-ease); }
.dc-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Footer polish (home only) ---------- */
.dc-home .footermainCont { background: var(--dc-bg); border-top: 1px solid var(--dc-line); }
.dc-home .footermainCont2 { background: transparent; padding: 80px 20px 8px; }
.dc-home .footermainCont3 { max-width: 1240px; margin: 0 auto; }
.dc-home .footermainPartA h6 { font-family: var(--dc-font-head); letter-spacing: .12em; padding-bottom: 12px; margin-bottom: 18px; color: #fff !important; border-bottom-color: var(--dc-line-2) !important; }
.dc-home .footermainPartA p { color: var(--dc-muted); font-size: 15px; margin-bottom: 10px; padding: 0; }
.dc-home .footermainPartA a { color: var(--dc-text) !important; transition: color .2s; }
.dc-home .footermainPartA a:hover { color: var(--dc-accent) !important; }
.dc-home .footermainPartA img { width: 180px; margin-bottom: 8px; }
.dc-home .footerBottom { max-width: 1240px; margin: 48px auto 0; border-top-color: var(--dc-line) !important; }
.dc-home .footerBottom p { font-size: 14px; margin: 0; color: var(--dc-muted) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .dc-stats { grid-template-columns: repeat(3, 1fr); }
  .dc-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
  .dc-tile--xl { grid-column: span 2; grid-row: span 2; }
  .dc-reviews { grid-auto-columns: calc((100% - 24px) / 2); }
  .dc-stats--4 { grid-template-columns: repeat(2, 1fr); }
  .dc-adv { grid-template-columns: repeat(2, 1fr); }
  .dc-bento--4 { grid-auto-rows: 300px; }
  .dc-reach { grid-template-columns: repeat(3, 1fr); }
  .dc-reach__hq { grid-column: 1 / -1; }
  .dc-groups, .dc-cats, .dc-plans, .dc-adv--4 { grid-template-columns: repeat(2, 1fr); }
  .dc-gallery { grid-template-columns: repeat(2, 1fr); }
  .dc-timeline { grid-template-columns: repeat(3, 1fr); }
  .dc-ccards { grid-template-columns: repeat(2, 1fr); }
  .dc-posts { grid-template-columns: repeat(2, 1fr); }
  .dc-article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; }
}
@media (max-width: 991.98px) {
  .dc-section { padding: 84px 0; }
  .dc-hero__grid, .dc-about, .dc-why, .dc-faq, .dc-contact, .dc-split2, .dc-lists, .dc-row, .dc-groups--2 { grid-template-columns: 1fr; gap: 40px; }
  .dc-row--flip > :first-child { order: 0; }
  .dc-map { grid-template-columns: 1fr; }
  .dc-map iframe { min-height: 340px; }
  .dc-featured, .dc-article-layout { grid-template-columns: 1fr; }
  .dc-article-side { position: static; }
  .dc-prose { max-width: none; }
  .dc-rows { gap: 64px; }
  .dc-contact { gap: 0; }
  .dc-hero { min-height: 0; }
  .dc-collage, .dc-shots { max-width: 620px; width: 100%; margin: 0 auto; }
  .dc-steps { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .dc-steps::before { display: none; }
  .dc-why__visual { display: none; }
  .dc-faq__aside { position: static; }
  .dc-modal__box { grid-template-columns: 1fr; max-width: 480px; }
  .dc-modal__side { display: none; }
  .dc-scroll-cue { display: none; }
}
@media (max-width: 767.98px) {
  .dc-page-hero { padding: calc(var(--dc-nav-h) + 56px) 0 72px; }
  .dc-adv, .dc-adv--2, .dc-adv--4, .dc-reach, .dc-groups, .dc-cats, .dc-plans { grid-template-columns: 1fr; }
  .dc-panel, .dc-group, .dc-list, .dc-plan { padding: 24px; }
  .dc-gallery { grid-template-columns: 1fr; gap: 16px; }
  .dc-timeline { grid-template-columns: 1fr 1fr; }
  .dc-checklist { grid-template-columns: 1fr; }
  .dc-ccards { grid-template-columns: 1fr; margin-top: -40px; }
  .dc-map__info { padding: 30px 22px; }
  .dc-next { grid-template-columns: 1fr; }
  .dc-next::before { display: none; }
  .dc-posts { grid-template-columns: 1fr; }
  .dc-featured__body { padding: 28px 22px; }
  .dc-featured__media { min-height: 220px; }
  .dc-prose { font-size: 16.5px; }
  .dc-search { padding-left: 16px; }
  .dc-article-cover { margin-bottom: 36px; }
  .dc-lightbox__close { top: 8px; right: 8px; }
  .dc-hero--page { padding: calc(var(--dc-nav-h) + 36px) 0 64px; }
  .dc-bento--4 { grid-auto-rows: 260px; }
  :root { --dc-nav-h: 68px; }
  .dc-nav__brand img { height: 38px; }
  .dc-section { padding: 68px 0; }
  .dc-head { margin-bottom: 40px; }
  .dc-head p { font-size: 16px; }
  .dc-head-row { flex-direction: column; align-items: flex-start; }
  .dc-hero { padding-top: calc(var(--dc-nav-h) + 36px); padding-bottom: 64px; }
  .dc-hero__cta .dc-btn { flex: 1 1 100%; }
  .dc-chip-float { padding: 8px 12px; gap: 8px; }
  .dc-chip-float i { width: 32px; height: 32px; font-size: 14px; }
  .dc-chip-float strong { font-size: 15px; }
  .dc-chip-float span { font-size: 11px; }
  .dc-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dc-stat { padding: 22px 18px; }
  .dc-stat:last-child { grid-column: 1 / -1; }
  .dc-mosaic__badge { padding: 10px 14px; }
  .dc-mosaic__badge strong { font-size: 26px; }
  .dc-ticks, .dc-why__grid, .dc-form { grid-template-columns: 1fr; }
  .dc-bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .dc-tile--xl, .dc-tile--wide { grid-column: auto; grid-row: auto; }
  .dc-tile--xl { min-height: 340px; }
  .dc-steps { grid-template-columns: 1fr; }
  .dc-tech__item { width: calc(50% - 9px); }
  .dc-reviews { grid-auto-columns: 88%; }
  .dc-contact__visual, .dc-contact__form { padding: 36px 22px; }
  .dc-final { padding: 52px 22px; }
  .dc-final__cta .dc-btn { flex: 1 1 100%; }
  .dc-float { right: 14px; bottom: 14px; }
  .dc-float button { width: 50px; height: 50px; font-size: 24px; }
  .dc-home .footermainCont2 { padding: 52px 20px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .dc-home *, .dc-home *::before, .dc-home *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .dc-reveal { opacity: 1; transform: none; }
}
