/* ============================================================
   DANUM HERO SYSTEM — 18 Layouts (L1-L8 + D1-D10)
   File: assets/css/hero.css
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --hg:  #176854;
  --hgd: #0d4535;
  --hgl: rgba(23,104,84,.1);
  --hgo: #cdec6a;
  --hbk: #0A0A0A;
  --hwh: #ffffff;
  --hmu: rgba(255,255,255,.5);
  --hbd: rgba(255,255,255,.12);
  --font:'Sora',sans-serif;
  --tr: all .25s cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════════════
   SHARED BASE
══════════════════════════════════════════════ */
.dh-hero { font-family: var(--font); position: relative; overflow: hidden; }
.dh-hero *, .dh-hero *::before, .dh-hero *::after { box-sizing: border-box; margin: 0; padding: 0; }
.dh-hero .hcont { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

/* ── Shared Badge ── */
.h-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 100px; padding: 5px 14px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 14px;
}
.h-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  animation: hbpulse 2s infinite;
}
@keyframes hbpulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Shared Title ── */
.h-title {
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.025em; margin: 0 0 10px;
}
.h-title em { font-style: normal; }
.h-desc { line-height: 1.75; margin-bottom: 18px; }

/* ── Shared Buttons ── */
.h-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }

.h-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hgo); color: var(--hbk);
  padding: 11px 22px; border-radius: 10px;
  font-weight: 800; font-size: .88rem;
  text-decoration: none; border: none; cursor: pointer;
  font-family: var(--font); transition: var(--tr);
}
.h-btn-primary:hover { opacity: .88; transform: translateY(-2px); }

.h-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; color: rgba(255,255,255,.65);
  border: 1.5px solid rgba(255,255,255,.2);
  padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: .88rem;
  text-decoration: none; cursor: pointer;
  font-family: var(--font); transition: var(--tr);
}
.h-btn-ghost-dark:hover { border-color: rgba(255,255,255,.5); color: #fff; }

.h-btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; color: var(--hg);
  border: 1.5px solid var(--hg);
  padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: .88rem;
  text-decoration: none; cursor: pointer;
  font-family: var(--font); transition: var(--tr);
}
.h-btn-ghost-light:hover { background: var(--hg); color: #fff; }

/* ── Shared Stats ── */
.h-stats { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.h-stat strong {
  display: block; font-size: 1.7rem; font-weight: 800;
  line-height: 1; margin-bottom: 2px;
}
.h-stat span {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; opacity: .48;
}
.h-stat-sep { width: 1px; height: 36px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   VERTICAL SLIDER
══════════════════════════════════════════════ */
.dh-vslider {
  position: relative; overflow: hidden; flex-shrink: 0;
}
.dh-vs-track {
  display: flex; flex-direction: column;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.dh-vs-slide {
  flex-shrink: 0; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dh-vs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dh-vs-slide-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* Modern Arrow Buttons */
.dh-vs-arrow {
  position: absolute; right: 12px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--tr); color: #fff;
  user-select: none;
}
.dh-vs-arrow:hover {
  background: var(--hgo); border-color: var(--hgo); color: var(--hbk);
  transform: scale(1.08);
}
.dh-vs-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.dh-vs-arrow-up { top: 12px; }
.dh-vs-arrow-dn { bottom: 12px; }

/* Light theme arrows */
.dh-vs-arrow.light {
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.12);
  color: #333;
}
.dh-vs-arrow.light:hover { background: var(--hg); border-color: var(--hg); color: #fff; }

/* Dot indicators */
.dh-vs-dots {
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 5px; z-index: 10;
}
.dh-vs-dot {
  width: 4px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.25);
  cursor: pointer; transition: all .25s;
}
.dh-vs-dot.on { height: 14px; background: var(--hgo); }
.dh-vs-dot.light { background: rgba(0,0,0,.15); }
.dh-vs-dot.light.on { background: var(--hg); }

/* Slide counter */
.dh-vs-count {
  position: absolute; bottom: 10px; left: 10px; z-index: 10;
  font-size: 9px; font-weight: 700; letter-spacing: .08em;
  background: rgba(0,0,0,.35); color: rgba(255,255,255,.75);
  padding: 3px 8px; border-radius: 20px; font-family: var(--font);
}
.dh-vs-count.light {
  background: rgba(0,0,0,.1); color: #555;
}

/* Autoplay bar */
.dh-vs-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; background: var(--hgo);
  animation: vsProgress 4s linear infinite;
  transform-origin: left;
}
@keyframes vsProgress { 0%{transform:scaleX(0)} 100%{transform:scaleX(1)} }

/* ══════════════════════════════════════════════
   LAYOUT 1 — Dark Split: Logo Left + Slider Right
   (original Danum screenshot style)
══════════════════════════════════════════════ */
.dh-hero.l1 {
  background: #0a0a0a;
  min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.l1 .l1-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 30px 30px; pointer-events: none;
}
.dh-hero.l1 .l1-glow {
  position: absolute; right: 320px; top: -10%;
  width: 400px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(23,104,84,.2) 0%, transparent 70%);
  pointer-events: none;
}
.dh-hero.l1 .l1-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 0; align-items: center; min-height: 90vh;
}
.dh-hero.l1 .l1-content { padding: 80px 40px 80px 0; }
.dh-hero.l1 .l1-line {
  width: 48px; height: 3px; margin-bottom: 18px;
  background: linear-gradient(90deg, var(--hg), var(--hgo));
  border-radius: 2px;
}
.dh-hero.l1 .h-badge {
  background: rgba(205,236,106,.1); color: var(--hgo);
  border: 1px solid rgba(205,236,106,.22);
}
.dh-hero.l1 .h-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: #fff; }
.dh-hero.l1 .h-title em { color: var(--hgo); }
.dh-hero.l1 .h-desc { color: rgba(255,255,255,.48); font-size: .96rem; }
.dh-hero.l1 .h-stat strong { color: var(--hgo); }
.dh-hero.l1 .h-stat span { color: rgba(255,255,255,.35); opacity: 1; }
.dh-hero.l1 .h-stat-sep { background: rgba(255,255,255,.1); }
.dh-hero.l1 .dh-vslider { height: 90vh; width: 300px; }
.dh-hero.l1 .dh-vs-slide { height: 90vh; }
.dh-hero.l1 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,#176854); }

/* ── L2: Cinematic Center Fullscreen ── */
.dh-hero.l2 {
  background: var(--hbk); min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.dh-hero.l2 .l2-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.dh-hero.l2 .l2-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(10,10,10,.4) 0%,rgba(10,10,10,.82) 60%,#0a0a0a 100%);
}
.dh-hero.l2 .l2-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--hgo) 40%,var(--hgo) 60%,transparent);
}
.dh-hero.l2 .l2-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 7rem 0; max-width: 800px;
}
.dh-hero.l2 .h-badge { background: rgba(23,104,84,.18); color: var(--hgo); border: 1px solid rgba(23,104,84,.35); }
.dh-hero.l2 .h-title { font-size: clamp(2.8rem, 6.5vw, 5.5rem); color: #fff; }
.dh-hero.l2 .h-title .grad {
  display: block;
  background: linear-gradient(90deg, var(--hgo), #fff 50%, var(--hgo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dh-hero.l2 .h-desc { color: rgba(255,255,255,.48); max-width: 520px; margin: 0 auto 18px; }
.dh-hero.l2 .h-btns { justify-content: center; }
.dh-hero.l2 .h-stats { justify-content: center; gap: 32px; }
.dh-hero.l2 .h-stat { text-align: center; }
.dh-hero.l2 .h-stat strong { color: var(--hgo); font-size: 2rem; }
.dh-hero.l2 .h-stat span { color: rgba(255,255,255,.38); opacity: 1; }
.dh-hero.l2 .h-stat-sep { background: rgba(255,255,255,.1); }
.l2-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  color: rgba(255,255,255,.22); font-size: .58rem; letter-spacing: .15em;
  text-transform: uppercase; z-index: 3; font-family: var(--font);
}
.l2-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg,transparent,rgba(255,255,255,.3));
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ── L3: Green Brand + Service Cards ── */
.dh-hero.l3 {
  background: var(--hg); min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.l3 .l3-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
  background-size: 26px 26px; pointer-events: none;
}
.dh-hero.l3 .l3-blob {
  position: absolute; right: -5%; bottom: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(0,0,0,.12); pointer-events: none;
}
.dh-hero.l3 .l3-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 0; align-items: center; min-height: 90vh; width: 100%;
}
.dh-hero.l3 .l3-content { padding: 80px 40px 80px 0; }
.dh-hero.l3 .h-badge { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.dh-hero.l3 .h-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: #fff; }
.dh-hero.l3 .h-title em { color: var(--hgo); display: block; }
.dh-hero.l3 .h-desc { color: rgba(255,255,255,.65); }
.dh-hero.l3 .h-stat strong { color: #fff; }
.dh-hero.l3 .h-stat span { color: rgba(255,255,255,.42); opacity: 1; }
.dh-hero.l3 .h-stat-sep { background: rgba(255,255,255,.15); }
.dh-hero.l3 .dh-vslider { height: 90vh; width: 280px; }
.dh-hero.l3 .dh-vs-slide { height: 90vh; }
.dh-hero.l3 .dh-vs-slide-ph { background: rgba(0,0,0,.2); }

/* ── L4: Editorial Light ── */
.dh-hero.l4 {
  background: #FAFAF8; min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.l4 .l4-bar {
  position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(180deg, var(--hg), var(--hgo));
}
.dh-hero.l4 .l4-inner {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 0; align-items: center; min-height: 90vh; width: 100%;
}
.dh-hero.l4 .l4-content { padding: 80px 40px 80px 12px; }
.dh-hero.l4 .l4-kicker {
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--hg);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.dh-hero.l4 .l4-kicker::before { content: ''; width: 20px; height: 2px; background: var(--hg); }
.dh-hero.l4 .h-badge { background: rgba(23,104,84,.07); color: var(--hg); border: 1px solid rgba(23,104,84,.15); }
.dh-hero.l4 .h-title { font-size: clamp(2.6rem, 5vw, 4.5rem); color: var(--hbk); }
.dh-hero.l4 .h-title em { color: transparent; -webkit-text-stroke: 2px var(--hg); }
.dh-hero.l4 .h-desc { color: #555; max-width: 440px; }
.dh-hero.l4 .h-stat strong { color: var(--hg); }
.dh-hero.l4 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.l4 .h-stat-sep { background: #e0e0e0; }
.dh-hero.l4 .dh-vslider { height: 90vh; width: 300px; }
.dh-hero.l4 .dh-vs-slide { height: 90vh; }
.dh-hero.l4 .dh-vs-slide-ph { background: linear-gradient(135deg,#e8f4f0,#c0ddd0); }

/* ── L5: Compact Green Accent ── */
.dh-hero.l5 {
  background: #fff; min-height: 82vh; display: flex; align-items: center;
  border-bottom: 3px solid var(--hg);
}
.dh-hero.l5 .l5-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 0; align-items: center; min-height: 82vh; width: 100%;
}
.dh-hero.l5 .l5-content { padding: 60px 40px 60px 0; }
.dh-hero.l5 .h-badge { background: rgba(23,104,84,.07); color: var(--hg); border: 1px solid rgba(23,104,84,.15); }
.dh-hero.l5 .h-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--hbk); }
.dh-hero.l5 .h-title em { color: var(--hg); font-style: normal; }
.dh-hero.l5 .h-desc { color: #666; }
.dh-hero.l5 .h-stat strong { color: var(--hg); }
.dh-hero.l5 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.l5 .h-stat-sep { background: #e0e0e0; }
.dh-hero.l5 .dh-vslider { height: 82vh; width: 280px; }
.dh-hero.l5 .dh-vs-slide { height: 82vh; }
.dh-hero.l5 .dh-vs-slide-ph { background: linear-gradient(135deg,#eef7f2,#cce8d8); }

/* ── L6: Double Row Info Strip ── */
.dh-hero.l6 {
  background: #fff;
}
.dh-hero.l6 .l6-strip {
  background: var(--hg); height: 42px;
  display: flex; align-items: center;
  font-family: var(--font); font-size: .72rem;
  color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.1);
}
.dh-hero.l6 .l6-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.dh-hero.l6 .l6-strip-left { display: flex; align-items: center; gap: 20px; }
.dh-hero.l6 .l6-strip-link {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.8); text-decoration: none; font-size: .72rem; transition: var(--tr);
}
.dh-hero.l6 .l6-strip-link:hover { color: #fff; }
.dh-hero.l6 .l6-strip-link svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; opacity: .7; }
.dh-hero.l6 .l6-sep { opacity: .2; }
.dh-hero.l6 .l6-strip-right { display: flex; align-items: center; gap: 14px; }
.dh-hero.l6 .l6-wa {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px; padding: 3px 12px;
  color: #fff; text-decoration: none; font-size: .7rem; font-weight: 600;
  transition: var(--tr);
}
.dh-hero.l6 .l6-wa:hover { background: rgba(255,255,255,.22); }
.dh-hero.l6 .l6-main {
  min-height: 80vh; display: flex; align-items: center;
}
.dh-hero.l6 .l6-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 0; align-items: center; min-height: 80vh; width: 100%;
}
.dh-hero.l6 .l6-content { padding: 60px 40px 60px 0; }
.dh-hero.l6 .h-badge { background: rgba(23,104,84,.07); color: var(--hg); border: 1px solid rgba(23,104,84,.15); }
.dh-hero.l6 .h-title { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--hbk); }
.dh-hero.l6 .h-title em { color: var(--hg); }
.dh-hero.l6 .h-desc { color: #555; }
.dh-hero.l6 .h-stat strong { color: var(--hg); }
.dh-hero.l6 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.l6 .h-stat-sep { background: #e0e0e0; }
.dh-hero.l6 .dh-vslider { height: 80vh; width: 280px; }
.dh-hero.l6 .dh-vs-slide { height: 80vh; }
.dh-hero.l6 .dh-vs-slide-ph { background: linear-gradient(135deg,#eef7f2,#c0ddd0); }

/* ── L7: Social Dots + Nav ── */
.dh-hero.l7 {
  background: var(--hbk); min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.l7 .l7-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.dh-hero.l7 .l7-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 0; align-items: center; min-height: 90vh; width: 100%;
}
.dh-hero.l7 .l7-content { padding: 80px 40px 80px 0; }
.dh-hero.l7 .h-badge { background: rgba(23,104,84,.18); color: var(--hgo); border: 1px solid rgba(23,104,84,.3); }
.dh-hero.l7 .h-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: #fff; }
.dh-hero.l7 .h-title em { color: var(--hgo); }
.dh-hero.l7 .h-desc { color: rgba(255,255,255,.45); }
.dh-hero.l7 .h-stat strong { color: var(--hgo); }
.dh-hero.l7 .h-stat span { color: rgba(255,255,255,.3); opacity: 1; }
.dh-hero.l7 .h-stat-sep { background: rgba(255,255,255,.1); }
.dh-hero.l7 .dh-vslider { height: 90vh; width: 300px; }
.dh-hero.l7 .dh-vs-slide { height: 90vh; }
.dh-hero.l7 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,#176854); }
.dh-hero.l7 .l7-socials {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.dh-hero.l7 .l7-soc {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); text-decoration: none;
  font-size: .65rem; font-weight: 700; transition: var(--tr);
}
.dh-hero.l7 .l7-soc:hover { background: var(--hg); border-color: var(--hg); color: #fff; }

/* ── L8: Promo Strip + Clean ── */
.dh-hero.l8 { background: #fff; }
.dh-hero.l8 .l8-promo {
  background: var(--hg); height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: .7rem;
  color: rgba(255,255,255,.85); letter-spacing: .05em; gap: 8px;
}
.dh-hero.l8 .l8-promo-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--hgo); flex-shrink: 0; }
.dh-hero.l8 .l8-promo a { color: var(--hgo); font-weight: 700; text-decoration: none; margin-left: 5px; }
.dh-hero.l8 .l8-main { min-height: 84vh; display: flex; align-items: center; }
.dh-hero.l8 .l8-inner {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 0; align-items: center; min-height: 84vh; width: 100%;
}
.dh-hero.l8 .l8-content { padding: 60px 40px 60px 0; }
.dh-hero.l8 .h-badge { background: rgba(23,104,84,.07); color: var(--hg); border: 1px solid rgba(23,104,84,.15); }
.dh-hero.l8 .h-title { font-size: clamp(2rem, 4vw, 3.4rem); color: var(--hbk); }
.dh-hero.l8 .h-title em { color: var(--hg); }
.dh-hero.l8 .h-desc { color: #555; }
.dh-hero.l8 .h-stat strong { color: var(--hg); }
.dh-hero.l8 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.l8 .h-stat-sep { background: #e0e0e0; }
.dh-hero.l8 .dh-vslider { height: 84vh; width: 280px; }
.dh-hero.l8 .dh-vs-slide { height: 84vh; }
.dh-hero.l8 .dh-vs-slide-ph { background: linear-gradient(135deg,#eef7f2,#c0ddd0); }

/* ══════════════════════════════════════════════
   D-SERIES DESIGNS (D1–D10) — Totally Different
══════════════════════════════════════════════ */

/* ── D1: Stacked Layers + Stats Sidebar ── */
.dh-hero.d1 {
  background: #0a0a0a; min-height: 90vh;
  display: flex; align-items: flex-end;
}
.dh-hero.d1 .d1-strips {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; pointer-events: none;
}
.dh-hero.d1 .d1-strip {
  flex: 1; opacity: .05;
}
.dh-hero.d1 .d1-strip:nth-child(odd)  { background: var(--hg); }
.dh-hero.d1 .d1-strip:nth-child(even) { background: var(--hgo); }
.dh-hero.d1 .d1-corner {
  position: absolute; top: 0; right: 300px; width: 260px; height: 100%;
  background: linear-gradient(135deg, rgba(23,104,84,.15), transparent);
  clip-path: polygon(100% 0, 100% 100%, 0 100%); pointer-events: none;
}
.dh-hero.d1 .d1-big-num {
  position: absolute; left: 24px; top: 8%;
  font-size: clamp(100px,18vw,180px); font-weight: 900;
  color: rgba(255,255,255,.025); line-height: 1;
  letter-spacing: -6px; pointer-events: none; user-select: none;
  font-family: var(--font);
}
.dh-hero.d1 .d1-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 180px 300px;
  width: 100%; align-items: end;
  padding-bottom: 0;
}
.dh-hero.d1 .d1-content { padding: 80px 32px 60px 0; }
.dh-hero.d1 .d1-tag {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--hg);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.dh-hero.d1 .d1-tag::before { content: ''; width: 16px; height: 1px; background: var(--hg); }
.dh-hero.d1 .h-title { font-size: clamp(2rem, 4.5vw, 3.6rem); color: #fff; }
.dh-hero.d1 .h-title em { color: var(--hgo); font-style: normal; }
.dh-hero.d1 .h-desc { color: rgba(255,255,255,.42); font-size: .93rem; }
.dh-hero.d1 .h-btns { margin-bottom: 0; }
.dh-hero.d1 .d1-stats-col {
  display: flex; flex-direction: column; gap: 8px;
  padding: 60px 20px; border-left: 1px solid rgba(255,255,255,.06);
}
.dh-hero.d1 .d1-stat {
  border-left: 2px solid var(--hg); padding-left: 10px;
}
.dh-hero.d1 .d1-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--hgo); line-height: 1; }
.dh-hero.d1 .d1-stat span  { font-size: .65rem; color: rgba(255,255,255,.3); letter-spacing: .06em; text-transform: uppercase; }
.dh-hero.d1 .dh-vslider { width: 300px; height: 90vh; }
.dh-hero.d1 .dh-vs-slide { height: 90vh; }
.dh-hero.d1 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,var(--hg)); }

/* ── D2: Brutalist Grid ── */
.dh-hero.d2 {
  background: #f0ede6; min-height: 90vh;
}
.dh-hero.d2 .d2-grid {
  display: grid; grid-template-columns: 60px 1fr 220px; min-height: 90vh;
}
.dh-hero.d2 .d2-sidebar {
  background: var(--hg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.dh-hero.d2 .d2-s-num {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.45);
  letter-spacing: .15em; text-transform: uppercase; font-family: var(--font);
}
.dh-hero.d2 .d2-s-line { width: 1px; height: 40px; background: rgba(255,255,255,.18); }
.dh-hero.d2 .d2-main { padding: 60px 40px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.dh-hero.d2 .d2-label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--hg); margin-bottom: 8px; font-family: var(--font); }
.dh-hero.d2 .h-title { font-size: clamp(2.8rem, 5vw, 4.5rem); color: var(--hbk); letter-spacing: -1.5px; }
.dh-hero.d2 .h-title em { color: var(--hg); font-style: normal; }
.dh-hero.d2 .d2-rule { width: 100%; height: 2px; background: var(--hbk); margin: 16px 0; }
.dh-hero.d2 .h-desc { color: #555; max-width: 400px; }
.dh-hero.d2 .d2-b1 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hbk); color: var(--hgo);
  padding: 12px 24px; border: none; border-radius: 0;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  font-family: var(--font); letter-spacing: .04em; text-decoration: none;
  transition: var(--tr);
}
.dh-hero.d2 .d2-b1:hover { background: var(--hg); }
.dh-hero.d2 .d2-b2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; color: var(--hbk);
  padding: 11px 20px; border: 2px solid var(--hbk); border-radius: 0;
  font-size: .88rem; font-weight: 700; cursor: pointer;
  font-family: var(--font); text-decoration: none; transition: var(--tr);
}
.dh-hero.d2 .d2-b2:hover { background: var(--hbk); color: #fff; }
.dh-hero.d2 .d2-stats {
  display: flex; gap: 0; margin-top: 20px;
}
.dh-hero.d2 .d2-stat {
  padding: 10px 18px; border: 1px solid #ddd; background: #fff; text-align: center;
}
.dh-hero.d2 .d2-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--hbk); }
.dh-hero.d2 .d2-stat span { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: #aaa; }
.dh-hero.d2 .d2-right { border-left: 2px solid var(--hbk); overflow: hidden; }
.dh-hero.d2 .dh-vslider { width: 220px; height: 90vh; }
.dh-hero.d2 .dh-vs-slide { height: 90vh; }
.dh-hero.d2 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,#176854); }

/* ── D3: Organic Blobs ── */
.dh-hero.d3 {
  background: #0f2318; min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.d3 .d3-blob1 {
  position: absolute; top: -100px; right: -60px;
  width: 480px; height: 580px;
  border-radius: 50% 30% 60% 40%;
  background: rgba(23,104,84,.28); pointer-events: none;
}
.dh-hero.d3 .d3-blob2 {
  position: absolute; bottom: -100px; left: -80px;
  width: 360px; height: 420px;
  border-radius: 40% 60% 30% 70%;
  background: rgba(205,236,106,.05); pointer-events: none;
}
.dh-hero.d3 .d3-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 260px;
  align-items: center; min-height: 90vh; width: 100%; gap: 0;
}
.dh-hero.d3 .d3-content { padding: 80px 40px 80px 0; }
.dh-hero.d3 .d3-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(23,104,84,.25); border: 1px solid rgba(23,104,84,.45);
  border-radius: 100px; padding: 5px 14px 5px 8px; margin-bottom: 16px;
}
.dh-hero.d3 .d3-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hgo); }
.dh-hero.d3 .d3-pill span { font-size: .7rem; color: rgba(255,255,255,.7); font-weight: 500; font-family: var(--font); }
.dh-hero.d3 .h-title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: #fff; }
.dh-hero.d3 .h-title em { color: var(--hgo); font-style: normal; display: block; }
.dh-hero.d3 .h-desc { color: rgba(255,255,255,.42); }
.dh-hero.d3 .h-stat strong { color: var(--hgo); }
.dh-hero.d3 .h-stat span { color: rgba(255,255,255,.3); opacity: 1; }
.dh-hero.d3 .h-stat-sep { background: rgba(255,255,255,.1); }
.dh-hero.d3 .dh-vslider { width: 260px; height: 90vh; border-radius: 60% 0 0 60%; overflow: hidden; }
.dh-hero.d3 .dh-vs-slide { height: 90vh; }
.dh-hero.d3 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,#176854); }

/* ── D4: Color Block Split ── */
.dh-hero.d4 {
  min-height: 90vh; display: flex;
}
.dh-hero.d4 .d4-left {
  width: 46%; background: var(--hg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px; position: relative; overflow: hidden;
}
.dh-hero.d4 .d4-sq {
  position: absolute; bottom: -24px; right: -24px;
  width: 90px; height: 90px; background: var(--hgo); border-radius: 16px;
}
.dh-hero.d4 .d4-tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; font-family: var(--font); }
.dh-hero.d4 .h-title { font-size: clamp(2rem, 4vw, 3.4rem); color: #fff; }
.dh-hero.d4 .h-title em { color: var(--hgo); font-style: normal; }
.dh-hero.d4 .h-desc { color: rgba(255,255,255,.55); }
.dh-hero.d4 .d4-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hgo); color: var(--hbk);
  padding: 12px 24px; border-radius: 10px;
  font-weight: 800; font-size: .9rem; text-decoration: none;
  transition: var(--tr); align-self: flex-start;
}
.dh-hero.d4 .d4-cta:hover { opacity: .88; transform: translateY(-2px); }
.dh-hero.d4 .d4-right {
  flex: 1; display: flex; flex-direction: column;
}
.dh-hero.d4 .d4-top {
  flex: 1; padding: 40px 36px; display: flex; flex-direction: column; justify-content: center;
  background: #fff;
}
.dh-hero.d4 .d4-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px;
}
.dh-hero.d4 .d4-stat-box {
  background: #f5f5f0; border-radius: 12px; padding: 16px;
}
.dh-hero.d4 .d4-stat-box strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--hbk); }
.dh-hero.d4 .d4-stat-box span { font-size: .65rem; text-transform: uppercase; letter-spacing: .07em; color: #aaa; }
.dh-hero.d4 .d4-view {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--hg); color: var(--hg);
  padding: 10px 18px; border-radius: 10px; font-size: .88rem; font-weight: 600;
  text-decoration: none; transition: var(--tr); align-self: flex-start;
}
.dh-hero.d4 .d4-view:hover { background: var(--hg); color: #fff; }
.dh-hero.d4 .d4-img { overflow: hidden; height: 220px; }
.dh-hero.d4 .dh-vslider { width: 100%; height: 220px; }
.dh-hero.d4 .dh-vs-slide { height: 220px; }
.dh-hero.d4 .dh-vs-slide-ph { background: var(--hg); }

/* ── D5: Newspaper Editorial ── */
.dh-hero.d5 { background: #fff; min-height: 90vh; }
.dh-hero.d5 .d5-masthead {
  background: var(--hbk); height: 32px;
  display: flex; align-items: center;
  font-family: var(--font); font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--hgo); padding: 0 32px;
  justify-content: space-between;
}
.dh-hero.d5 .d5-cols {
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 200px;
  min-height: calc(90vh - 32px);
}
.dh-hero.d5 .d5-col { padding: 36px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.dh-hero.d5 .d5-divider { background: var(--hbk); }
.dh-hero.d5 .d5-label { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: #999; margin-bottom: 8px; font-family: var(--font); }
.dh-hero.d5 .h-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--hbk); letter-spacing: -0.5px; line-height: 1.05; }
.dh-hero.d5 .h-title em { border-bottom: 3px solid var(--hg); font-style: normal; }
.dh-hero.d5 .h-desc { color: #555; font-size: .9rem; line-height: 1.7; }
.dh-hero.d5 .d5-h2 { font-size: 1rem; font-weight: 700; color: var(--hbk); margin-bottom: 8px; }
.dh-hero.d5 .d5-stats { display: flex; flex-direction: column; gap: 10px; }
.dh-hero.d5 .d5-stat { border-bottom: 1px solid #eee; padding-bottom: 10px; }
.dh-hero.d5 .d5-stat:last-child { border-bottom: none; }
.dh-hero.d5 .d5-stat strong { font-size: 1.8rem; font-weight: 900; color: var(--hg); }
.dh-hero.d5 .d5-stat span { display: block; font-size: .62rem; color: #999; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font); }
.dh-hero.d5 .d5-btns { display: flex; flex-direction: column; gap: 8px; }
.dh-hero.d5 .d5-b1 {
  background: var(--hbk); color: var(--hgo); border: none;
  padding: 10px 16px; font-size: .82rem; font-weight: 700;
  cursor: pointer; font-family: var(--font); text-align: center;
  letter-spacing: .05em; text-decoration: none; display: block; transition: var(--tr);
}
.dh-hero.d5 .d5-b1:hover { background: var(--hg); }
.dh-hero.d5 .d5-b2 {
  background: none; border: 1px solid #ddd; color: #555;
  padding: 9px 16px; font-size: .82rem; cursor: pointer;
  font-family: var(--font); text-align: center; text-decoration: none;
  display: block; transition: var(--tr);
}
.dh-hero.d5 .d5-b2:hover { border-color: var(--hg); color: var(--hg); }
.dh-hero.d5 .d5-img { overflow: hidden; }
.dh-hero.d5 .dh-vslider { width: 200px; height: calc(90vh - 32px); }
.dh-hero.d5 .dh-vs-slide { height: calc(90vh - 32px); }
.dh-hero.d5 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d1a14,#176854); }

/* ── D6: Floating Cards Central ── */
.dh-hero.d6 {
  background: #0d1a14; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.dh-hero.d6 .d6-bg-word {
  position: absolute; font-size: clamp(80px,18vw,160px); font-weight: 900;
  color: rgba(255,255,255,.018); letter-spacing: -6px;
  pointer-events: none; user-select: none; font-family: var(--font);
  white-space: nowrap;
}
.dh-hero.d6 .d6-fc {
  position: absolute; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
  padding: 10px 14px; display: flex; align-items: center; gap: 9px;
  animation: fcFloat 3s ease-in-out infinite;
}
.dh-hero.d6 .d6-fc-ico { font-size: 18px; }
.dh-hero.d6 .d6-fc strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; font-family: var(--font); }
.dh-hero.d6 .d6-fc span { font-size: .7rem; color: rgba(255,255,255,.38); font-family: var(--font); }
@keyframes fcFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.dh-hero.d6 .d6-center {
  position: relative; z-index: 3; text-align: center; max-width: 480px; padding: 7rem 0 2rem;
}
.dh-hero.d6 .d6-icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1.5px solid rgba(23,104,84,.4); background: rgba(23,104,84,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 26px;
}
.dh-hero.d6 .h-badge { background: rgba(205,236,106,.1); color: var(--hgo); border: 1px solid rgba(205,236,106,.2); }
.dh-hero.d6 .h-title { font-size: clamp(2rem, 4.5vw, 3.5rem); color: #fff; }
.dh-hero.d6 .h-title em { color: var(--hgo); }
.dh-hero.d6 .h-desc { color: rgba(255,255,255,.4); }
.dh-hero.d6 .h-btns { justify-content: center; }
.dh-hero.d6 .d6-stats {
  position: relative; z-index: 3;
  display: flex; justify-content: center; gap: 28px; padding: 0 0 2rem;
}
.dh-hero.d6 .h-stat strong { color: var(--hgo); }
.dh-hero.d6 .h-stat { text-align: center; }
.dh-hero.d6 .h-stat span { color: rgba(255,255,255,.3); opacity: 1; }
.dh-hero.d6 .h-stat-sep { background: rgba(255,255,255,.1); }

/* ── D7: Side Panel Dark ── */
.dh-hero.d7 {
  min-height: 90vh; display: flex;
}
.dh-hero.d7 .d7-panel {
  width: 280px; background: var(--hbk); flex-shrink: 0;
  display: flex; flex-direction: column; padding: 36px 24px;
  position: relative; overflow: hidden;
}
.dh-hero.d7 .d7-panel-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(23,104,84,.2); pointer-events: none;
}
.dh-hero.d7 .d7-logo {
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.25);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: auto;
  font-family: var(--font);
}
.dh-hero.d7 .d7-panel-content { position: relative; z-index: 2; }
.dh-hero.d7 .d7-ph { font-size: .88rem; font-weight: 700; color: var(--hgo); margin-bottom: 5px; font-family: var(--font); }
.dh-hero.d7 .d7-pp { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 18px; font-family: var(--font); }
.dh-hero.d7 .d7-svcs { display: flex; flex-direction: column; gap: 3px; }
.dh-hero.d7 .d7-svc {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.05);
}
.dh-hero.d7 .d7-svc:last-child { border-bottom: none; }
.dh-hero.d7 .d7-svc-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--hg); flex-shrink: 0; }
.dh-hero.d7 .d7-svc span { font-size: .8rem; color: rgba(255,255,255,.5); font-family: var(--font); }
.dh-hero.d7 .d7-cta {
  display: block; text-align: center; background: var(--hg); color: var(--hgo);
  border: none; padding: 10px; border-radius: 8px; font-size: .82rem; font-weight: 700;
  cursor: pointer; font-family: var(--font); margin-top: 16px; text-decoration: none;
  transition: var(--tr);
}
.dh-hero.d7 .d7-cta:hover { background: var(--hgd); }
.dh-hero.d7 .d7-main {
  flex: 1; background: #fafaf8;
  display: flex; align-items: center; padding: 60px 40px;
}
.dh-hero.d7 .d7-main-inner { max-width: 380px; }
.dh-hero.d7 .d7-tag { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #999; margin-bottom: 10px; font-family: var(--font); }
.dh-hero.d7 .h-title { font-size: clamp(2rem, 3.5vw, 3.2rem); color: var(--hbk); }
.dh-hero.d7 .h-title em { color: var(--hg); }
.dh-hero.d7 .h-desc { color: #666; }
.dh-hero.d7 .h-stat strong { color: var(--hbk); }
.dh-hero.d7 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.d7 .h-stat-sep { background: #ddd; }
.dh-hero.d7 .dh-vslider { width: 220px; height: 90vh; border-left: 1px solid #eee; }
.dh-hero.d7 .dh-vs-slide { height: 90vh; }
.dh-hero.d7 .dh-vs-slide-ph { background: linear-gradient(135deg,#e8f4f0,#b8ddd0); }

/* ── D8: Retro Vintage ── */
.dh-hero.d8 {
  background: #1a1208; min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.d8 .d8-frame { position: absolute; inset: 14px; border: 1px solid rgba(205,236,106,.12); border-radius: 4px; pointer-events: none; }
.dh-hero.d8 .d8-corner { position: absolute; width: 22px; height: 22px; border-color: rgba(205,236,106,.4); border-style: solid; }
.dh-hero.d8 .d8-tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.dh-hero.d8 .d8-tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.dh-hero.d8 .d8-bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.dh-hero.d8 .d8-br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.dh-hero.d8 .d8-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 240px; gap: 28px;
  align-items: center; min-height: 90vh; width: 100%;
  padding: 0 32px;
}
.dh-hero.d8 .d8-stamp {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid rgba(205,236,106,.25); border-radius: 2px;
  padding: 3px 12px; margin-bottom: 12px;
}
.dh-hero.d8 .d8-stamp span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(205,236,106,.55); font-family: var(--font); }
.dh-hero.d8 .h-title { font-size: clamp(2rem, 4vw, 3.4rem); color: #f0e6c8; }
.dh-hero.d8 .h-title em { color: var(--hgo); font-style: normal; }
.dh-hero.d8 .d8-rule { width: 60px; height: 1px; background: rgba(205,236,106,.25); margin: 12px 0; }
.dh-hero.d8 .h-desc { color: rgba(240,230,200,.38); }
.dh-hero.d8 .d8-b1 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hgo); color: var(--hbk); border: none;
  padding: 10px 20px; border-radius: 3px; font-size: .82rem;
  font-weight: 700; cursor: pointer; font-family: var(--font);
  letter-spacing: .05em; text-decoration: none; transition: var(--tr);
}
.dh-hero.d8 .d8-b1:hover { opacity: .88; }
.dh-hero.d8 .d8-b2 {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid rgba(205,236,106,.22); color: rgba(205,236,106,.5);
  padding: 10px 16px; border-radius: 3px; font-size: .82rem;
  cursor: pointer; font-family: var(--font); text-decoration: none; transition: var(--tr);
}
.dh-hero.d8 .d8-b2:hover { border-color: rgba(205,236,106,.5); color: var(--hgo); }
.dh-hero.d8 .h-stat strong { color: var(--hgo); }
.dh-hero.d8 .h-stat span { color: rgba(240,230,200,.28); opacity: 1; }
.dh-hero.d8 .h-stat-sep { background: rgba(205,236,106,.1); }
.dh-hero.d8 .d8-right {
  display: flex; flex-direction: column; gap: 8px;
}
.dh-hero.d8 .d8-card {
  border: 1px solid rgba(205,236,106,.1); border-radius: 3px;
  padding: 12px 14px; background: rgba(255,255,255,.03);
}
.dh-hero.d8 .d8-card-lbl { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(205,236,106,.38); margin-bottom: 4px; font-family: var(--font); }
.dh-hero.d8 .d8-card-val { font-size: 1.5rem; font-weight: 700; color: #f0e6c8; font-family: var(--font); }
.dh-hero.d8 .d8-img { overflow: hidden; border-radius: 3px; border: 1px solid rgba(205,236,106,.1); }
.dh-hero.d8 .dh-vslider { width: 100%; height: 120px; }
.dh-hero.d8 .dh-vs-slide { height: 120px; }
.dh-hero.d8 .dh-vs-slide-ph { background: linear-gradient(160deg,#2a1e0a,#1a1208); }

/* ── D9: Card Mosaic ── */
.dh-hero.d9 {
  min-height: 90vh; display: flex;
}
.dh-hero.d9 .d9-left {
  width: 44%; background: #fff; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px; border-right: 1px solid #eee;
}
.dh-hero.d9 .d9-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: #eaf5ef; border-radius: 100px; padding: 4px 12px; margin-bottom: 12px;
}
.dh-hero.d9 .d9-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--hg); }
.dh-hero.d9 .d9-chip span { font-size: .68rem; color: var(--hg); font-weight: 600; letter-spacing: .06em; font-family: var(--font); }
.dh-hero.d9 .h-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--hbk); }
.dh-hero.d9 .h-title mark { background: var(--hgo); color: var(--hbk); padding: 0 5px; font-style: normal; }
.dh-hero.d9 .h-desc { color: #666; font-size: .9rem; }
.dh-hero.d9 .h-stat strong { color: var(--hbk); }
.dh-hero.d9 .h-stat span { color: #bbb; opacity: 1; }
.dh-hero.d9 .h-stat-sep { background: #ddd; }
.dh-hero.d9 .d9-trust {
  font-size: .78rem; color: #bbb;
  display: flex; align-items: center; gap: 8px;
}
.dh-hero.d9 .d9-stars { color: #f59e0b; letter-spacing: 1px; font-size: 13px; }
.dh-hero.d9 .d9-right {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.dh-hero.d9 .d9-cell {
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.dh-hero.d9 .d9-c1 { background: var(--hg); }
.dh-hero.d9 .d9-c2 { background: #0d1a14; }
.dh-hero.d9 .d9-c3 { background: var(--hgo); flex-direction: column; gap: 4px; }
.dh-hero.d9 .d9-c3 strong { font-size: 1.3rem; font-weight: 800; color: var(--hbk); font-family: var(--font); }
.dh-hero.d9 .d9-c3 span { font-size: .65rem; color: rgba(0,0,0,.45); font-family: var(--font); }
.dh-hero.d9 .d9-c4 { }
.dh-hero.d9 .dh-vslider { width: 100%; height: 100%; }
.dh-hero.d9 .dh-vs-slide { height: 100%; }
.dh-hero.d9 .dh-vs-slide-ph { background: linear-gradient(160deg,#0d2a1e,#176854); }

/* ── D10: Timeline Process ── */
.dh-hero.d10 {
  background: #0a0a12; min-height: 90vh; display: flex; align-items: center;
}
.dh-hero.d10 .d10-inner {
  display: grid; grid-template-columns: 1fr 320px;
  min-height: 90vh; align-items: center; width: 100%;
}
.dh-hero.d10 .d10-left { padding: 80px 40px 80px 0; }
.dh-hero.d10 .d10-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(99,102,241,.3); background: rgba(99,102,241,.1);
  border-radius: 100px; padding: 4px 14px; margin-bottom: 14px;
}
.dh-hero.d10 .d10-badge span { font-size: .68rem; color: #a5b4fc; letter-spacing: .08em; font-family: var(--font); }
.dh-hero.d10 .h-title { font-size: clamp(2rem, 4vw, 3.5rem); color: #fff; }
.dh-hero.d10 .h-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--hgo), #a5f3a0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dh-hero.d10 .h-desc { color: rgba(255,255,255,.35); }
.dh-hero.d10 .h-stat strong { color: var(--hgo); }
.dh-hero.d10 .h-stat span { color: rgba(255,255,255,.25); opacity: 1; }
.dh-hero.d10 .h-stat-sep { background: rgba(255,255,255,.08); }
.dh-hero.d10 .d10-right {
  height: 90vh; border-left: 1px solid rgba(255,255,255,.05);
  padding: 60px 28px; display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.dh-hero.d10 .d10-label {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: rgba(255,255,255,.22); margin-bottom: 18px;
  font-family: var(--font);
}
.dh-hero.d10 .d10-steps { display: flex; flex-direction: column; }
.dh-hero.d10 .d10-step { display: flex; align-items: flex-start; gap: 12px; }
.dh-hero.d10 .d10-step-n {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(205,236,106,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--hgo); flex-shrink: 0;
  font-family: var(--font);
}
.dh-hero.d10 .d10-step-n.done { background: var(--hg); border-color: var(--hg); color: #fff; }
.dh-hero.d10 .d10-step-body { flex: 1; padding-bottom: 16px; }
.dh-hero.d10 .d10-step-title { font-size: .88rem; font-weight: 600; color: #fff; margin-bottom: 2px; font-family: var(--font); }
.dh-hero.d10 .d10-step-sub { font-size: .75rem; color: rgba(255,255,255,.28); font-family: var(--font); }
.dh-hero.d10 .d10-conn { width: 1px; height: 18px; background: rgba(255,255,255,.07); margin: 0 0 0 14px; }
.dh-hero.d10 .d10-slider-wrap { margin-top: 16px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.dh-hero.d10 .dh-vslider { width: 100%; height: 90px; }
.dh-hero.d10 .dh-vs-slide { height: 90px; }
.dh-hero.d10 .dh-vs-slide-ph { background: rgba(23,104,84,.18); }

/* ══════════════════════════════════════════════
   FLOAT CARDS (shared)
══════════════════════════════════════════════ */
.dh-float-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 9px;
  z-index: 5;
}
.dh-float-card .fc-ico { font-size: 18px; }
.dh-float-card strong { display: block; font-size: .82rem; font-weight: 700; color: #fff; font-family: var(--font); }
.dh-float-card span { font-size: .7rem; color: rgba(255,255,255,.4); font-family: var(--font); }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .dh-hero.l1 .l1-inner,
  .dh-hero.l3 .l3-inner,
  .dh-hero.l4 .l4-inner,
  .dh-hero.l5 .l5-inner,
  .dh-hero.l6 .l6-inner,
  .dh-hero.l7 .l7-inner,
  .dh-hero.l8 .l8-inner,
  .dh-hero.d1 .d1-inner,
  .dh-hero.d10 .d10-inner { grid-template-columns: 1fr !important; }
  .dh-hero.l1 .dh-vslider,
  .dh-hero.l3 .dh-vslider,
  .dh-hero.l4 .dh-vslider,
  .dh-hero.l5 .dh-vslider,
  .dh-hero.l6 .dh-vslider,
  .dh-hero.l7 .dh-vslider,
  .dh-hero.l8 .dh-vslider,
  .dh-hero.d10 .d10-right { display: none !important; }
  .dh-hero.d2 .d2-grid { grid-template-columns: 60px 1fr !important; }
  .dh-hero.d2 .d2-right { display: none !important; }
  .dh-hero.d5 .d5-cols { grid-template-columns: 1fr 1px 1fr !important; }
  .dh-hero.d5 .d5-img { display: none !important; }
  .dh-hero.d7 .dh-vslider { display: none !important; }
  .dh-hero.d4 .d4-left { width: 100% !important; }
  .dh-hero.d4 { flex-direction: column !important; }
}
@media (max-width: 768px) {
  .dh-hero.d2 .d2-grid { grid-template-columns: 1fr !important; }
  .dh-hero.d2 .d2-sidebar { display: none !important; }
  .dh-hero.d5 .d5-cols { grid-template-columns: 1fr !important; }
  .dh-hero.d5 .d5-divider { display: none !important; }
  .dh-hero.d9 { flex-direction: column !important; }
  .dh-hero.d9 .d9-left { width: 100% !important; }
  .dh-hero.d9 .d9-right { min-height: 300px; }
  .dh-hero.d7 { flex-direction: column !important; }
  .dh-hero.d7 .d7-panel { width: 100% !important; min-height: auto !important; }
  .h-title { font-size: clamp(1.8rem, 6vw, 2.8rem) !important; }
  .h-btns { flex-wrap: wrap; }
  .dh-hero.l2 .h-title { font-size: clamp(2rem, 8vw, 3.5rem) !important; }
}
