/*
Theme Name: Desarrolla Colombia
Theme URI: https://desarrolla.co/
Author: Desarrolla Colombia
Author URI: https://desarrolla.co/
Description: Tema corporativo, rápido y responsive para Desarrolla Colombia: desarrollo web, aplicaciones web y software a medida.
Version: 1.0.21
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: desarrolla-colombia
Tags: custom-logo, custom-menu, featured-images, one-column, two-columns, blog, responsive-layout, accessibility-ready
*/

:root {
  --dc-orange: #f57d00;
  --dc-orange-dark: #d96500;
  --dc-dark: #373435;
  --dc-navy: #071a2d;
  --dc-blue: #00a6c8;
  --dc-bg: #f6f8fb;
  --dc-white: #ffffff;
  --dc-text: #1f2933;
  --dc-muted: #6b7280;
  --dc-border: #e7edf4;
  --dc-soft-orange: #fff1e2;
  --dc-shadow: 0 22px 70px rgba(7, 26, 45, 0.14);
  --dc-radius: 18px;
  --dc-radius-sm: 12px;
  --dc-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dc-text);
  background: var(--dc-white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--dc-orange); }
button, input, textarea, select { font: inherit; }
::selection { background: var(--dc-orange); color: var(--dc-white); }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--dc-navy);
  color: var(--dc-white);
  clip: auto;
  white-space: normal;
  border-radius: 10px;
}
.dc-container {
  width: min(100% - 32px, var(--dc-container));
  margin-inline: auto;
}
.dc-section { padding: 96px 0; }
.dc-section--soft { background: var(--dc-bg); }
.dc-section__head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.dc-section__head .dc-eyebrow {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.dc-section__head .dc-lead {
  margin-left: auto;
  margin-right: auto;
}
.dc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--dc-orange);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.dc-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--dc-orange);
  border-radius: 99px;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 18px;
  color: var(--dc-navy);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h1 { font-size: clamp(2.45rem, 6vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 18px; }
.dc-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--dc-muted);
  max-width: 780px;
}
.dc-text-orange { color: var(--dc-orange); }
.dc-text-white { color: var(--dc-white); }
.dc-muted { color: var(--dc-muted); }
.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--dc-orange);
  color: var(--dc-white);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(245, 125, 0, 0.27);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.dc-btn:hover, .dc-btn:focus-visible {
  transform: translateY(-2px);
  color: var(--dc-white);
  background: var(--dc-orange-dark);
  box-shadow: 0 22px 45px rgba(245, 125, 0, 0.34);
}
.dc-btn--ghost {
  background: transparent;
  color: var(--dc-navy);
  border-color: rgba(7, 26, 45, 0.18);
  box-shadow: none;
}
.dc-btn--ghost:hover, .dc-btn--ghost:focus-visible {
  background: var(--dc-navy);
  color: var(--dc-white);
  border-color: var(--dc-navy);
  box-shadow: 0 18px 40px rgba(7, 26, 45, 0.16);
}
.dc-btn--light {
  background: var(--dc-white);
  color: var(--dc-navy);
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.13);
}
.dc-btn--light:hover { background: var(--dc-soft-orange); color: var(--dc-navy); }
.dc-btn--outline-light {
  border-color: rgba(255, 255, 255, .28);
  color: var(--dc-white);
  background: transparent;
  box-shadow: none;
}
.dc-btn--outline-light:hover { background: var(--dc-white); color: var(--dc-navy); }
.dc-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Header */
.dc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 237, 244, .86);
}
.admin-bar .dc-site-header { top: 32px; }
.dc-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
}
.dc-brand img { width: 230px; max-height: 58px; object-fit: contain; }
.custom-logo-link img { width: 230px; max-height: 58px; object-fit: contain; }
.dc-brand-text { font-weight: 900; letter-spacing: -.04em; font-size: 1.45rem; color: var(--dc-dark); }
.dc-brand-text span { color: var(--dc-orange); }
.dc-menu-toggle {
  display: none;
  border: 0;
  background: var(--dc-bg);
  color: var(--dc-navy);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dc-menu-toggle span, .dc-menu-toggle span::before, .dc-menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
}
.dc-menu-toggle span::before, .dc-menu-toggle span::after { content: ""; position: absolute; left: 0; }
.dc-menu-toggle span::before { top: -7px; }
.dc-menu-toggle span::after { top: 7px; }
.dc-main-nav { display: flex; align-items: center; gap: 24px; }
.dc-main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.dc-main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--dc-dark);
  font-weight: 750;
  font-size: .95rem;
}
.dc-main-nav a:hover,
.dc-main-nav .current-menu-item > a { color: var(--dc-orange); background: var(--dc-soft-orange); }
.dc-header-cta { flex-shrink: 0; }

/* Hero */
.dc-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 64px;
  background:
    linear-gradient(90deg, rgba(7, 26, 45, .045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  background-size: 72px 72px, auto;
}
.dc-hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -260px auto;
  width: 520px;
  height: 520px;
  background: rgba(7, 26, 45, .045);
  border-radius: 38px;
  transform: rotate(-12deg);
  filter: blur(6px);
}
.dc-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .88fr);
  gap: 56px;
  align-items: center;
}
.dc-hero h1 { max-width: 910px; }
.dc-hero-copy .dc-lead { margin-bottom: 30px; }
.dc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--dc-white);
  color: var(--dc-dark);
  border: 1px solid var(--dc-border);
  font-weight: 700;
  font-size: .92rem;
}
.dc-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--dc-orange);
  border-radius: 50%;
}
.dc-hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 720px;
}
.dc-hero-proof div {
  padding: 15px 16px;
  border: 1px solid rgba(7, 26, 45, .11);
  border-radius: var(--dc-radius-sm);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 14px 34px rgba(7, 26, 45, .055);
}
.dc-hero-proof strong {
  display: block;
  color: var(--dc-navy);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.dc-hero-proof span {
  display: block;
  margin-top: 5px;
  color: var(--dc-muted);
  font-size: .9rem;
  line-height: 1.25;
}
.dc-hero-panel {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(245, 125, 0, .18), transparent 34%),
    linear-gradient(145deg, #061728 0%, #0b2239 48%, #081625 100%);
  box-shadow: 0 34px 85px rgba(7, 26, 45, .24);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  animation: dc-panel-float 6.8s ease-in-out infinite;
}
.dc-hero-panel::before {
  content: "";
  position: absolute;
  inset: -110px -125px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  filter: blur(0);
  opacity: 0;
  animation: dc-orb-drift 7.5s ease-in-out infinite;
}
.dc-hero-panel::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -38%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0), transparent);
  transform: rotate(18deg) translateX(-120%);
  animation: dc-panel-shine 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.dc-dashboard {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 476px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .115), rgba(255, 255, 255, .055)),
    rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 18px;
  color: var(--dc-white);
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 -30px 65px rgba(0,0,0,.12) inset;
  animation: dc-dashboard-in .8s cubic-bezier(.16, 1, .3, 1) both;
}
.dc-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 78%);
  pointer-events: none;
}
.dc-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0), transparent);
  transform: translateY(-115%);
  animation: dc-scan-line 6.2s ease-in-out infinite;
  pointer-events: none;
}
.dc-dashboard > * { position: relative; z-index: 1; }
.dc-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.dc-dots { display: flex; gap: 7px; }
.dc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  box-shadow: 0 0 0 0 rgba(255,255,255,.18);
  animation: dc-dot-pulse 2.8s ease-in-out infinite;
}
.dc-dots span:first-child {
  background: var(--dc-orange);
  box-shadow: none;
}
.dc-dots span:nth-child(2) { animation-delay: .18s; }
.dc-dots span:nth-child(3) { animation-delay: .36s; }
.dc-dashboard-title {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255,255,255,.12);
}
.dc-product-preview {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 14px;
  min-height: 154px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06)),
    rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 18px 42px rgba(0,0,0,.15);
  animation: dc-card-lift-in .72s cubic-bezier(.16, 1, .3, 1) .04s both;
}
.dc-product-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.24);
}
.dc-product-sidebar span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.dc-product-sidebar span:first-child {
  width: 100%;
  height: 24px;
  background: var(--dc-orange);
}
.dc-product-sidebar span:nth-child(2) { width: 78%; }
.dc-product-sidebar span:nth-child(3) { width: 92%; }
.dc-product-sidebar span:nth-child(4) { width: 64%; }
.dc-product-main {
  padding: 8px 4px;
}
.dc-product-kicker {
  color: rgba(255,255,255,.58);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dc-product-title {
  margin-top: 8px;
  color: var(--dc-white);
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.dc-product-line {
  width: 74%;
  height: 9px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
}
.dc-product-line--wide { width: 92%; margin-top: 18px; }
.dc-product-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr .7fr;
  gap: 8px;
  margin-top: 18px;
}
.dc-product-row span {
  display: block;
  min-height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.08);
}
.dc-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dc-metric {
  position: relative;
  min-height: 126px;
  border-radius: 20px;
  padding: 17px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07)),
    rgba(255, 255, 255, .09);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
  animation: dc-card-lift-in .72s cubic-bezier(.16, 1, .3, 1) both;
}
.dc-metric:nth-child(1) { animation-delay: .08s; }
.dc-metric:nth-child(2) { animation-delay: .18s; }
.dc-metric:nth-child(3) { animation-delay: .28s; }
.dc-metric:nth-child(4) { animation-delay: .38s; }
.dc-metric::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -65%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  transform: rotate(16deg);
  transition: transform .62s ease;
}
.dc-metric:hover,
.dc-metric:focus-within {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(245, 125, 0, .32);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .18);
}
.dc-metric:hover::before,
.dc-metric:focus-within::before {
  transform: rotate(16deg) translateX(260%);
}
.dc-metric strong {
  position: relative;
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.05em;
}
.dc-metric span {
  position: relative;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.dc-metric--orange {
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(135deg, var(--dc-orange), #ff9b38 72%);
  color: var(--dc-white);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}
.dc-metric--orange strong {
  text-shadow: 0 5px 20px rgba(0,0,0,.16);
}
.dc-metric--orange span { color: rgba(255,255,255,.88); }
.dc-code-card {
  position: relative;
  margin-top: 14px;
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.04), transparent 55%),
    rgba(0, 0, 0, .32);
  border: 1px solid rgba(255,255,255,.12);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.14);
  animation: dc-card-lift-in .72s cubic-bezier(.16, 1, .3, 1) .48s both;
}
.dc-code-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.045), transparent 22%, transparent 78%, rgba(0,166,200,.055));
  pointer-events: none;
}
.dc-code-card::after {
  content: "";
  display: inline-block;
  width: .72em;
  height: 1em;
  margin-left: 4px;
  vertical-align: -.16em;
  background: var(--dc-orange);
  border-radius: 2px;
  box-shadow: none;
  animation: dc-cursor-blink 1.05s steps(2, start) infinite;
}
.dc-code-card span { color: var(--dc-orange); font-weight: 800; }
.dc-chart {
  position: relative;
  margin-top: 14px;
  border-radius: 20px;
  min-height: 110px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.06)),
    rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: end;
  gap: 9px;
  overflow: hidden;
  animation: dc-card-lift-in .72s cubic-bezier(.16, 1, .3, 1) .58s both;
}
.dc-chart::before {
  content: "";
  position: absolute;
  inset: 16px;
  background: linear-gradient(180deg, transparent 32%, rgba(255,255,255,.06) 33%, transparent 34%, transparent 66%, rgba(255,255,255,.05) 67%, transparent 68%);
  pointer-events: none;
}
.dc-chart i {
  position: relative;
  display: block;
  flex: 1;
  min-height: 24px;
  border-radius: 9px 9px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.2));
  transform-origin: bottom;
  animation: dc-bar-grow .84s cubic-bezier(.16, 1, .3, 1) both, dc-bar-wave 3.5s ease-in-out infinite;
}
.dc-chart i:nth-child(1) { animation-delay: .68s, 1.95s; }
.dc-chart i:nth-child(2) { min-height: 45px; animation-delay: .76s, 2.05s; }
.dc-chart i:nth-child(3) { min-height: 67px; background: linear-gradient(180deg, rgba(245,125,0,.96), rgba(217,101,0,.88)); animation-delay: .84s, 2.15s; }
.dc-chart i:nth-child(4) { min-height: 88px; animation-delay: .92s, 2.25s; }
.dc-chart i:nth-child(5) { min-height: 62px; animation-delay: 1s, 2.35s; }
.dc-chart i:nth-child(6) { min-height: 96px; background: linear-gradient(180deg, #ff9b38, var(--dc-orange)); animation-delay: 1.08s, 2.45s; }

/* Trust strip */
.dc-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #0b111c;
  color: rgba(255,255,255,.78);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.dc-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}
.dc-trust-strip__inner span {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-left: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
}
.dc-trust-strip__inner span:last-child {
  border-right: 1px solid rgba(255,255,255,.08);
}

@keyframes dc-panel-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}
@keyframes dc-orb-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .9; }
  50% { transform: translate3d(-40px, 34px, 0) scale(1.08); opacity: .72; }
}
@keyframes dc-panel-shine {
  0%, 58% { transform: rotate(18deg) translateX(-135%); opacity: 0; }
  66% { opacity: .9; }
  78%, 100% { transform: rotate(18deg) translateX(330%); opacity: 0; }
}
@keyframes dc-dashboard-in {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes dc-scan-line {
  0%, 52% { transform: translateY(-115%); opacity: 0; }
  60% { opacity: .75; }
  76%, 100% { transform: translateY(115%); opacity: 0; }
}
@keyframes dc-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.76); opacity: .62; }
}
@keyframes dc-card-lift-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dc-cursor-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}
@keyframes dc-bar-grow {
  from { transform: scaleY(.12); opacity: .18; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes dc-bar-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.86); }
}
@media (prefers-reduced-motion: reduce) {
  .dc-hero-panel,
  .dc-hero-panel::before,
  .dc-hero-panel::after,
  .dc-dashboard,
  .dc-dashboard::after,
  .dc-product-preview,
  .dc-dots span,
  .dc-metric,
  .dc-code-card,
  .dc-code-card::after,
  .dc-chart,
  .dc-chart i {
    animation: none !important;
    transition: none !important;
  }
  .dc-chart i { transform: none !important; }
}

/* Cards */
.dc-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.dc-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.dc-card {
  background: var(--dc-white);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  padding: 28px;
  box-shadow: 0 12px 38px rgba(7, 26, 45, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 125, 0, .3);
  box-shadow: var(--dc-shadow);
}
.dc-card p:last-child { margin-bottom: 0; }
.dc-card h3 {
  text-align: left;
}
.dc-icon {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--dc-soft-orange);
  color: var(--dc-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.dc-card ul,
.dc-rich-content ul {
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}
.dc-card li,
.dc-rich-content li {
  position: relative;
  padding-left: 25px;
  margin: 9px 0;
  color: var(--dc-muted);
}
.dc-card li::before,
.dc-rich-content li::before {
  content: "";
  position: absolute;
  top: .73em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--dc-orange);
  border-radius: 50%;
}

/* Studio showroom */
.dc-section--studio {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 26, 45, .045) 1px, transparent 1px),
    linear-gradient(180deg, var(--dc-white) 0%, #f3f6fa 100%);
  background-size: 64px 64px, auto;
}
.dc-showroom {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.dc-showroom-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.dc-showroom-points div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(7, 26, 45, .1);
}
.dc-showroom-points strong {
  color: var(--dc-navy);
  font-weight: 950;
}
.dc-showroom-points span {
  color: var(--dc-muted);
}
.dc-showroom-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}
.dc-browser-mock,
.dc-phone-mock {
  box-shadow: 0 34px 90px rgba(7, 26, 45, .18);
}
.dc-browser-mock {
  position: absolute;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: #081625;
  overflow: hidden;
}
.dc-browser-mock--main {
  inset: 36px 0 auto 0;
  min-height: 410px;
  transform: rotateY(-8deg) rotateX(4deg);
}
.dc-browser-mock--floating {
  right: 18px;
  bottom: 28px;
  width: 250px;
  min-height: 190px;
  background: var(--dc-white);
  border-color: rgba(7, 26, 45, .08);
  transform: rotateY(-14deg) rotateX(7deg) translateZ(24px);
}
.dc-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 800;
}
.dc-browser-mock--floating .dc-browser-bar {
  background: var(--dc-bg);
}
.dc-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}
.dc-browser-mock--floating .dc-browser-bar span {
  background: rgba(7, 26, 45, .2);
}
.dc-browser-bar span:first-child {
  background: var(--dc-orange);
}
.dc-browser-bar i {
  display: inline-flex;
  margin-left: auto;
  font-style: normal;
  color: rgba(255,255,255,.56);
}
.dc-browser-hero {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 22px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(245,125,0,.18), transparent 32%),
    linear-gradient(180deg, #0d2b45, #081625);
}
.dc-browser-hero b {
  display: block;
  color: var(--dc-orange);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dc-browser-hero strong {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  color: var(--dc-white);
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.dc-browser-hero em {
  display: block;
  min-height: 138px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.14);
  font-style: normal;
}
.dc-browser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 34px 34px;
}
.dc-browser-grid span {
  min-height: 104px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.1);
}
.dc-mini-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 96px;
  padding: 24px 22px 12px;
}
.dc-mini-chart i {
  flex: 1;
  min-height: 28px;
  border-radius: 9px 9px 0 0;
  background: var(--dc-navy);
}
.dc-mini-chart i:nth-child(2) { min-height: 54px; background: var(--dc-orange); }
.dc-mini-chart i:nth-child(3) { min-height: 76px; background: var(--dc-blue); }
.dc-mini-chart i:nth-child(4) { min-height: 42px; }
.dc-browser-mock--floating p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--dc-navy);
  font-weight: 900;
}
.dc-phone-mock {
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 142px;
  min-height: 260px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background: #101417;
  transform: rotateY(-10deg) rotateX(5deg) translateZ(38px);
}
.dc-phone-mock span {
  display: block;
  width: 42px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.26);
}
.dc-phone-mock strong,
.dc-phone-mock i {
  display: block;
  border-radius: 14px;
}
.dc-phone-mock strong {
  min-height: 72px;
  background: var(--dc-orange);
}
.dc-phone-mock i {
  min-height: 34px;
  margin-top: 12px;
  background: rgba(255,255,255,.12);
}

/* Split */
.dc-split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.dc-feature-list { display: grid; gap: 15px; }
.dc-feature {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--dc-border);
  background: var(--dc-white);
  border-radius: 18px;
}
.dc-feature b {
  display: inline-flex;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: var(--dc-navy);
  color: var(--dc-white);
}
.dc-feature h3 { font-size: 1.08rem; margin-bottom: 5px; letter-spacing: -.03em; }
.dc-feature p { margin: 0; color: var(--dc-muted); font-size: .96rem; }

/* Method */
.dc-method {
  counter-reset: method;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.dc-step {
  counter-increment: method;
  position: relative;
  padding: 24px;
  border-radius: var(--dc-radius-sm);
  background: var(--dc-white);
  border: 1px solid var(--dc-border);
}
.dc-step::before {
  content: counter(method, decimal-leading-zero);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--dc-navy);
  color: var(--dc-white);
  font-weight: 900;
  margin-bottom: 18px;
}
.dc-step h3 { font-size: 1.1rem; margin-bottom: 8px; text-align: center; }
.dc-step p { margin: 0; color: var(--dc-muted); font-size: .94rem; }

/* Dark CTA */
.dc-dark-band {
  position: relative;
  overflow: hidden;
  background: var(--dc-navy);
  color: rgba(255, 255, 255, .78);
  border-radius: 34px;
  padding: 56px;
  box-shadow: var(--dc-shadow);
}
.dc-dark-band::after {
  content: none;
  display: none;
}
.dc-dark-band > * { position: relative; z-index: 1; }
.dc-dark-band > .dc-eyebrow {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.dc-dark-band > h2 {
  color: var(--dc-white);
  text-align: center;
}
.dc-dark-band > .dc-lead {
  color: rgba(255, 255, 255, .76);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Clients */
.dc-section--cases {
  background:
    linear-gradient(180deg, var(--dc-white) 0%, var(--dc-bg) 100%);
}
.dc-case-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
}
.dc-case-card {
  position: relative;
  min-height: 286px;
  padding: 30px;
  border-radius: var(--dc-radius);
  border: 1px solid rgba(7, 26, 45, .11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.9)),
    var(--dc-white);
  box-shadow: 0 16px 46px rgba(7, 26, 45, .075);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dc-case-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 32px;
  background: rgba(245, 125, 0, .08);
  transform: rotate(18deg);
}
.dc-case-card:hover,
.dc-case-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(245, 125, 0, .32);
  box-shadow: var(--dc-shadow);
}
.dc-case-card > * {
  position: relative;
  z-index: 1;
}
.dc-case-card--featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 594px;
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.16);
  background:
    linear-gradient(180deg, rgba(7,26,45,.16), rgba(7,26,45,.94)),
    linear-gradient(135deg, #0d2b45, #071a2d 64%, #101417);
}
.dc-case-card--featured::after {
  background: rgba(245, 125, 0, .22);
}
.dc-case-card h3 {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.45rem);
}
.dc-case-card--featured h3 { color: var(--dc-white); }
.dc-case-card p {
  color: var(--dc-muted);
}
.dc-case-card--featured p,
.dc-case-card--featured li {
  color: rgba(255,255,255,.74);
}
.dc-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dc-case-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--dc-soft-orange);
  color: var(--dc-orange-dark);
  font-size: .78rem;
  font-weight: 850;
}
.dc-case-card--featured .dc-case-meta span {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.12);
}
.dc-case-card ul {
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}
.dc-case-card li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}
.dc-case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dc-orange);
}
.dc-case-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: var(--dc-navy);
  font-weight: 900;
}
.dc-case-card--featured .dc-case-link {
  color: var(--dc-white);
}
.dc-case-link::after {
  content: "→";
  color: var(--dc-orange);
  transition: transform .18s ease;
}
.dc-case-link:hover::after,
.dc-case-link:focus-visible::after {
  transform: translateX(4px);
}
.dc-section--clients {
  background: var(--dc-white);
}
.dc-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dc-client-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  background: var(--dc-white);
  box-shadow: 0 12px 38px rgba(7, 26, 45, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dc-client-card:hover,
.dc-client-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(245, 125, 0, .32);
  box-shadow: var(--dc-shadow);
  color: var(--dc-navy);
}
.dc-client-logo-box {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: #000000;
  overflow: hidden;
}
.dc-client-logo-box img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}
.dc-client-name {
  color: var(--dc-navy);
  font-weight: 850;
  text-align: center;
  line-height: 1.2;
}

/* Proposal close */
.dc-section--proposal {
  background: var(--dc-white);
}
.dc-proposal {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 42px;
  align-items: center;
  padding: 52px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(135deg, #071a2d 0%, #101417 100%);
  background-size: 58px 58px, auto;
  color: rgba(255,255,255,.76);
  box-shadow: 0 34px 90px rgba(7, 26, 45, .22);
  overflow: hidden;
}
.dc-proposal h2 {
  color: var(--dc-white);
}
.dc-proposal p {
  max-width: 640px;
}
.dc-proposal .dc-actions {
  margin-top: 28px;
}
.dc-proposal-list {
  display: grid;
  gap: 12px;
}
.dc-proposal-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.065);
}
.dc-proposal-list span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--dc-orange);
  color: var(--dc-white);
  font-weight: 950;
}
.dc-proposal-list strong {
  color: var(--dc-white);
  line-height: 1.2;
}

/* Contact */
.dc-contact-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: start;
}
.dc-contact-card {
  background: var(--dc-navy);
  color: rgba(255, 255, 255, .78);
  border-radius: var(--dc-radius);
  padding: 32px;
  position: sticky;
  top: 110px;
  overflow: hidden;
}
.dc-contact-card h3 { color: var(--dc-white); }
.dc-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.dc-contact-item b { color: var(--dc-white); display: block; }
.dc-contact-item span { color: rgba(255,255,255,.68); }
.dc-form {
  background: var(--dc-white);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  padding: 32px;
  box-shadow: 0 12px 38px rgba(7, 26, 45, .06);
}
.dc-field { margin-bottom: 18px; }
.dc-field label { display: block; font-weight: 800; color: var(--dc-navy); margin-bottom: 7px; }
.dc-field input,
.dc-field textarea,
.dc-field select {
  width: 100%;
  border: 1px solid var(--dc-border);
  border-radius: 14px;
  padding: 14px 15px;
  background: var(--dc-bg);
  color: var(--dc-text);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.dc-field textarea { min-height: 140px; resize: vertical; }
.dc-field input:focus,
.dc-field textarea:focus,
.dc-field select:focus {
  border-color: var(--dc-orange);
  background: var(--dc-white);
  box-shadow: 0 0 0 4px rgba(245,125,0,.12);
}
.dc-form-note { color: var(--dc-muted); font-size: .92rem; margin: 14px 0 0; }
.dc-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 700;
}
.dc-alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.dc-alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Content templates */
.dc-page-hero {
  padding: 76px 0 48px;
  background: linear-gradient(180deg, var(--dc-bg), #fff);
}
.dc-content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  padding: 72px 0;
}
.dc-rich-content {
  max-width: 800px;
}
.dc-rich-content a { color: var(--dc-orange); font-weight: 800; }
.dc-rich-content p, .dc-rich-content li { font-size: 1.04rem; }
.dc-rich-content blockquote {
  margin: 34px 0;
  padding: 24px;
  border-left: 5px solid var(--dc-orange);
  background: var(--dc-bg);
  border-radius: 0 var(--dc-radius-sm) var(--dc-radius-sm) 0;
  color: var(--dc-navy);
  font-weight: 700;
}
.dc-rich-content table { width: 100%; border-collapse: collapse; margin: 26px 0; }
.dc-rich-content th, .dc-rich-content td { border: 1px solid var(--dc-border); padding: 12px; text-align: left; }
.dc-sidebar { position: sticky; top: 110px; align-self: start; }
.dc-sidebar-card { border: 1px solid var(--dc-border); border-radius: var(--dc-radius); padding: 24px; background: var(--dc-white); box-shadow: 0 12px 38px rgba(7,26,45,.05); }
.dc-post-meta { color: var(--dc-muted); font-weight: 700; margin-bottom: 18px; }
.dc-post-list { display: grid; gap: 22px; }
.dc-post-card { border: 1px solid var(--dc-border); border-radius: var(--dc-radius); padding: 26px; background: var(--dc-white); }
.dc-post-card h2 { font-size: clamp(1.45rem, 3vw, 2.2rem); }
.wp-caption, .wp-caption-text, .gallery-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.bypostauthor { outline: 2px solid var(--dc-orange); }

/* Footer */
.dc-site-footer {
  background: #0b111c;
  color: rgba(255,255,255,.68);
  padding: 64px 0 28px;
}
.dc-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 34px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.dc-footer-logo { font-size: 1.65rem; font-weight: 950; color: var(--dc-white); letter-spacing: -.05em; margin-bottom: 12px; }
.dc-footer-logo span { color: var(--dc-orange); }
.dc-site-footer h3 { color: var(--dc-white); font-size: 1.1rem; letter-spacing: -.02em; }
.dc-footer-links { list-style: none; margin: 0; padding: 0; }
.dc-footer-links li { margin: 8px 0; }
.dc-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .92rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .dc-hero-grid, .dc-split, .dc-showroom, .dc-proposal, .dc-contact-grid, .dc-content-wrap { grid-template-columns: 1fr; }
  .dc-trust-strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dc-case-grid { grid-template-columns: 1fr; }
  .dc-case-card--featured { min-height: 460px; }
  .dc-clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-method { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dc-contact-card, .dc-sidebar { position: static; }
  .dc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .admin-bar .dc-site-header { top: 0; }
  .dc-header-inner { min-height: 72px; }
  .dc-brand img, .custom-logo-link img { width: 205px; }
  .dc-menu-toggle { display: inline-flex; }
  .dc-main-nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--dc-border);
    border-radius: 20px;
    background: var(--dc-white);
    box-shadow: var(--dc-shadow);
  }
  .dc-main-nav.is-open { display: flex; }
  .dc-main-nav ul { flex-direction: column; align-items: stretch; }
  .dc-main-nav a { justify-content: center; }
  .dc-header-cta { display: none; }
  .dc-grid-3, .dc-grid-2, .dc-clients-grid { grid-template-columns: 1fr; }
  .dc-hero { padding-top: 62px; }
  .dc-hero-panel { min-height: auto; }
  .dc-dashboard { min-height: auto; }
  .dc-hero-proof { grid-template-columns: 1fr; }
  .dc-trust-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-trust-strip__inner span { min-height: 64px; }
  .dc-showroom-stage { min-height: 480px; }
  .dc-browser-mock--main { transform: none; }
  .dc-browser-mock--floating,
  .dc-phone-mock { transform: none; }
  .dc-product-preview { grid-template-columns: 1fr; }
  .dc-product-sidebar { display: none; }
  .dc-dark-band { padding: 34px; border-radius: 24px; }
  .dc-proposal { padding: 34px; border-radius: 24px; }
  .dc-section { padding: 72px 0; }
  .dc-footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .dc-container { width: min(100% - 24px, var(--dc-container)); }
  .dc-actions { flex-direction: column; align-items: stretch; }
  .dc-btn { width: 100%; }
  .dc-trust-strip__inner { grid-template-columns: 1fr; }
  .dc-showroom-points div { grid-template-columns: 1fr; gap: 4px; }
  .dc-showroom-stage { min-height: auto; }
  .dc-browser-mock,
  .dc-phone-mock { position: relative; inset: auto; width: auto; }
  .dc-browser-mock--main { min-height: auto; }
  .dc-browser-mock--floating { display: none; }
  .dc-phone-mock { display: none; }
  .dc-browser-hero { grid-template-columns: 1fr; padding: 24px; }
  .dc-browser-hero em { min-height: 92px; }
  .dc-browser-grid { grid-template-columns: 1fr; padding: 18px 24px 24px; }
  .dc-metric-grid { grid-template-columns: 1fr; }
  .dc-method { grid-template-columns: 1fr; }
  .dc-case-card,
  .dc-case-card--featured { min-height: auto; padding: 24px; }
  .dc-proposal { padding: 24px; }
  .dc-proposal-list div { grid-template-columns: 1fr; }
  .dc-form, .dc-contact-card, .dc-card { padding: 22px; }
  .dc-footer-bottom { flex-direction: column; }
}
