/* === Client detail page (/clients/{slug}/) === */
.dcc-hero{
  position: relative;
  padding: 40px 24px 60px;
  background: linear-gradient(180deg, #fff8ef 0%, var(--dc-cream) 100%);
  overflow: hidden;
  isolation: isolate;
}
.dcc-hero__blob{
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%);
  filter: blur(80px);
  top: -150px; right: -150px;
  z-index: 0;
  animation: dcBlob 20s ease-in-out infinite;
}
.dcc-hero__inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.dcc-hero__brand{display: flex; gap: 18px; align-items: flex-start; margin-bottom: 20px}
.dcc-hero__icon{
  width: 96px; height: 96px;
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 12px 32px -6px color-mix(in srgb, var(--accent) 60%, transparent);
}
.dcc-hero__eyebrow{
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.dcc-hero__title{
  font-size: clamp(36px,5vw,56px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.05;
}
.dcc-hero__tagline{
  font-size: 18px;
  line-height: 1.55;
  color: var(--dc-ink-2);
  margin: 0 0 28px;
  max-width: 580px;
}
.dcc-hero__metrics{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  max-width: 560px;
}
.dcc-hero__metrics > div{
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--dc-line);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}
.dcc-hero__metrics strong{
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--dc-ink);
  letter-spacing: -.02em;
  line-height: 1;
}
.dcc-hero__metrics span{
  display: block;
  margin-top: 6px;
  font-size: 10px;
  color: var(--dc-ink-2);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.dcc-hero__zero strong{
  background: linear-gradient(135deg, #16a34a, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dcc-hero__buttons{display: flex; gap: 10px; flex-wrap: wrap}

.dcc-hero__right{
  position: relative;
  display: flex;
  justify-content: center;
}
.dcc-hero__right .dc-iphone{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 280px !important;
  height: 580px !important;
  animation: dcPhoneFloat 6s ease-in-out infinite;
}

/* Section title */
.dcc-section-title{
  font-size: clamp(28px,3.5vw,40px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin: 0 0 32px;
}

/* Screens grid */
.dcc-screens{padding: 60px 24px; background: #fff}
.dcc-screens__grid{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dcc-screen{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 24px 50px -15px color-mix(in srgb, var(--accent) 50%, rgba(0,0,0,.25));
  aspect-ratio: 9/19.5;
  background: #000;
}
.dcc-screen img{width: 100%; height: 100%; object-fit: cover; display: block}

/* About section */
.dcc-about{padding: 60px 24px; background: var(--dc-cream)}
.dcc-about__inner{max-width: 1100px; margin: 0 auto}
.dcc-about__grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  margin-top: 12px;
}
.dcc-about h3{
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--dc-ink);
  position: relative;
  padding-left: 18px;
}
.dcc-about h3:first-child{margin-top: 0}
.dcc-about h3::before{
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 22px;
  background: var(--accent);
  border-radius: 4px;
}
.dcc-about p, .dcc-about ul{
  font-size: 16px;
  line-height: 1.7;
  color: var(--dc-ink-2);
  margin: 0 0 16px;
}
.dcc-about p strong, .dcc-about ul strong{color: var(--dc-ink); font-weight: 600}
.dcc-about ul{padding-left: 22px}
.dcc-about li{margin-bottom: 8px}
.dcc-tech li{font-family: 'SF Mono', Menlo, monospace; font-size: 14px}

/* CTA */
.dcc-cta{
  padding: 70px 24px;
  background: linear-gradient(135deg, var(--dc-ink) 0%, #2d2d2d 100%);
  color: #fff;
  text-align: center;
}
.dcc-cta__inner{max-width: 720px; margin: 0 auto}
.dcc-cta h2{font-size: clamp(28px,3.5vw,40px); font-weight: 800; margin: 0 0 16px; letter-spacing: -.02em}
.dcc-cta p{font-size: 17px; opacity: .8; margin: 0 0 28px}
.dcc-cta__buttons{display: flex; gap: 12px; justify-content: center; flex-wrap: wrap}
.dcc-cta .dc-btn--orange{background: var(--accent); color: #fff}
.dcc-cta .dc-btn--ghost{background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18)}

/* Related */
.dcc-related{padding: 60px 24px; background: #fff8ef}
.dcc-related__inner{max-width: 1100px; margin: 0 auto}
.dcc-related__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dcc-related__card{
  background: #fff;
  border: 1px solid var(--dc-line);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  transition: all .25s;
  display: block;
}
.dcc-related__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -10px color-mix(in srgb, var(--accent) 30%, rgba(0,0,0,.12));
  border-color: var(--accent);
}
.dcc-related__card img{
  width: 48px; height: 48px;
  border-radius: 12px;
  margin: 0 auto 10px;
  display: block;
}
.dcc-related__name{font-weight: 700; color: var(--dc-ink); font-size: 14px; margin-bottom: 4px}
.dcc-related__city{font-size: 11px; color: var(--dc-ink-2); text-transform: uppercase; letter-spacing: .05em}

@media(max-width: 720px){
  .dcc-hero{padding: 24px 16px 40px}
  .dcc-hero__inner{grid-template-columns: 1fr; gap: 32px}
  .dcc-hero__brand{align-items: center}
  .dcc-hero__icon{width: 72px; height: 72px}
  .dcc-hero__metrics{grid-template-columns: repeat(2,1fr); gap: 8px}
  .dcc-hero__metrics strong{font-size: 18px}
  .dcc-hero__buttons .dc-btn-store{flex: 1; justify-content: center}
  .dcc-hero__right .dc-iphone{width: 220px !important; height: 460px !important}
  .dcc-screens, .dcc-about, .dcc-related{padding: 50px 16px}
  .dcc-screens__grid{grid-template-columns: 1fr; gap: 14px; max-width: 280px; margin-left: auto; margin-right: auto}
  .dcc-about__grid{grid-template-columns: 1fr; gap: 24px}
  .dcc-related__grid{grid-template-columns: repeat(2, 1fr)}
}
