/* =========================================================
   DCC Smart Service Pages Pro — Scalable Workflow Automation Redesign
   Frontend CSS / PHP structure v1.4.2
   Brand colors: #42047e & #07f49e
   ========================================================= */

/* ── Base Reset ─────────────────────────────────────────── */
.dcc-custom-page-shell,
.dcc-custom-page-shell * {
  box-sizing: border-box;
}

.dcc-custom-page-shell {
  --dcc-primary: #42047e;
  --dcc-secondary: #16002f;
  --dcc-accent: #07f49e;
  --dcc-soft: #f5f0ff;
  --dcc-card-r: 28px;
  --dcc-btn-r: 999px;
  --dcc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --dcc-purple: #42047e;
  --dcc-purple-2: #5d08ae;
  --dcc-purple-3: #27014f;
  --dcc-deep: #100020;
  --dcc-mint: #07f49e;
  --dcc-mint-2: #00c982;
  --dcc-mint-soft: rgba(7, 244, 158, .13);
  --dcc-lavender: #f6f0ff;
  --dcc-lavender-2: #ede0ff;
  --dcc-ink: #13031f;
  --dcc-text: #2c2140;
  --dcc-muted: #756a86;
  --dcc-muted-2: #968aa8;
  --dcc-line: rgba(66, 4, 126, .13);
  --dcc-line-strong: rgba(66, 4, 126, .24);
  --dcc-white: #ffffff;
  --dcc-bg: #fbf8ff;
  --dcc-panel: rgba(255, 255, 255, .88);

  --dcc-shadow-xs: 0 1px 2px rgba(16, 0, 32, .06);
  --dcc-shadow-sm: 0 14px 34px rgba(16, 0, 32, .08);
  --dcc-shadow-md: 0 26px 70px rgba(16, 0, 32, .14);
  --dcc-shadow-lg: 0 42px 110px rgba(16, 0, 32, .20);

  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: clip;
  font-family: var(--dcc-font);
  color: var(--dcc-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(7, 244, 158, .12), transparent 28rem),
    radial-gradient(circle at 100% 8%, rgba(66, 4, 126, .15), transparent 30rem),
    linear-gradient(180deg, #fbf8ff 0%, #ffffff 42%, #f7f1ff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  isolation: isolate;
}

.dcc-custom-page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(66, 4, 126, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 4, 126, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.35), transparent 44%);
}

.dcc-custom-page-shell a {
  color: inherit;
  text-decoration: none;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

.dcc-custom-page-shell img,
.dcc-custom-page-shell svg {
  max-width: 100%;
}

.dcc-custom-page-shell svg {
  display: block;
}

.dcc-container {
  width: min(1200px, calc(100% - 42px));
  margin-inline: auto;
}

.dcc-section {
  position: relative;
  padding: 92px 0;
}

.dcc-soft-bg {
  background:
    radial-gradient(circle at 12% 12%, rgba(7, 244, 158, .10), transparent 24rem),
    radial-gradient(circle at 90% 82%, rgba(66, 4, 126, .10), transparent 24rem),
    linear-gradient(180deg, #fbf8ff, #f4edff);
  border-block: 1px solid rgba(66, 4, 126, .08);
}

.dcc-white-bg {
  background: #ffffff;
}

/* ── Header ─────────────────────────────────────────────── */
.dcc-header {
  position: relative !important;
  top: auto !important;
  z-index: 100;
  background: rgba(16, 0, 32, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 44px rgba(16, 0, 32, .22);
  backdrop-filter: blur(16px);
}

.dcc-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  padding: 12px 0;
}

.dcc-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -.035em;
}

.dcc-logo:hover {
  color: var(--dcc-mint);
}

.dcc-logo-mark,
.dcc-footer-logo-mark {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px;
  color: var(--dcc-deep);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.05em;
  background: linear-gradient(135deg, var(--dcc-mint), #ffffff);
  box-shadow: 0 16px 36px rgba(7, 244, 158, .24);
}

.dcc-logo-mark::after,
.dcc-footer-logo-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 22px;
  border: 1px solid rgba(7, 244, 158, .22);
  pointer-events: none;
}

.dcc-logo-text {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 17px;
}

.dcc-logo-image-wrap {
  width: 190px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  background: transparent;
  flex: 0 0 190px;
}

.dcc-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 190px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.dcc-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.dcc-nav a {
  padding: 12px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.dcc-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
}

.dcc-nav .dcc-nav-cta {
  margin-left: 4px;
  color: #120022 !important;
  background: linear-gradient(135deg, var(--dcc-mint), #9dffd8);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 32px rgba(7, 244, 158, .22);
  padding: 13px 18px;
}

.dcc-nav .dcc-nav-cta:hover {
  color: #120022 !important;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(7, 244, 158, .32);
}

.dcc-nav-check {
  display: none !important;
}

.dcc-nav-toggle {
  display: none !important;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  box-shadow: var(--dcc-shadow-xs);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.dcc-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  transition: transform .22s ease, opacity .22s ease;
}

/* ── Buttons ────────────────────────────────────────────── */
.dcc-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: var(--dcc-btn-r);
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.dcc-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.42) 48%, transparent 76%);
  transform: translateX(-115%);
  transition: transform .58s ease;
}

.dcc-btn:hover::before {
  transform: translateX(115%);
}

.dcc-btn:hover {
  transform: translateY(-2px);
}

.dcc-btn:active {
  transform: translateY(0);
}

.dcc-btn svg,
.dcc-submit-btn .dcc-btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.dcc-btn-primary {
  color: #120022 !important;
  background: linear-gradient(135deg, var(--dcc-mint), #a7ffdc);
  box-shadow: 0 18px 42px rgba(7, 244, 158, .24);
}

.dcc-btn-primary:hover {
  color: #120022 !important;
  box-shadow: 0 24px 54px rgba(7, 244, 158, .36);
}

.dcc-btn-secondary {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--dcc-purple), var(--dcc-purple-2));
  border-color: rgba(66, 4, 126, .16);
  box-shadow: 0 18px 42px rgba(66, 4, 126, .20);
}

.dcc-btn-secondary:hover {
  color: #ffffff !important;
  box-shadow: 0 24px 58px rgba(66, 4, 126, .28);
}

.dcc-btn-ghost {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 14px 34px rgba(16, 0, 32, .12);
}

.dcc-btn-ghost:hover {
  color: var(--dcc-mint) !important;
  background: rgba(255, 255, 255, .15);
  border-color: rgba(7, 244, 158, .34);
}

.dcc-btn-light {
  color: var(--dcc-purple-3) !important;
  background: #ffffff;
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 20px 52px rgba(16, 0, 32, .24);
}

.dcc-btn-light:hover {
  color: var(--dcc-purple) !important;
  box-shadow: 0 26px 62px rgba(16, 0, 32, .30);
}

/* ── Shared Headings ────────────────────────────────────── */
.dcc-eyebrow,
.dcc-auto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(7, 244, 158, .26);
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--dcc-shadow-xs);
  color: var(--dcc-purple);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.dcc-eyebrow::before,
.dcc-auto-kicker::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, #ffffff, transparent 34%),
    linear-gradient(135deg, var(--dcc-mint), var(--dcc-purple));
  box-shadow: 0 0 0 5px rgba(7, 244, 158, .12);
  flex: 0 0 24px;
}

.dcc-eyebrow-dark,
.dcc-auto-kicker-dark {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.dcc-section-head {
  max-width: 790px;
  margin: 0 auto 50px;
  text-align: center;
}

.dcc-section-head h2 {
  margin: 0 0 13px;
  color: var(--dcc-ink);
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 950;
  text-wrap: balance;
}

.dcc-section-head p {
  margin: 0 auto;
  color: var(--dcc-muted);
  font-size: 17px;
  line-height: 1.75;
}

/* ── New Homepage Hero ──────────────────────────────────── */
.dcc-home-automation {
  background: transparent;
}

.dcc-auto-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 12%, rgba(7, 244, 158, .24), transparent 25rem),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.10), transparent 28rem),
    linear-gradient(135deg, #100020 0%, #27014f 42%, #42047e 100%);
}

.dcc-auto-hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.dcc-auto-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(7,244,158,.26), transparent);
  opacity: .7;
  pointer-events: none;
}

.dcc-auto-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.dcc-auto-glow-one {
  width: 320px;
  height: 320px;
  left: -130px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(7,244,158,.24), transparent 70%);
}

.dcc-auto-glow-two {
  width: 480px;
  height: 480px;
  right: -180px;
  top: -170px;
  background: radial-gradient(circle, rgba(7,244,158,.18), transparent 70%);
}

.dcc-auto-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  align-items: center;
  gap: 58px;
}

.dcc-auto-copy {
  max-width: 700px;
}

.dcc-auto-copy h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: .94;
  letter-spacing: -.07em;
  font-weight: 950;
  text-wrap: balance;
}

.dcc-auto-copy p {
  margin: 0;
  max-width: 640px;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.78;
}

.dcc-auto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.dcc-auto-proof {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
}

.dcc-auto-proof span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 850;
}

.dcc-auto-proof svg {
  width: 18px;
  height: 18px;
  color: var(--dcc-mint);
  flex: 0 0 18px;
}

.dcc-auto-console {
  position: relative;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 42px 110px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}

.dcc-auto-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 38px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(7,244,158,.75), rgba(255,255,255,.08), rgba(7,244,158,.20));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.dcc-console-header {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 22px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255,255,255,.10);
}

.dcc-console-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
}

.dcc-console-header span:first-child {
  background: var(--dcc-mint);
}

.dcc-console-header strong {
  margin-left: 8px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dcc-console-flow {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dcc-flow-node {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.dcc-flow-node::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dcc-mint), transparent);
}

.dcc-flow-node small {
  display: block;
  margin-bottom: 6px;
  color: rgba(7,244,158,.86);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.dcc-flow-node strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.dcc-flow-line {
  width: 2px;
  height: 22px;
  margin-inline: 30px;
  background: linear-gradient(180deg, rgba(7,244,158,.72), rgba(255,255,255,.16));
}

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

.dcc-console-grid div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.dcc-console-grid span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
}

.dcc-console-grid strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.05em;
}

.dcc-console-ticket {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(7,244,158,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(7,244,158,.25);
}

.dcc-console-ticket > span {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  color: var(--dcc-deep);
  background: var(--dcc-mint);
}

.dcc-console-ticket svg {
  width: 18px;
  height: 18px;
}

.dcc-console-ticket p {
  margin: 0;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 1.55;
}

.dcc-console-ticket strong {
  display: block;
  color: #ffffff;
  margin-bottom: 2px;
}

/* ── New Homepage Strip ─────────────────────────────────── */
.dcc-auto-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.dcc-auto-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(66, 4, 126, .12);
  box-shadow: var(--dcc-shadow-md);
  backdrop-filter: blur(18px);
}

.dcc-auto-strip-grid div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 22px;
  color: var(--dcc-purple-3);
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
  border: 1px solid rgba(66, 4, 126, .08);
  font-size: 14px;
  font-weight: 900;
}

.dcc-auto-strip-grid svg {
  width: 20px;
  height: 20px;
  color: var(--dcc-mint-2);
  flex: 0 0 20px;
}

/* ── Homepage Blueprint ─────────────────────────────────── */
.dcc-blueprint-section {
  background: #ffffff;
}

.dcc-blueprint-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.dcc-blueprint-intro {
  position: sticky;
  top: 24px;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(7,244,158,.16), transparent 14rem),
    linear-gradient(180deg, #fbf8ff, #ffffff);
  border: 1px solid rgba(66, 4, 126, .12);
  box-shadow: var(--dcc-shadow-sm);
}

.dcc-blueprint-intro h2,
.dcc-roadmap-head h2,
.dcc-command-copy h2 {
  margin: 0 0 16px;
  color: var(--dcc-ink);
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -.058em;
  font-weight: 950;
  text-wrap: balance;
}

.dcc-blueprint-intro p,
.dcc-roadmap-head p,
.dcc-command-copy p {
  margin: 0 0 24px;
  color: var(--dcc-muted);
  font-size: 16px;
  line-height: 1.78;
}

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

.dcc-blueprint-cards article {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(66, 4, 126, .12);
  box-shadow: var(--dcc-shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dcc-blueprint-cards article:hover {
  transform: translateY(-7px);
  border-color: rgba(7,244,158,.42);
  box-shadow: var(--dcc-shadow-md);
}

.dcc-blueprint-cards article::before {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,244,158,.14), transparent 68%);
}

.dcc-blueprint-cards article > span {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(66,4,126,.08);
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.08em;
}

.dcc-blueprint-cards article > div,
.dcc-ops-card > div:first-child {
  width: 54px;
  height: 54px;
  border-radius: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dcc-deep);
  background: linear-gradient(135deg, var(--dcc-mint), #c8ffe9);
  box-shadow: 0 14px 30px rgba(7,244,158,.20);
}

.dcc-blueprint-cards svg,
.dcc-ops-card svg {
  width: 25px;
  height: 25px;
}

.dcc-blueprint-cards h3,
.dcc-ops-card h3,
.dcc-usecase-grid h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  color: var(--dcc-ink);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 930;
}

.dcc-blueprint-cards p,
.dcc-ops-card p,
.dcc-usecase-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dcc-muted);
  line-height: 1.68;
}

/* ── Homepage Ops Grid ──────────────────────────────────── */
.dcc-ops-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(7,244,158,.12), transparent 24rem),
    radial-gradient(circle at 92% 72%, rgba(66,4,126,.11), transparent 25rem),
    linear-gradient(180deg, #f8f3ff, #ffffff);
  border-block: 1px solid rgba(66, 4, 126, .08);
}

.dcc-ops-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, minmax(0, .95fr));
  gap: 18px;
}

.dcc-ops-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(66, 4, 126, .12);
  box-shadow: var(--dcc-shadow-sm);
  overflow: hidden;
}

.dcc-ops-card-large {
  grid-row: span 2;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(7,244,158,.25), transparent 18rem),
    linear-gradient(135deg, var(--dcc-deep), var(--dcc-purple) 72%, var(--dcc-purple-2));
  border-color: rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dcc-ops-card-large h3 {
  color: #ffffff;
  font-size: clamp(28px, 3.5vw, 44px);
}

.dcc-ops-card-large p {
  color: rgba(255,255,255,.72);
}

.dcc-ops-label {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--dcc-mint);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dcc-ops-mini-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.dcc-ops-mini-row span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

/* ── Command Section ────────────────────────────────────── */
.dcc-command-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(7,244,158,.22), transparent 25rem),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.10), transparent 22rem),
    linear-gradient(135deg, #100020, #27014f 58%, #42047e);
  overflow: hidden;
}

.dcc-command-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.dcc-command-copy h2 {
  color: #ffffff;
}

.dcc-command-copy p {
  color: rgba(255,255,255,.72);
  max-width: 620px;
}

.dcc-command-panel {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.dcc-command-meter {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.dcc-command-meter:first-child {
  padding-top: 0;
}

.dcc-command-meter span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dcc-command-meter strong {
  color: #ffffff;
  font-size: 17px;
}

.dcc-command-meter em {
  color: var(--dcc-mint);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.dcc-command-meter i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  overflow: hidden;
}

.dcc-command-meter i::before {
  content: "";
  display: block;
  width: var(--dcc-width, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dcc-mint), #ffffff);
  box-shadow: 0 0 18px rgba(7,244,158,.35);
}

.dcc-command-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.dcc-command-summary div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}

.dcc-command-summary strong {
  display: block;
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.06em;
}

.dcc-command-summary span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 850;
}

/* ── Use Cases / Roadmap ────────────────────────────────── */
.dcc-usecase-section {
  background: #ffffff;
}

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

.dcc-usecase-grid article {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, #ffffff, #fbf8ff);
  border: 1px solid rgba(66,4,126,.12);
  box-shadow: var(--dcc-shadow-sm);
  overflow: hidden;
}

.dcc-usecase-grid article::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7,244,158,.14), transparent 66%);
}

.dcc-usecase-grid strong {
  color: var(--dcc-mint-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .10em;
}

.dcc-roadmap-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(66,4,126,.10), transparent 24rem),
    linear-gradient(180deg, #f8f3ff, #ffffff);
}

.dcc-roadmap-wrap {
  display: grid;
  grid-template-columns: minmax(0, .80fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: start;
}

.dcc-roadmap-head {
  padding-top: 8px;
}

.dcc-roadmap {
  position: relative;
  display: grid;
  gap: 14px;
}

.dcc-roadmap::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--dcc-mint), rgba(66,4,126,.22));
}

.dcc-roadmap div {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(66,4,126,.12);
  box-shadow: var(--dcc-shadow-sm);
}

.dcc-roadmap span {
  grid-row: span 2;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dcc-deep);
  background: linear-gradient(135deg, var(--dcc-mint), #c8ffe9);
  font-weight: 950;
  box-shadow: 0 14px 32px rgba(7,244,158,.22);
}

.dcc-roadmap strong {
  color: var(--dcc-ink);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.dcc-roadmap p {
  margin: 6px 0 0;
  color: var(--dcc-muted);
  line-height: 1.62;
}

/* ── Simple Hero for inner pages ────────────────────────── */
.dcc-simple-hero {
  position: relative;
  padding: 82px 0 76px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(7,244,158,.23), transparent 23rem),
    radial-gradient(circle at 86% 26%, rgba(255,255,255,.11), transparent 22rem),
    linear-gradient(135deg, var(--dcc-deep), var(--dcc-purple) 66%, var(--dcc-purple-2));
}

.dcc-simple-hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.11);
  pointer-events: none;
}

.dcc-simple-hero .dcc-container {
  position: relative;
  z-index: 1;
}

.dcc-simple-hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  max-width: 920px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 950;
  text-wrap: balance;
}

.dcc-simple-hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.76;
}

.dcc-simple-hero .dcc-eyebrow {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.16);
  color: #ffffff;
}

/* ── Layout Grids ───────────────────────────────────────── */
.dcc-grid-2,
.dcc-grid-3,
.dcc-grid-4,
.dcc-split {
  display: grid;
  gap: 22px;
}

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

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

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

.dcc-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

/* ── Standard Cards ─────────────────────────────────────── */
.dcc-card,
.dcc-contact-card,
.dcc-service-card,
.dcc-form-card,
.dcc-legal-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(66, 4, 126, .12);
  border-radius: var(--dcc-card-r);
  box-shadow: var(--dcc-shadow-sm);
}

.dcc-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dcc-card::before,
.dcc-service-card::before,
.dcc-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(7,244,158,.12), transparent 36%, rgba(66,4,126,.08));
  opacity: 0;
  transition: opacity .22s ease;
}

.dcc-card:hover,
.dcc-service-card:hover,
.dcc-contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7,244,158,.36);
  box-shadow: var(--dcc-shadow-md);
}

.dcc-card:hover::before,
.dcc-service-card:hover::before,
.dcc-contact-card:hover::before {
  opacity: 1;
}

.dcc-card h2,
.dcc-card h3,
.dcc-contact-card h3,
.dcc-service-card h2,
.dcc-form-card h2,
.dcc-legal-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--dcc-ink);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 930;
}

.dcc-card h2 { font-size: 28px; }
.dcc-card h3 { font-size: 20px; }

.dcc-card p,
.dcc-contact-card p,
.dcc-service-card p,
.dcc-form-card p,
.dcc-legal-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dcc-muted);
}

.dcc-card-icon,
.dcc-mini-feature-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(66, 4, 126, .10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.66);
}

.dcc-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.dcc-card-icon svg {
  width: 26px;
  height: 26px;
}

.dcc-icon-blue,
.dcc-icon-green,
.dcc-icon-purple,
.dcc-icon-orange,
.dcc-icon-dark {
  background: var(--dcc-mint-soft);
  color: var(--dcc-purple);
}

/* ── Legacy Homepage / Generic Elements kept stable ─────── */
.dcc-hero {
  position: relative;
  padding: 86px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(7,244,158,.16), transparent 25rem),
    radial-gradient(circle at 86% 18%, rgba(66,4,126,.13), transparent 24rem),
    linear-gradient(135deg, #fbf8ff 0%, #ffffff 46%, #f0e6ff 100%);
}

.dcc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 56px;
}

.dcc-hero h1 {
  margin: 0 0 18px;
  color: var(--dcc-ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 950;
}

.dcc-hero p {
  margin: 0;
  max-width: 610px;
  color: var(--dcc-muted);
  font-size: 18px;
  line-height: 1.76;
}

.dcc-hero-actions,
.dcc-trust-row,
.dcc-center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.dcc-center-action {
  justify-content: center;
}

.dcc-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 17px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(66, 4, 126, .12);
  color: var(--dcc-muted);
  font-size: 13px;
  font-weight: 800;
}

.dcc-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--dcc-mint-2);
}

.dcc-hero-illustration {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcc-preview-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100%;
  padding: 28px;
}

.dcc-preview-card h3 {
  min-height: 52px;
}

.dcc-price {
  position: relative;
  z-index: 1;
  margin: 20px 0;
  color: var(--dcc-purple);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.055em;
}

.dcc-preview-card .dcc-price {
  margin-top: auto !important;
  margin-bottom: 18px !important;
}

.dcc-preview-card .dcc-btn {
  align-self: flex-start;
  min-width: 140px;
}

.dcc-step-card {
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
}

.dcc-step-number {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--dcc-deep);
  background: linear-gradient(135deg, var(--dcc-mint), #c8ffe9);
  box-shadow: 0 16px 34px rgba(7,244,158,.20);
}

.dcc-step-number span {
  display: none !important;
}

.dcc-step-number svg {
  width: 27px !important;
  height: 27px !important;
}

.dcc-dark-panel {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(7,244,158,.22), transparent 18rem),
    linear-gradient(135deg, var(--dcc-deep), var(--dcc-purple) 70%, var(--dcc-purple-2));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--dcc-shadow-lg);
}

.dcc-dark-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.dcc-dark-panel p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: rgba(255,255,255,.76);
}

.dcc-card-stack {
  display: grid;
  gap: 15px;
}

.dcc-mini-feature,
.dcc-mini-feature-dark {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.dcc-mini-feature {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(66, 4, 126, .12);
  background: rgba(255,255,255,.94);
  box-shadow: var(--dcc-shadow-sm);
}

.dcc-mini-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--dcc-mint), var(--dcc-purple));
}

.dcc-mini-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
}

.dcc-mini-feature-icon svg {
  width: 21px;
  height: 21px;
}

.dcc-mini-feature-body {
  display: grid;
  gap: 3px;
}

.dcc-mini-feature strong {
  color: var(--dcc-ink);
  font-size: 16px;
  line-height: 1.2;
}

.dcc-mini-feature span {
  color: var(--dcc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dcc-dark-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.dcc-mini-feature-dark {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}

.dcc-mini-feature-dark > div {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dcc-deep);
  background: var(--dcc-mint);
}

.dcc-mini-feature-dark svg {
  width: 20px !important;
  height: 20px !important;
}

.dcc-mini-feature-dark p {
  margin: 0 !important;
  display: grid;
  gap: 2px;
}

.dcc-mini-feature-dark strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
}

.dcc-mini-feature-dark span {
  color: rgba(255,255,255,.70);
  font-size: 13px;
  line-height: 1.5;
}

.dcc-copy-block h2 {
  margin: 0 0 16px;
  color: var(--dcc-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.dcc-copy-block p {
  color: var(--dcc-muted);
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
}

.dcc-copy-block .dcc-btn {
  margin-top: 12px;
}

.dcc-stats-bar {
  position: relative;
  padding: 62px 0;
  background: linear-gradient(135deg, var(--dcc-deep), var(--dcc-purple));
}

.dcc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dcc-stat-item {
  min-height: 128px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  display: grid;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.dcc-stat-number {
  display: block;
  color: #ffffff;
  font-size: clamp(27px, 3.2vw, 43px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.06em;
}

.dcc-stat-label {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  font-weight: 850;
}

/* ── Services ───────────────────────────────────────────── */
.dcc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.dcc-service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dcc-service-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.dcc-service-head .dcc-card-icon {
  margin-bottom: 0;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  flex: 0 0 52px;
}

.dcc-service-head .dcc-card-icon svg {
  width: 24px;
  height: 24px;
}

.dcc-plan-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--dcc-purple);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.dcc-service-card h2 {
  font-size: 22px;
}

.dcc-service-desc {
  margin-bottom: 17px !important;
  font-size: 15px;
  line-height: 1.65;
}

.dcc-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dcc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dcc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dcc-check {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  margin-top: 1px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 244, 158, .16);
  color: var(--dcc-purple);
  font-size: 12px;
  font-weight: 950;
}

.dcc-service-bottom {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(66, 4, 126, .22);
}

.dcc-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--dcc-purple);
  background: rgba(66, 4, 126, .08);
  font-size: 12px;
  font-weight: 850;
}

.dcc-service-badge svg {
  width: 15px;
  height: 15px;
  color: var(--dcc-mint-2);
}

.dcc-service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dcc-service-price-row .dcc-price {
  margin: 0;
}

.dcc-service-price-row .dcc-btn {
  min-width: 136px;
}

.dcc-note-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 24px;
  background: var(--dcc-deep);
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--dcc-shadow-md);
}

.dcc-note-box-top {
  margin-top: 0;
  margin-bottom: 30px;
}

.dcc-note-box svg {
  width: 22px;
  height: 22px;
  color: var(--dcc-mint);
  flex: 0 0 22px;
  margin-top: 1px;
}

.dcc-note-box strong {
  color: #ffffff;
}

/* ── FAQ ────────────────────────────────────────────────── */
.dcc-faq {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.dcc-faq-item {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(66, 4, 126, .13);
  background: rgba(255,255,255,.94);
  box-shadow: var(--dcc-shadow-xs);
}

.dcc-faq-item:hover {
  box-shadow: var(--dcc-shadow-sm);
}

.dcc-faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--dcc-ink);
  font-weight: 920;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.dcc-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background: rgba(7, 244, 158, .15);
  color: var(--dcc-purple);
  font-size: 19px;
  font-weight: 950;
}

.dcc-faq-item[open] summary::after {
  content: "–";
}

.dcc-faq-item p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--dcc-muted);
}

/* ── Final CTA ──────────────────────────────────────────── */
.dcc-final-cta {
  position: relative;
  overflow: hidden;
  padding: 60px 44px;
  border-radius: 40px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(7, 244, 158, .28), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(255,255,255,.11), transparent 20rem),
    linear-gradient(135deg, var(--dcc-deep), var(--dcc-purple) 68%, var(--dcc-purple-2));
  box-shadow: var(--dcc-shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}

.dcc-final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.10);
  pointer-events: none;
}

.dcc-final-cta h2,
.dcc-final-cta p,
.dcc-final-cta .dcc-btn {
  position: relative;
  z-index: 1;
}

.dcc-final-cta h2 {
  max-width: 820px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.dcc-final-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.75;
}

/* ── Contact ────────────────────────────────────────────── */
.dcc-contact-top {
  margin-top: 42px;
}

.dcc-contact-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.dcc-contact-card .dcc-card-icon {
  width: 54px !important;
  height: 54px !important;
  flex: 0 0 54px !important;
  margin-bottom: 15px;
}

.dcc-contact-card h3 {
  font-size: 18px;
}

.dcc-contact-card a {
  color: var(--dcc-muted);
  word-break: break-word;
}

.dcc-contact-card a:hover {
  color: var(--dcc-purple);
}

.dcc-contact-split {
  align-items: start;
}

.dcc-form-card {
  padding: 36px;
  background:
    radial-gradient(circle at 96% 4%, rgba(7, 244, 158, .12), transparent 13rem),
    #ffffff;
}

.dcc-form-card h2 {
  font-size: 30px;
}

.dcc-contact-form {
  position: relative;
  margin-top: 22px;
}

.dcc-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.dcc-field label {
  color: var(--dcc-ink);
  font-size: 14px;
  font-weight: 900;
}

.dcc-field input,
.dcc-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(66, 4, 126, .16);
  background: #fbf8ff;
  color: var(--dcc-ink);
  padding: 14px 16px;
  outline: none;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.dcc-field input:focus,
.dcc-field textarea:focus {
  border-color: rgba(7, 244, 158, .65);
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(7, 244, 158, .13);
}

.dcc-field textarea {
  min-height: 150px;
  resize: vertical;
}

.dcc-submit-btn {
  width: 100%;
}

.dcc-form-note {
  margin-top: 12px !important;
  color: var(--dcc-muted-2) !important;
  font-size: 13px !important;
}

.dcc-alert {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 17px;
  font-weight: 850;
}

.dcc-alert-success {
  color: #065f46;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .24);
}

.dcc-alert-error {
  color: #991b1b;
  background: rgba(239, 68, 68, .10);
  border: 1px solid rgba(239, 68, 68, .22);
}

.dcc-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.dcc-dark-panel svg,
.dcc-form-card svg,
.dcc-contact-card svg,
.dcc-contact-form svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  flex: 0 0 22px !important;
}

/* ── About visual ───────────────────────────────────────── */
.dcc-about-split {
  align-items: center;
}

.dcc-about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dcc-about-visual svg {
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 28px 60px rgba(16,0,32,.16));
}

/* ── Legal ──────────────────────────────────────────────── */
.dcc-legal-container {
  max-width: 960px;
}

.dcc-legal-card {
  padding: 44px;
  background: #ffffff;
}

.dcc-legal-card h2 {
  margin-top: 36px;
  font-size: 24px;
}

.dcc-legal-card h2:first-child {
  margin-top: 0;
}

.dcc-legal-card p {
  font-size: 16px;
  line-height: 1.78;
}

.dcc-terms-products {
  margin-top: 6px;
}

.dcc-terms-products p {
  margin: 0 0 18px !important;
  color: var(--dcc-ink) !important;
}

.dcc-terms-product-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 24px;
}

.dcc-terms-product-list li {
  color: var(--dcc-ink);
  line-height: 1.65;
}

.dcc-terms-product-link {
  color: var(--dcc-ink) !important;
  font-weight: 900;
}

.dcc-terms-product-link:hover {
  color: var(--dcc-purple) !important;
}

.dcc-terms-price {
  color: var(--dcc-muted);
  font-weight: 750;
  white-space: nowrap;
}

.dcc-terms-separator {
  color: var(--dcc-muted-2);
}

/* ── Footer ─────────────────────────────────────────────── */
.dcc-footer {
  position: relative;
  padding: 34px 0 48px;
  color: rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 12% 16%, rgba(7,244,158,.22), transparent 22rem),
    radial-gradient(circle at 90% 72%, rgba(255,255,255,.08), transparent 22rem),
    linear-gradient(135deg, #100020, #250047 58%, #42047e);
  overflow: hidden;
}

.dcc-footer::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.dcc-footer .dcc-container {
  position: relative;
  z-index: 1;
}

.dcc-footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.dcc-footer-topline span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dcc-footer-topline a {
  color: var(--dcc-mint);
  font-weight: 900;
}

.dcc-footer-grid {
  display: grid;
  grid-template-columns: 1.28fr .88fr .92fr;
  gap: 34px;
  align-items: start;
}

.dcc-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.dcc-footer-logo-mark {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 18px !important;
  color: var(--dcc-deep) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, var(--dcc-mint), #ffffff) !important;
  box-shadow: 0 14px 34px rgba(7,244,158,.25) !important;
}

.dcc-footer-logo-name {
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.dcc-footer h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.dcc-footer p,
.dcc-footer a {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.62;
}

.dcc-footer p {
  margin: 0 0 8px;
}

.dcc-footer a {
  display: block;
  margin: 0 0 7px;
}

.dcc-footer a:hover {
  color: var(--dcc-mint);
  transform: translateX(4px);
}

.dcc-footer-company {
  color: #ffffff;
}

.dcc-footer-brand p {
  max-width: 480px;
}

.dcc-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.dcc-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 850;
}

.dcc-footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,.50);
  font-size: 14px;
}

.dcc-footer-bottom a {
  display: inline;
  margin: 0 0 0 12px;
  color: rgba(255,255,255,.64);
}

.dcc-footer-bottom a:hover {
  color: var(--dcc-mint);
  transform: none;
}

/* ── Back to top ────────────────────────────────────────── */
.dcc-back-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1200;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, var(--dcc-purple), var(--dcc-mint));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  box-shadow: 0 18px 44px rgba(16, 0, 32, .28);
  transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
}

.dcc-back-top.dcc-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dcc-back-top:hover {
  transform: translateY(-3px);
}

.dcc-back-top svg {
  width: 24px !important;
  height: 24px !important;
}

/* ── WooCommerce + theme integration ────────────────────── */
body.dccsp-page .page-wrapper,
body.dccsp-page .page-inner,
body.dccsp-page #content,
body.dccsp-page .content-area,
body.dccsp-page .site-main,
body.dccsp-page .entry-content,
body.dccsp-page .entry-content > .row,
body.dccsp-page .entry-content > .row > .col,
body.dccsp-page .page-content,
body.dccsp-page .col,
body.dccsp-page .columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-page .dcc-custom-page-shell {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-page .dcc-footer {
  margin-bottom: 0 !important;
}

body.dccsp-woo-page #header,
body.dccsp-woo-page .header-wrapper,
body.dccsp-woo-page #footer,
body.dccsp-woo-page .footer-wrapper,
body.dccsp-woo-page .absolute-footer {
  display: none !important;
}

body.dccsp-woo-page .dcc-woo-header-shell,
body.dccsp-woo-page .dcc-woo-footer-shell {
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  left: 50%;
  right: 50%;
  position: relative;
}

body.dccsp-woo-page .dcc-woo-header-shell {
  z-index: 999;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-woo-page .dcc-woo-footer-shell {
  padding-top: 40px !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.dccsp-woo-page #wrapper,
body.dccsp-woo-page #main,
body.dccsp-woo-page .page-wrapper,
body.dccsp-woo-page .page-inner,
body.dccsp-woo-page .shop-container,
body.dccsp-woo-page .product-main,
body.dccsp-woo-page .cart-container,
body.dccsp-woo-page .checkout-page-title,
body.dccsp-woo-page .woocommerce {
  margin-top: 0 !important;
}

body.dccsp-woo-page .dcc-footer {
  margin-bottom: 0 !important;
}

body.dccsp-woo-page .dcc-woo-footer-shell .dcc-back-top {
  display: flex;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1120px) {
  .dcc-auto-hero-grid,
  .dcc-hero-grid,
  .dcc-command-grid,
  .dcc-blueprint-grid,
  .dcc-roadmap-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .dcc-auto-copy {
    max-width: 880px;
  }

  .dcc-blueprint-intro {
    position: relative;
    top: auto;
  }

  .dcc-grid-4,
  .dcc-services-grid,
  .dcc-usecase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .dcc-ops-card-large {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 340px;
  }

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

@media (max-width: 920px) {
  .dcc-header-inner {
    min-height: 72px;
  }

  .dcc-nav-toggle {
    display: flex !important;
  }

  .dcc-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 26px;
    background: rgba(16, 0, 32, .98);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--dcc-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  }

  .dcc-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 16px;
    border-radius: 18px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.06);
  }

  .dcc-nav a:hover {
    color: #120022;
    background: var(--dcc-mint);
  }

  .dcc-nav .dcc-nav-cta {
    width: 100%;
    margin-left: 0;
    justify-content: center;
    text-align: center;
  }

  .dcc-nav-check:checked ~ .dcc-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .dcc-nav-check:checked + .dcc-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .dcc-split,
  .dcc-footer-grid {
    grid-template-columns: 1fr;
  }

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

  .dcc-section {
    padding: 74px 0;
  }

  .dcc-auto-hero,
  .dcc-hero,
  .dcc-simple-hero {
    padding: 72px 0;
  }

  .dcc-auto-proof {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .dcc-footer-bottom,
  .dcc-footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .dcc-footer-bottom a {
    margin: 0 12px 0 0;
  }

  .dcc-contact-top {
    margin-top: 30px;
  }
}

@media (max-width: 680px) {
  .dcc-container {
    width: min(100% - 28px, 1200px);
  }

  .dcc-logo-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 15px;
    font-size: 12px;
  }

  .dcc-logo-text {
    max-width: 170px;
    font-size: 15px;
  }

  .dcc-logo-image-wrap,
  .dcc-header .dcc-logo-image-wrap {
    width: 150px !important;
    height: 44px !important;
    flex-basis: 150px !important;
  }

  .dcc-logo-image,
  .dcc-header .dcc-logo-image {
    max-width: 150px !important;
    max-height: 44px !important;
  }

  .dcc-auto-hero::before,
  .dcc-simple-hero::before,
  .dcc-footer::before,
  .dcc-final-cta::before {
    inset: 12px;
    border-radius: 24px;
  }

  .dcc-auto-copy h1,
  .dcc-hero h1,
  .dcc-simple-hero h1 {
    font-size: 38px;
    letter-spacing: -.045em;
  }

  .dcc-auto-copy p,
  .dcc-hero p,
  .dcc-simple-hero p {
    font-size: 16px;
    line-height: 1.68;
  }

  .dcc-auto-actions,
  .dcc-hero-actions {
    flex-direction: column;
  }

  .dcc-btn {
    width: 100%;
  }

  .dcc-auto-console {
    padding: 16px;
    border-radius: 28px;
  }

  .dcc-console-grid,
  .dcc-command-summary,
  .dcc-blueprint-cards,
  .dcc-grid-2,
  .dcc-grid-3,
  .dcc-grid-4,
  .dcc-services-grid,
  .dcc-stats-grid,
  .dcc-usecase-grid,
  .dcc-ops-grid,
  .dcc-auto-strip-grid {
    grid-template-columns: 1fr;
  }

  .dcc-section {
    padding: 60px 0;
  }

  .dcc-auto-hero,
  .dcc-hero,
  .dcc-simple-hero {
    padding: 60px 0;
  }

  .dcc-auto-strip {
    margin-top: -24px;
  }

  .dcc-auto-strip-grid {
    padding: 10px;
  }

  .dcc-roadmap::before {
    display: none;
  }

  .dcc-roadmap div {
    grid-template-columns: 1fr;
  }

  .dcc-roadmap span {
    margin-bottom: 14px;
  }

  .dcc-card,
  .dcc-contact-card,
  .dcc-service-card,
  .dcc-form-card,
  .dcc-legal-card,
  .dcc-blueprint-intro,
  .dcc-blueprint-cards article,
  .dcc-ops-card,
  .dcc-usecase-grid article {
    padding: 22px;
  }

  .dcc-dark-panel {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .dcc-final-cta {
    padding: 40px 22px;
    border-radius: 28px;
  }

  .dcc-section-head {
    margin-bottom: 34px;
  }

  .dcc-preview-card .dcc-btn,
  .dcc-center-action .dcc-btn,
  .dcc-service-card .dcc-btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .dcc-preview-card h3 {
    min-height: auto;
  }

  .dcc-service-price-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .dcc-service-card .dcc-price {
    margin: 4px 0 0 !important;
  }

  .dcc-legal-card h2 {
    font-size: 21px;
  }

  .dcc-terms-product-list {
    padding-left: 20px;
  }

  .dcc-terms-price {
    white-space: normal;
  }

  .dcc-footer {
    padding-top: 42px;
  }

  .dcc-back-top {
    right: 14px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }
}

@media (max-width: 430px) {
  .dcc-logo-image-wrap,
  .dcc-header .dcc-logo-image-wrap {
    width: 132px !important;
    height: 40px !important;
    flex-basis: 132px !important;
  }

  .dcc-logo-image,
  .dcc-header .dcc-logo-image {
    max-width: 132px !important;
    max-height: 40px !important;
  }

  .dcc-logo-text {
    max-width: 134px;
  }

  .dcc-auto-copy h1,
  .dcc-hero h1,
  .dcc-simple-hero h1 {
    font-size: 34px;
  }

  .dcc-card,
  .dcc-contact-card,
  .dcc-service-card,
  .dcc-form-card,
  .dcc-legal-card {
    border-radius: 22px;
  }
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .dcc-custom-page-shell *,
  .dcc-custom-page-shell *::before,
  .dcc-custom-page-shell *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .dcc-btn:hover,
  .dcc-card:hover,
  .dcc-service-card:hover,
  .dcc-contact-card:hover,
  .dcc-back-top:hover,
  .dcc-blueprint-cards article:hover {
    transform: none !important;
  }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .dcc-header,
  .dcc-back-top,
  .dcc-nav-toggle,
  .dcc-hero-illustration,
  .dcc-auto-console,
  .dcc-auto-strip {
    display: none !important;
  }

  .dcc-custom-page-shell {
    width: 100% !important;
    max-width: 100% !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .dcc-section,
  .dcc-auto-hero,
  .dcc-hero,
  .dcc-simple-hero {
    padding: 24px 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .dcc-card,
  .dcc-service-card,
  .dcc-form-card,
  .dcc-legal-card,
  .dcc-contact-card {
    box-shadow: none !important;
    break-inside: avoid;
  }
}

/* FIX — Back to top balanced arrow size */
.dcc-custom-page-shell .dcc-back-top {
  width: 56px !important;
  height: 56px !important;
  border-radius: 20px !important;
}

.dcc-custom-page-shell .dcc-back-top svg {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  overflow: visible !important;
}

.dcc-custom-page-shell .dcc-back-top svg path {
  stroke-width: 2.8 !important;
}

@media (max-width: 680px) {
  .dcc-custom-page-shell .dcc-back-top {
    width: 50px !important;
    height: 50px !important;
    border-radius: 18px !important;
  }

  .dcc-custom-page-shell .dcc-back-top svg {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
  }
}