/* ============================================================
   Darlo Higher Education — Fragment-native stylesheet
   ──────────────────────────────────────────────────────────────
   Pixel-parity with the original dark-slate / blue design,
   rebuilt as semantic classes (no utility-class system, no
   Tailwind, no React DNA).

   Sections (in order):
     0. Reset + variables
     1. Body + typography
     2. Layout containers
     3. Nav
     4. Buttons
     5. Hero
     6. Service cards / grids
     7. CTA section
     8. Footer
     9. Legal pages (privacy/terms/refund)
    10. Light-mode overrides
   ============================================================ */

/* ── 0. Reset + variables ───────────────────────────────────── */
:root{
  --bg:#0f172a;          /* page bg (slate-900) */
  --bg-soft:#1e293b;     /* card bg (slate-800) */
  --bg-softer:#334155;   /* deep card bg (slate-700) */
  --bg-glass:rgba(15,23,42,.95);
  --border:#334155;
  --border-soft:#475569;
  --text:#ffffff;
  --text-muted:#cbd5e1;  /* slate-300 */
  --text-dim:#94a3b8;    /* slate-400 */
  --text-faint:#64748b;  /* slate-500 */
  --accent:#60a5fa;      /* blue-400 */
  --accent-hover:#3b82f6;/* blue-500 */
  --brand:#2563eb;       /* blue-600 */
  --brand-hover:#1d4ed8; /* blue-700 */
  --brand-bg:#1e3a8a;    /* blue-900 */
  --brand-bg-soft:rgba(30,58,138,.5);
  --brand-text:#93c5fd;  /* blue-300 */
  --success:#4ade80;     /* green-400 */
  --success-bg:rgba(20,83,45,.3);
  --success-border:rgba(21,128,61,.5);
  --radius:8px;
  --radius-lg:12px;
  --radius-xl:16px;
  --max:1280px;
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-6:24px;
  --space-8:32px;
  --space-12:48px;
  --space-16:64px;
  --space-20:80px;
}
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

/* ── 1. Typography ──────────────────────────────────────────── */
h1,h2,h3,h4{margin:0 0 var(--space-4) 0;line-height:1.2;font-weight:700}
h1{font-size:3rem}
h2{font-size:2rem}
h3{font-size:1.25rem}
h4{font-size:1rem}
p{margin:0 0 var(--space-4) 0}
a{color:var(--accent);text-decoration:none}
a:hover{color:var(--accent-hover)}
strong{font-weight:600;color:var(--text)}
em{font-style:italic}

/* ── 2. Layout containers ───────────────────────────────────── */
.dhe-page{min-height:100vh;display:flex;flex-direction:column}
.dhe-container{max-width:var(--max);margin:0 auto;padding:0 var(--space-4)}
@media (min-width:640px){.dhe-container{padding:0 var(--space-6)}}
@media (min-width:1024px){.dhe-container{padding:0 var(--space-8)}}
.dhe-main{flex:1;display:flex;flex-direction:column}
.dhe-section{padding:var(--space-16) 0}
.dhe-section--lg{padding:var(--space-20) 0}
.dhe-section--soft{background:var(--bg-soft)}
.dhe-section--brand{background:var(--brand);color:#fff;position:relative;overflow:hidden}

/* ── 3. Nav ─────────────────────────────────────────────────── */
.dhe-nav{
  position:sticky;top:0;z-index:50;
  background:var(--bg-glass);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  transition:background .3s,border-color .3s;
}
.dhe-nav__inner{display:flex;justify-content:space-between;align-items:center;height:64px}
.dhe-nav__brand{display:flex;align-items:center;color:var(--text);font-weight:700;font-size:1.25rem}
.dhe-nav__brand-icon{width:32px;height:32px;margin-right:var(--space-2);color:var(--accent)}
.dhe-nav__links{display:none;align-items:center;gap:var(--space-6)}
@media (min-width:768px){.dhe-nav__links{display:flex}}
.dhe-nav__link{color:var(--text-muted);font-size:.875rem;transition:color .15s}
.dhe-nav__link:hover{color:var(--accent)}
.dhe-nav__link--active{color:var(--accent);font-weight:600}
@media (min-width:1024px){.dhe-nav__link{font-size:1rem}}
.dhe-nav__cta{
  background:var(--brand);color:#fff;
  padding:var(--space-2) var(--space-4);
  border-radius:var(--radius);
  font-size:.875rem;font-weight:500;
  transition:background .15s;
}
@media (min-width:1024px){.dhe-nav__cta{padding:var(--space-2) var(--space-6);font-size:1rem}}
.dhe-nav__cta:hover{background:var(--brand-hover);color:#fff}
.dhe-nav__theme-btn{
  background:var(--bg-soft);color:#facc15;
  padding:var(--space-2);border:0;border-radius:var(--radius);
  cursor:pointer;display:inline-flex;align-items:center;justify-content:center;
}
.dhe-nav__theme-btn svg{width:20px;height:20px}
.dhe-nav__mobile-only{display:flex;align-items:center;gap:var(--space-2)}
@media (min-width:768px){.dhe-nav__mobile-only{display:none}}

/* ── 4. Buttons ─────────────────────────────────────────────── */
.dhe-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:var(--space-4) var(--space-8);
  border-radius:var(--radius);font-size:1.125rem;font-weight:600;
  text-decoration:none;cursor:pointer;border:0;
  transition:background .15s,border-color .15s,color .15s;
}
.dhe-btn--primary{background:var(--brand);color:#fff}
.dhe-btn--primary:hover{background:var(--brand-hover);color:#fff}
.dhe-btn--secondary{background:transparent;color:var(--text-muted);border:1px solid var(--border-soft)}
.dhe-btn--secondary:hover{background:var(--bg-soft);color:var(--text-muted)}
.dhe-btn--brand-inverse{background:#fff;color:var(--brand)}
.dhe-btn--brand-inverse:hover{background:#f3f4f6;color:var(--brand)}
.dhe-btn__arrow{margin-left:var(--space-2);width:20px;height:20px}

/* ── 5. Hero ────────────────────────────────────────────────── */
.dhe-hero{
  padding:var(--space-8) 0;
  background:linear-gradient(to bottom right,var(--bg-soft),var(--bg));
  transition:background .3s;
}
@media (min-width:640px){.dhe-hero{padding:var(--space-16) 0}}
@media (min-width:1024px){.dhe-hero{padding:var(--space-20) 0}}
.dhe-hero__grid{display:grid;grid-template-columns:1fr;gap:var(--space-8);align-items:center}
@media (min-width:1024px){.dhe-hero__grid{grid-template-columns:1fr 1fr;gap:var(--space-12)}}
.dhe-hero__tags{display:flex;flex-wrap:wrap;gap:var(--space-2);margin-bottom:var(--space-6)}
@media (max-width:639px){.dhe-hero__tags{display:none}}
.dhe-hero__tag{
  padding:var(--space-2) var(--space-4);
  border-radius:9999px;font-size:.875rem;font-weight:500;
}
.dhe-hero__tag--primary{background:var(--brand-bg-soft);color:var(--brand-text)}
.dhe-hero__tag--muted{background:var(--bg-softer);color:var(--text-muted)}
.dhe-hero__title{font-size:2rem;font-weight:700;margin-bottom:var(--space-4)}
@media (min-width:640px){.dhe-hero__title{font-size:2.5rem}}
@media (min-width:768px){.dhe-hero__title{font-size:3.75rem;margin-bottom:var(--space-6)}}
.dhe-hero__title em{font-style:normal;color:var(--accent)}
.dhe-hero__intro{font-size:1.125rem;color:var(--text-muted);margin-bottom:var(--space-6)}
@media (min-width:640px){.dhe-hero__intro{font-size:1.25rem;margin-bottom:var(--space-8)}}
.dhe-hero__actions{display:flex;flex-direction:column;gap:var(--space-4);margin-bottom:var(--space-8)}
@media (min-width:640px){.dhe-hero__actions{flex-direction:row}}
.dhe-hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-6)}
.dhe-hero__stat{text-align:center;padding:var(--space-4);border-radius:var(--radius);border:1px solid var(--border)}
.dhe-hero__stat--primary{background:rgba(30,58,138,.3);border-color:rgba(29,78,216,.5)}
.dhe-hero__stat--neutral{background:var(--bg-soft);border-color:var(--border-soft)}
.dhe-hero__stat--success{background:var(--success-bg);border-color:var(--success-border)}
.dhe-hero__stat-value{font-size:1.5rem;font-weight:700}
.dhe-hero__stat-value--primary{color:var(--accent)}
.dhe-hero__stat-value--neutral{color:var(--text-muted)}
.dhe-hero__stat-value--success{color:var(--success)}
.dhe-hero__stat-label{color:var(--text-dim);font-size:.875rem;margin-top:var(--space-2)}
.dhe-hero__image-wrap{position:relative}
.dhe-hero__image{width:100%;border-radius:var(--radius-xl);box-shadow:0 25px 50px -12px rgba(0,0,0,.5);display:block}
.dhe-hero__badge-card{
  position:absolute;bottom:-24px;right:-24px;
  background:var(--bg-soft);border:1px solid var(--border);
  border-radius:var(--radius);box-shadow:0 10px 25px rgba(0,0,0,.3);
  padding:var(--space-4);display:block;
  transition:transform .15s;
}
.dhe-hero__badge-card:hover{transform:scale(1.05)}
.dhe-hero__badge-label{font-size:.875rem;color:var(--text-dim)}
.dhe-hero__badge-value{font-size:1.5rem;font-weight:700;color:var(--brand)}
.dhe-hero__chips{position:absolute;top:var(--space-4);left:var(--space-4);display:flex;flex-direction:column;gap:var(--space-2)}
.dhe-hero__chip{
  background:rgba(0,0,0,.7);backdrop-filter:blur(8px);
  color:#fff;padding:var(--space-3) var(--space-3);
  border-radius:9999px;font-size:.875rem;font-weight:500;
}

/* ── 6. Service cards / grids ──────────────────────────────── */
.dhe-grid{display:grid;gap:var(--space-8);grid-template-columns:1fr}
@media (min-width:768px){.dhe-grid--2{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.dhe-grid--3{grid-template-columns:repeat(3,1fr)}}
@media (min-width:1024px){.dhe-grid--4{grid-template-columns:repeat(4,1fr)}}
.dhe-section__head{text-align:center;margin-bottom:var(--space-16)}
.dhe-section__title{font-size:1.875rem;font-weight:700;margin-bottom:var(--space-4)}
@media (min-width:768px){.dhe-section__title{font-size:2.25rem}}
.dhe-section__intro{font-size:1.25rem;color:var(--text-muted);max-width:48rem;margin:0 auto}
.dhe-card{
  background:var(--bg-soft);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:var(--space-8);
  transition:border-color .15s,transform .15s,box-shadow .15s;
}
.dhe-card:hover{box-shadow:0 25px 50px -12px rgba(0,0,0,.4)}
.dhe-card__icon{width:32px;height:32px;color:var(--brand);margin-bottom:var(--space-4)}
.dhe-card__title{font-size:1.25rem;font-weight:700;margin-bottom:var(--space-3)}
.dhe-card__body{color:var(--text-muted);margin-bottom:var(--space-4)}
.dhe-card__meta{display:flex;justify-content:space-between;align-items:center}
.dhe-card__tag{
  background:var(--brand-bg-soft);color:var(--brand-text);
  padding:var(--space-2) var(--space-3);border-radius:9999px;font-size:.75rem;
}
.dhe-card__tag-right{font-size:.875rem;font-weight:500;color:var(--text-dim)}

/* ── 7. CTA section ─────────────────────────────────────────── */
.dhe-cta{padding:var(--space-16) 0;background:var(--brand);position:relative;overflow:hidden;color:#fff}
.dhe-cta__bg{
  position:absolute;inset:0;opacity:.1;
  background-image:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.dhe-cta__inner{position:relative;z-index:10;text-align:center}
.dhe-cta__title{font-size:1.875rem;font-weight:700;margin-bottom:var(--space-6);color:#fff}
@media (min-width:768px){.dhe-cta__title{font-size:2.25rem}}
.dhe-cta__intro{font-size:1.25rem;max-width:48rem;margin:0 auto var(--space-8);color:#dbeafe}
.dhe-cta__stats{display:grid;grid-template-columns:1fr;gap:var(--space-8);max-width:64rem;margin:0 auto var(--space-8)}
@media (min-width:768px){.dhe-cta__stats{grid-template-columns:repeat(3,1fr)}}
.dhe-cta__stat-value{font-size:2.25rem;font-weight:700;color:#fff;margin-bottom:var(--space-2)}
.dhe-cta__stat-label{color:#bfdbfe}

/* ── 8. Footer ──────────────────────────────────────────────── */
.dhe-footer{border-top:1px solid var(--border);background:var(--bg);transition:background .3s,border-color .3s}
.dhe-footer__inner{padding:var(--space-12) 0}
.dhe-footer__cols{display:grid;grid-template-columns:1fr;gap:var(--space-8);margin-bottom:var(--space-8)}
@media (min-width:768px){.dhe-footer__cols{grid-template-columns:repeat(4,1fr)}}
.dhe-footer__brand{display:flex;align-items:center;margin-bottom:var(--space-3)}
.dhe-footer__brand-icon{width:28px;height:28px;margin-right:var(--space-2);color:var(--accent)}
.dhe-footer__brand-name{font-size:1.125rem;font-weight:700;color:var(--text)}
.dhe-footer__tagline{font-size:.875rem;color:var(--text-dim)}
.dhe-footer__col-title{font-weight:600;margin-bottom:var(--space-4);color:var(--text)}
.dhe-footer__list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:var(--space-3)}
.dhe-footer__list a{font-size:.875rem;color:var(--text-dim)}
.dhe-footer__list a:hover{color:var(--accent-hover)}
.dhe-footer__divider{border-top:1px solid var(--border-soft);margin-bottom:var(--space-6)}
.dhe-footer__copyright{font-size:.875rem;text-align:center;color:var(--text-faint)}

/* ── 9. Legal pages ─────────────────────────────────────────── */
.dhe-legal{padding:var(--space-16) 0}
.dhe-legal__entity-banner{
  background:rgba(59,130,246,.08);
  border:1px solid rgba(59,130,246,.25);
  border-radius:var(--radius);
  padding:var(--space-3) var(--space-4);
  margin:var(--space-4) auto;
  max-width:48rem;
  font-size:.875rem;
  color:var(--text-muted);
  text-align:center;
}
.dhe-legal__entity-banner strong{color:var(--text)}
.dhe-legal__inner{max-width:48rem;margin:0 auto;padding:0 var(--space-6)}
.dhe-legal__title{font-size:1.875rem;font-weight:700;margin-bottom:var(--space-2)}
.dhe-legal__meta{font-size:.875rem;color:var(--text-dim);margin-bottom:var(--space-8)}
.dhe-legal__body{color:var(--text-muted);line-height:1.7}
.dhe-legal__body h2{font-size:1.25rem;font-weight:700;margin-top:var(--space-8);margin-bottom:var(--space-4);color:var(--text)}
.dhe-legal__body p{margin-bottom:var(--space-6)}
.dhe-legal__body ul{padding-left:var(--space-6);margin-bottom:var(--space-6)}
.dhe-legal__body li{margin-bottom:var(--space-2)}
.dhe-legal__body a{color:var(--accent)}
.dhe-legal__body a:hover{color:var(--accent-hover)}

/* ── 10. Blog index + post ──────────────────────────────────── */
.dhe-blog-grid{display:grid;grid-template-columns:1fr;gap:var(--space-6)}
@media (min-width:768px){.dhe-blog-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.dhe-blog-grid{grid-template-columns:repeat(3,1fr)}}
.dhe-blog-empty{color:var(--text-dim)}

.dhe-blog-card{
  display:block;
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  transition:border-color .15s,transform .15s,box-shadow .15s;
}
.dhe-blog-card:hover{
  border-color:var(--accent-hover);
  transform:translateY(-2px);
  color:inherit;
}
.dhe-blog-card__img{
  height:200px;
  background-size:cover;
  background-position:center;
  background-color:#0f172a;
}
.dhe-blog-card__body{padding:var(--space-6) 20px}
.dhe-blog-card__tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  color:var(--accent);
  background:rgba(59,130,246,.12);
  padding:4px 10px;
  border-radius:99px;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:var(--space-3);
}
.dhe-blog-card__title{
  font-size:1.125rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 var(--space-2);
  line-height:1.3;
}
.dhe-blog-card__date{
  font-size:.8125rem;
  color:var(--text-faint);
  margin:0 0 10px;
}
.dhe-blog-card__excerpt{
  font-size:.875rem;
  color:var(--text-muted);
  line-height:1.5;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin:0;
}

/* Blog post page */
.dhe-post-hero{
  width:100%;
  height:380px;
  background-size:cover;
  background-position:center;
  background-color:#0f172a;
}
@media (max-width:768px){.dhe-post-hero{height:240px}}
.dhe-post-article{
  max-width:48rem;
  margin:0 auto;
  padding:var(--space-12) var(--space-6);
}
.dhe-post__back-link{
  color:var(--accent);
  font-size:.875rem;
  text-decoration:none;
}
.dhe-post__back-link:hover{color:var(--accent-hover)}
.dhe-post__tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  color:var(--accent);
  background:rgba(59,130,246,.12);
  padding:4px 12px;
  border-radius:99px;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-top:18px;
}
.dhe-post__title{
  font-size:2.125rem;
  font-weight:800;
  color:var(--text);
  margin:14px 0 0;
  line-height:1.2;
  letter-spacing:-0.01em;
}
.dhe-post__meta{
  display:flex;
  align-items:center;
  gap:14px;
  margin:18px 0 0;
  font-size:.875rem;
  color:var(--text-dim);
}
.dhe-post-body{
  color:var(--text-muted);
  font-size:19px;
  line-height:1.7;
  /* System sans for screen readability — matches the rest of the site */
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  letter-spacing:-0.003em;
  margin-top:var(--space-8);
}
.dhe-post-body h1,
.dhe-post-body h2,
.dhe-post-body h3,
.dhe-post-body h4{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color:var(--text);
  font-weight:700;
  line-height:1.25;
  margin:36px 0 14px;
}
.dhe-post-body h1{font-size:2rem}
.dhe-post-body h2{font-size:1.625rem;border-bottom:1px solid var(--border);padding-bottom:8px}
.dhe-post-body h3{font-size:1.3125rem}
.dhe-post-body h4{font-size:1.125rem;color:var(--text-muted)}
.dhe-post-body p{margin:0 0 18px}
.dhe-post-body strong{color:var(--text);font-weight:700}
.dhe-post-body em{font-style:italic}
.dhe-post-body a{text-decoration:underline}
.dhe-post-body a.int-link{color:var(--accent)}
.dhe-post-body a.int-link:hover{color:#93c5fd}
.dhe-post-body a.ext-link{color:#34d399}
.dhe-post-body a.ext-link:hover{color:#6ee7b7}
.dhe-post-body .ext-arrow{display:inline-block;font-size:.85em;margin-left:2px;text-decoration:none}
.dhe-post-body ul,.dhe-post-body ol{margin:0 0 18px;padding-left:24px}
.dhe-post-body li{margin:6px 0}
.dhe-post-body code{
  background:var(--bg-soft);
  padding:2px 6px;
  border-radius:4px;
  font-family:ui-monospace,Menlo,Monaco,monospace;
  font-size:14px;
  color:#fbbf24;
}
.dhe-post-body pre{
  background:var(--bg-soft);
  padding:16px;
  border-radius:var(--radius);
  overflow-x:auto;
  margin:16px 0;
}
.dhe-post-body pre code{background:transparent;padding:0;color:var(--text-muted)}

/* CTA card after the article body */
.dhe-post-cta{max-width:48rem;margin:var(--space-12) auto var(--space-16);padding:0 var(--space-6)}
.dhe-post-cta__card{
  background:linear-gradient(135deg,#1e3a8a 0%,#1e293b 100%);
  border:1px solid var(--border);
  border-radius:14px;
  padding:36px 32px;
  text-align:center;
}
.dhe-post-cta__badge{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  color:var(--accent);
  background:rgba(255,255,255,.06);
  padding:5px 12px;
  border-radius:99px;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:14px;
}
.dhe-post-cta__title{
  font-size:1.625rem;
  font-weight:700;
  color:var(--text);
  margin:0 0 10px;
  line-height:1.25;
}
.dhe-post-cta__intro{
  color:var(--text-muted);
  font-size:1rem;
  margin:0 0 var(--space-6);
  line-height:1.6;
}
.dhe-post-cta__actions{display:flex;gap:var(--space-3);justify-content:center;flex-wrap:wrap}
.dhe-post-cta__btn-primary{
  background:var(--brand);
  color:#fff;
  padding:12px 28px;
  border-radius:var(--radius);
  font-weight:600;
  font-size:.9375rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.dhe-post-cta__btn-primary:hover{background:var(--brand-hover);color:#fff}
.dhe-post-cta__btn-secondary{
  background:transparent;
  color:var(--text-muted);
  padding:12px 28px;
  border-radius:var(--radius);
  font-weight:500;
  font-size:.9375rem;
  text-decoration:none;
  border:1px solid var(--border-soft);
}
.dhe-post-cta__btn-secondary:hover{background:var(--bg-soft);color:var(--text-muted)}

/* 404 (post not found) */
.dhe-blog-404{min-height:60vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:var(--space-6)}
.dhe-blog-404__title{font-size:1.875rem;font-weight:700;color:var(--text);margin:0 0 var(--space-2)}
.dhe-blog-404__intro{color:var(--text-dim);margin:0 0 var(--space-6)}

/* ── 11. Image header (about/governance/teqsa/contact) ───── */
.dhe-image-header{position:relative;height:16rem;overflow:hidden}
@media (min-width:768px){.dhe-image-header{height:20rem}}
.dhe-image-header__img{width:100%;height:100%;object-fit:cover;display:block}
.dhe-image-header__overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(15,23,42,.9),rgba(15,23,42,.7))}
.dhe-image-header__overlay--brand{background:linear-gradient(to right,rgba(30,58,138,.9),rgba(30,58,138,.7))}
.dhe-image-header__inner{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;padding:0 var(--space-6);text-align:center}
.dhe-image-header__title{font-size:2rem;font-weight:700;color:#fff;margin:0 0 var(--space-4)}
@media (min-width:768px){.dhe-image-header__title{font-size:3rem}}
.dhe-image-header__intro{font-size:1.25rem;max-width:48rem;margin:0 auto;color:var(--text-muted)}
.dhe-image-header__intro--brand{color:#dbeafe}

/* ── 12. About page specifics ────────────────────────────── */
.dhe-about{padding:var(--space-12) 0}
.dhe-about__intro{display:grid;grid-template-columns:1fr;gap:var(--space-12);align-items:center;margin-bottom:var(--space-16)}
@media (min-width:768px){.dhe-about__intro{grid-template-columns:repeat(2,1fr)}}
.dhe-about__hero-text h1{font-size:2.25rem;color:#fff}
@media (min-width:768px){.dhe-about__hero-text h1{font-size:3rem}}
.dhe-about__hero-text p{font-size:1.25rem;color:var(--text-muted)}
.dhe-about__hero-image{position:relative}
.dhe-about__hero-image img{border-radius:var(--radius-xl);box-shadow:0 25px 50px -12px rgba(0,0,0,.4);width:100%;display:block}
.dhe-about__hero-tag{
  position:absolute;bottom:-1rem;left:-1rem;
  padding:var(--space-2) var(--space-4);
  border-radius:var(--radius);
  background:var(--brand);color:#fff;font-weight:600;
  box-shadow:0 10px 15px -3px rgba(0,0,0,.3);
}
.dhe-stat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-6);margin-bottom:var(--space-16)}
@media (min-width:768px){.dhe-stat-grid{grid-template-columns:repeat(4,1fr)}}
.dhe-stat-tile{
  text-align:center;
  padding:var(--space-6);
  border-radius:var(--radius-lg);
  background:var(--bg-soft);
  border:1px solid var(--border);
}
.dhe-stat-tile__value{font-size:1.875rem;font-weight:700;color:var(--accent);margin-bottom:var(--space-2)}
.dhe-stat-tile__label{color:var(--text-dim)}

/* ── 13. Split-card (image + content side by side) ────────── */
.dhe-split-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin-bottom:var(--space-12);
  background:var(--bg-soft);
  border:1px solid var(--border);
  display:grid;
  grid-template-columns:1fr;
}
@media (min-width:768px){.dhe-split-card--2-3{grid-template-columns:2fr 3fr}}
@media (min-width:768px){.dhe-split-card--3-2{grid-template-columns:3fr 2fr}}
.dhe-split-card__image img{width:100%;height:100%;object-fit:cover;display:block}
.dhe-split-card__body{padding:var(--space-8)}
.dhe-split-card__title{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:var(--space-6)}
.dhe-split-card__list{display:flex;flex-direction:column;gap:var(--space-6)}
.dhe-split-card__list h3{font-size:1.25rem;font-weight:600;color:var(--accent);margin-bottom:var(--space-3);display:flex;align-items:center;gap:var(--space-2)}
.dhe-split-card__list p{color:var(--text-muted);margin:0}

/* ── 14. Banner card (image with title overlay) ──────────── */
.dhe-banner-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin-bottom:var(--space-12);
  background:var(--bg-soft);
  border:1px solid var(--border);
}
.dhe-banner-card__hero{position:relative;height:12rem}
@media (min-width:768px){.dhe-banner-card__hero{height:16rem}}
.dhe-banner-card__hero img{width:100%;height:100%;object-fit:cover;display:block}
.dhe-banner-card__hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.7),transparent)}
.dhe-banner-card__hero-title{position:absolute;bottom:var(--space-6);left:var(--space-8);font-size:1.5rem;font-weight:700;color:#fff;margin:0}
.dhe-banner-card__body{padding:var(--space-8)}
.dhe-banner-card__body p{font-size:1.125rem;color:var(--text-muted);margin-bottom:var(--space-6)}

/* ── 15. Checklist (icon + text rows) ─────────────────────── */
.dhe-checklist{display:flex;flex-direction:column;gap:var(--space-3)}
.dhe-checklist--grid{display:grid;grid-template-columns:1fr;gap:var(--space-4)}
@media (min-width:768px){.dhe-checklist--grid{grid-template-columns:repeat(2,1fr)}}
.dhe-checklist__item{display:flex;align-items:flex-start;gap:var(--space-3);color:var(--text-muted)}
.dhe-checklist__icon{width:20px;height:20px;flex-shrink:0;color:var(--success);margin-top:2px}
.dhe-checklist__item strong{color:#fff}

/* ── 16. Page CTA (centered button at end of page) ────────── */
.dhe-page-cta{text-align:center;padding:var(--space-8) 0}

/* ── 17. Feature banner (book/showcase block) ────────────── */
.dhe-feature-banner{
  border-radius:var(--radius-xl);
  overflow:hidden;
  margin-bottom:var(--space-12);
  background:linear-gradient(to right,rgba(30,58,138,.5),var(--bg-soft));
  border:1px solid rgba(29,78,216,.5);
  display:grid;
  grid-template-columns:1fr;
}
@media (min-width:768px){.dhe-feature-banner{grid-template-columns:2fr 1fr}}
.dhe-feature-banner__body{padding:var(--space-8)}
.dhe-feature-banner__pill{
  display:inline-block;
  padding:var(--space-2) var(--space-3);
  border-radius:9999px;
  font-size:.875rem;font-weight:500;
  background:var(--brand);color:#fff;
  margin-bottom:var(--space-4);
}
.dhe-feature-banner__title{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:var(--space-4)}
@media (min-width:768px){.dhe-feature-banner__title{font-size:1.875rem}}
.dhe-feature-banner__byline{font-size:1.125rem;color:var(--text-muted);margin-bottom:var(--space-4)}
.dhe-feature-banner__byline strong{color:#fff}
.dhe-feature-banner__intro{color:var(--text-muted);margin-bottom:var(--space-6)}
.dhe-feature-banner__chips{display:flex;flex-wrap:wrap;gap:var(--space-4);color:var(--text-dim);font-size:.875rem}
.dhe-feature-banner__chip{display:inline-flex;align-items:center;gap:var(--space-2)}
.dhe-feature-banner__image{position:relative}
.dhe-feature-banner__image img{width:100%;height:100%;object-fit:cover;display:block}
.dhe-feature-banner__image-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.5),transparent)}
.dhe-feature-banner__image-tag{
  position:absolute;bottom:var(--space-4);left:var(--space-4);right:var(--space-4);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(8px);
  border-radius:var(--radius);
  padding:var(--space-2) var(--space-4);
  text-align:center;
  font-size:.875rem;font-weight:500;color:#1f2937;
}

/* ── 18. Mini-card (sub-card inside a card) ─────────────── */
.dhe-mini-grid{display:grid;grid-template-columns:1fr;gap:var(--space-4)}
@media (min-width:640px){.dhe-mini-grid{grid-template-columns:repeat(2,1fr)}}
.dhe-mini-card{
  padding:var(--space-5);
  border-radius:var(--radius-lg);
  background:var(--bg-softer);
}
.dhe-mini-card__icon{width:24px;height:24px;color:var(--accent);margin-bottom:var(--space-3)}
.dhe-mini-card__title{font-size:1.125rem;font-weight:700;color:#fff;margin-bottom:var(--space-2)}
.dhe-mini-card__body{font-size:.875rem;color:var(--text-muted);margin:0}

/* ── 19. Step-card (numbered) ─────────────────────────────── */
.dhe-step-list{display:flex;flex-direction:column;gap:var(--space-6);margin-bottom:var(--space-16)}
.dhe-step-card{
  padding:var(--space-8);
  border-radius:var(--radius-xl);
  background:var(--bg-soft);
  border:1px solid var(--border);
  display:flex;
  align-items:flex-start;
  gap:var(--space-4);
}
.dhe-step-card__num{
  background:var(--brand);color:#fff;
  border-radius:9999px;
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;flex-shrink:0;
}
.dhe-step-card__title{font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:var(--space-3)}
.dhe-step-card__body{color:var(--text-muted);margin:0}

/* ── 20. Resource bar ─────────────────────────────────────── */
.dhe-resource-bar{
  padding:var(--space-8);
  border-radius:var(--radius-xl);
  background:rgba(30,58,138,.3);
  border:1px solid rgba(29,78,216,.5);
  margin-bottom:var(--space-12);
}
.dhe-resource-bar__title{font-size:1.25rem;font-weight:700;color:#fff;margin-bottom:var(--space-4)}
.dhe-resource-bar__links{display:flex;flex-wrap:wrap;gap:var(--space-4);align-items:center}
.dhe-resource-bar__links a{color:var(--accent);text-decoration:underline}
.dhe-resource-bar__links a:hover{color:var(--accent-hover)}
.dhe-resource-bar__sep{color:var(--text-faint)}

/* ── 21. Forms (contact + enquire) ────────────────────────── */
.dhe-form{display:flex;flex-direction:column;gap:var(--space-4)}
.dhe-form__field{display:flex;flex-direction:column}
.dhe-form__label{
  display:block;
  font-size:.875rem;font-weight:500;
  color:var(--text-muted);
  margin-bottom:var(--space-2);
}
.dhe-form__input,
.dhe-form__textarea,
.dhe-form__select{
  width:100%;
  padding:var(--space-3) var(--space-4);
  border-radius:var(--radius);
  background:var(--bg-softer);
  border:1px solid var(--border-soft);
  color:#fff;
  font-size:1rem;
  font-family:inherit;
}
.dhe-form__input::placeholder,
.dhe-form__textarea::placeholder{color:var(--text-faint)}
.dhe-form__textarea{resize:vertical;min-height:8rem}
.dhe-form__submit{
  width:100%;
  background:var(--brand);color:#fff;
  padding:var(--space-3) var(--space-6);
  border-radius:var(--radius);
  font-size:1rem;font-weight:600;
  border:0;cursor:pointer;
  transition:background .15s;
}
.dhe-form__submit:hover{background:var(--brand-hover)}

/* ── 22. Contact page split ──────────────────────────────── */
.dhe-contact{padding:var(--space-12) 0;max-width:64rem;margin:0 auto;padding-left:var(--space-6);padding-right:var(--space-6)}
.dhe-contact__grid{display:grid;grid-template-columns:1fr;gap:var(--space-8)}
@media (min-width:768px){.dhe-contact__grid{grid-template-columns:repeat(2,1fr)}}
.dhe-contact__card{
  padding:var(--space-8);
  border-radius:var(--radius-xl);
  background:var(--bg-soft);
  border:1px solid var(--border);
}
.dhe-contact__card h2{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:var(--space-6)}
.dhe-contact-info{display:flex;flex-direction:column;gap:var(--space-6)}
.dhe-contact-info__item h3{font-size:1rem;font-weight:600;color:#fff;margin-bottom:var(--space-2)}
.dhe-contact-info__item p{color:var(--text-muted);margin:0}
.dhe-contact-info__item a{color:var(--accent)}
.dhe-contact-info__item a:hover{color:var(--accent-hover)}
.dhe-contact__hours{
  margin-top:var(--space-8);
  padding-top:var(--space-6);
  border-top:1px solid var(--border);
}
.dhe-contact__hours h3{font-size:1rem;font-weight:600;color:#fff;margin-bottom:var(--space-3)}
.dhe-contact__hours p{color:var(--text-muted);margin:0}
.dhe-contact__map{
  margin-top:var(--space-8);
  border-radius:var(--radius-lg);
  overflow:hidden;
  height:12rem;
  background:var(--bg-softer);
}
.dhe-contact__map img{width:100%;height:100%;object-fit:cover;display:block}

/* ── 23. Home hero specifics ────────────────────────────── */
.dhe-home-hero__container{display:grid;grid-template-columns:1fr;gap:var(--space-8);align-items:center}
@media (min-width:1024px){.dhe-home-hero__container{grid-template-columns:repeat(2,1fr);gap:var(--space-12)}}
.dhe-home-hero__title{font-size:1.875rem;font-weight:700;color:#fff;margin-bottom:var(--space-4);line-height:1.15}
@media (min-width:640px){.dhe-home-hero__title{font-size:2.25rem}}
@media (min-width:768px){.dhe-home-hero__title{font-size:3.75rem;margin-bottom:var(--space-6)}}
.dhe-home-hero__title em{font-style:normal;color:var(--accent)}
.dhe-home-hero__intro{font-size:1.125rem;color:var(--text-muted);margin-bottom:var(--space-6)}
@media (min-width:640px){.dhe-home-hero__intro{font-size:1.25rem;margin-bottom:var(--space-8)}}
.dhe-home-hero__actions{display:flex;flex-direction:column;gap:var(--space-4);margin-bottom:var(--space-8)}
@media (min-width:640px){.dhe-home-hero__actions{flex-direction:row}}
.dhe-home-hero__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-6)}
.dhe-home-hero__stat{padding:var(--space-4);border-radius:var(--radius);border:1px solid var(--border);text-align:center;background:var(--bg-soft)}
.dhe-home-hero__stat--primary{background:rgba(30,58,138,.3);border-color:rgba(29,78,216,.5)}
.dhe-home-hero__stat--success{background:var(--success-bg);border-color:var(--success-border)}
.dhe-home-hero__stat-value{font-size:1.5rem;font-weight:700;color:var(--text-muted)}
.dhe-home-hero__stat-value--primary{color:var(--accent)}
.dhe-home-hero__stat-value--success{color:var(--success)}
.dhe-home-hero__stat-label{color:var(--text-dim);font-size:.875rem;margin-top:var(--space-2)}
.dhe-home-hero__image-wrap{position:relative}
.dhe-home-hero__image{width:100%;border-radius:var(--radius-xl);box-shadow:0 25px 50px -12px rgba(0,0,0,.5);display:block}
.dhe-home-hero__chips{position:absolute;top:var(--space-4);left:var(--space-4);display:flex;flex-direction:column;gap:var(--space-2)}
.dhe-home-hero__chip{
  background:rgba(0,0,0,.7);backdrop-filter:blur(8px);
  color:#fff;padding:var(--space-2) var(--space-3);
  border-radius:9999px;font-size:.875rem;font-weight:500;
}
.dhe-home-hero__badge{
  position:absolute;bottom:-1.5rem;right:-1.5rem;
  background:var(--bg-soft);border:1px solid var(--border);
  border-radius:var(--radius);box-shadow:0 10px 25px rgba(0,0,0,.3);
  padding:var(--space-4);display:block;
  transition:transform .15s;
}
.dhe-home-hero__badge:hover{transform:scale(1.05)}
.dhe-home-hero__badge-label{font-size:.875rem;color:var(--text-dim)}
.dhe-home-hero__badge-value{font-size:1.5rem;font-weight:700;color:var(--brand)}

/* ── 24. Wizard (enquire) ─────────────────────────────────── */
.dhe-wiz{padding:0}

/* Wizard header (dark, full-width band) */
.dhe-wiz__header{
  background:#0b1220;
  border-bottom:1px solid var(--border);
  padding:24px 0;
}
.dhe-wiz__header-inner{max-width:1024px;margin:0 auto;padding:0 24px}
.dhe-wiz__back-row{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.dhe-wiz__back-brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:18px;color:var(--text);flex:1}
.dhe-wiz__back-brand svg{width:24px;height:24px;color:var(--accent)}
.dhe-wiz__back{display:inline-flex;align-items:center;gap:6px;color:var(--text-dim);font-size:14px;transition:color .2s}
.dhe-wiz__back:hover{color:var(--text)}
.dhe-wiz__title-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:14px}
.dhe-wiz__title{font-size:28px;font-weight:700;letter-spacing:-0.02em;color:#fff}
.dhe-wiz__step-indicator{font-size:14px;color:var(--text-dim)}
.dhe-wiz__progress{height:4px;background:rgba(255,255,255,0.08);border-radius:99px;overflow:hidden;margin-bottom:14px}
.dhe-wiz__progress-bar{height:100%;background:var(--brand);transition:width .3s ease;border-radius:99px}
.dhe-wiz__step-labels{display:flex;justify-content:space-between;font-size:13px;color:var(--text-faint)}
.dhe-wiz__step-labels span.done{color:var(--brand)}
.dhe-wiz__step-labels span.current{color:var(--brand);font-weight:600}

/* Wizard body */
.dhe-wiz__body{max-width:1024px;margin:48px auto;padding:0 24px}
.dhe-wiz__step{display:none}
.dhe-wiz__step.active{display:block}
.dhe-wiz__step-card{
  background:var(--bg-soft);
  border:1px solid var(--border);
  border-radius:14px;
  padding:48px 40px;
}
.dhe-wiz__question{text-align:center;font-size:24px;font-weight:700;margin-bottom:8px;color:#fff}
.dhe-wiz__subtitle{text-align:center;color:var(--text-dim);font-size:15px;margin-bottom:36px}

/* Radio-card list */
.dhe-wiz__radio-list{display:flex;flex-direction:column;gap:12px;margin-bottom:32px}
.dhe-wiz__radio-card{
  display:flex;align-items:flex-start;gap:16px;
  padding:18px 20px;
  border:1px solid var(--border);
  border-radius:10px;
  cursor:pointer;
  transition:all .15s;
  background:transparent;
}
.dhe-wiz__radio-card:hover{border-color:rgba(59,130,246,0.4);background:rgba(59,130,246,0.04)}
.dhe-wiz__radio-card.selected{border-color:var(--brand);background:rgba(59,130,246,0.1)}
.dhe-wiz__radio-circle{
  flex-shrink:0;width:22px;height:22px;
  border:2px solid var(--text-faint);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;
  transition:all .15s;
  position:relative;
}
.dhe-wiz__radio-card.selected .dhe-wiz__radio-circle{border-color:var(--brand)}
.dhe-wiz__radio-card.selected .dhe-wiz__radio-circle::after{
  content:'';width:10px;height:10px;
  background:var(--brand);border-radius:50%;
}
.dhe-wiz__radio-icon{flex-shrink:0;width:28px;height:28px;color:var(--text-dim);margin-top:0}
.dhe-wiz__radio-icon svg{width:100%;height:100%}
.dhe-wiz__radio-content{flex:1}
.dhe-wiz__radio-title{font-size:17px;font-weight:600;margin-bottom:4px;color:#fff}
.dhe-wiz__radio-desc{color:var(--text-dim);font-size:14px;line-height:1.4}
.dhe-wiz__radio-desc-inline{font-size:14px;color:var(--text-dim);font-weight:400;margin-left:6px}

/* Action buttons */
.dhe-wiz__actions{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-top:8px}
.dhe-wiz__actions--right-only{justify-content:flex-end}
.dhe-wiz__btn{
  padding:14px 28px;border-radius:10px;
  font-size:15px;font-weight:600;
  cursor:pointer;border:none;
  transition:all .15s;
  display:inline-flex;align-items:center;gap:8px;
  font-family:inherit;
}
.dhe-wiz__btn--primary{background:var(--brand);color:#fff}
.dhe-wiz__btn--primary:hover:not(:disabled){background:var(--brand-hover)}
.dhe-wiz__btn--primary:disabled{background:rgba(148,163,184,0.3);color:rgba(255,255,255,0.5);cursor:not-allowed}
.dhe-wiz__btn--secondary{background:transparent;color:var(--text);border:1px solid var(--border)}
.dhe-wiz__btn--secondary:hover{background:rgba(255,255,255,0.04);border-color:rgba(255,255,255,0.2)}

/* Step 4 form fields */
.dhe-wiz__field-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-bottom:18px}
.dhe-wiz__field-grid-1{margin-bottom:18px}
.dhe-wiz__field label{display:block;font-size:13px;font-weight:600;color:var(--text);margin-bottom:8px}
.dhe-wiz__field label .dhe-wiz__req{color:#f87171}
.dhe-wiz__field input,.dhe-wiz__field textarea{
  width:100%;padding:13px 16px;
  background:rgba(15,23,42,0.6);
  border:1px solid var(--border);
  border-radius:9px;
  color:var(--text);font-size:15px;font-family:inherit;
  transition:border-color .15s;
}
.dhe-wiz__field input:focus,.dhe-wiz__field textarea:focus{outline:none;border-color:var(--brand)}
.dhe-wiz__field input::placeholder,.dhe-wiz__field textarea::placeholder{color:var(--text-faint)}
.dhe-wiz__field textarea{resize:vertical;min-height:110px}

/* Captcha slot in step 4 — restyle the captcha-service widget so its label
   and input look identical to the other wizard fields. The widget ships its
   own <label> + <input name="captcha_answer"> + <input type="hidden">. */
.dhe-wiz__captcha{margin-bottom:18px}
.dhe-wiz__captcha label{
  display:block;font-size:13px;font-weight:600;color:var(--text);
  margin:0 0 8px;
}
.dhe-wiz__captcha input[type=text]{
  width:100%;max-width:220px;padding:13px 16px;
  background:rgba(15,23,42,0.6);
  border:1px solid var(--border);
  border-radius:9px;
  color:var(--text);font-size:15px;font-family:inherit;
  transition:border-color .15s;
}
.dhe-wiz__captcha input[type=text]:focus{outline:none;border-color:var(--brand)}
.dhe-wiz__captcha input[type=text]::placeholder{color:var(--text-faint)}

/* Summary box (step 4) */
.dhe-wiz__summary{background:#0b1220;border:1px solid var(--border);border-radius:10px;padding:20px 24px;margin:24px 0 4px}
.dhe-wiz__summary-title{font-size:15px;font-weight:700;margin-bottom:10px;color:#fff}
.dhe-wiz__summary-line{font-size:14px;color:var(--text-dim);margin-bottom:6px}
.dhe-wiz__summary-line strong{color:var(--text);font-weight:600}

@media(max-width:768px){
  .dhe-wiz__step-card{padding:28px 20px}
  .dhe-wiz__field-grid{grid-template-columns:1fr}
  .dhe-wiz__title{font-size:22px}
  .dhe-wiz__question{font-size:20px}
}

/* ── 25. Light-mode overrides ──────────────────────────────── */
html.light{
  --bg:#ffffff;
  --bg-soft:#f1f5f9;
  --bg-softer:#e2e8f0;
  --bg-glass:rgba(255,255,255,.95);
  --border:#e2e8f0;
  --border-soft:#cbd5e1;
  --text:#0f172a;
  --text-muted:#334155;
  --text-dim:#475569;
  --text-faint:#64748b;
  background:#f8fafc;
}
html.light body{background:#f8fafc;color:var(--text)}
html.light .dhe-hero{background:linear-gradient(to bottom right,#f1f5f9,#ffffff)}
html.light .dhe-section--soft{background:#f1f5f9}
html.light .dhe-card{background:#ffffff;border-color:#e2e8f0}
html.light .dhe-nav__theme-btn{background:#e2e8f0;color:#1f2937}
html.light .dhe-legal__entity-banner{
  background:rgba(59,130,246,.06);
  border-color:rgba(59,130,246,.2);
  color:#475569;
}
html.light .dhe-legal__entity-banner strong{color:#0f172a}
html.light .dhe-legal__title,
html.light .dhe-legal__body h2{color:#0f172a}
html.light .dhe-legal__body{color:#1f2937}
html.light .dhe-image-header__title{color:#0f172a}
html.light .dhe-image-header__overlay{background:linear-gradient(to right,rgba(241,245,249,.9),rgba(241,245,249,.7))}
html.light .dhe-image-header__overlay--brand{background:linear-gradient(to right,rgba(37,99,235,.85),rgba(37,99,235,.6))}
html.light .dhe-image-header__intro{color:#334155}
html.light .dhe-image-header__intro--brand{color:#dbeafe}
html.light .dhe-stat-tile{background:#fff;border-color:#e2e8f0}
html.light .dhe-stat-tile__label,html.light .dhe-home-hero__stat-label{color:#475569}
html.light .dhe-split-card{background:#fff;border-color:#e2e8f0}
html.light .dhe-split-card__title,html.light .dhe-banner-card__hero-title,
html.light .dhe-feature-banner__title,html.light .dhe-mini-card__title,
html.light .dhe-step-card__title,html.light .dhe-contact__card h2,
html.light .dhe-home-hero__title,html.light .dhe-resource-bar__title,
html.light .dhe-wiz__title,html.light .dhe-wiz__question,
html.light .dhe-wiz__radio-title,html.light .dhe-contact-info__item h3,
html.light .dhe-contact__hours h3{color:#0f172a}
html.light .dhe-split-card__list h3{color:#2563eb}
html.light .dhe-split-card__list p,html.light .dhe-mini-card__body,
html.light .dhe-step-card__body,html.light .dhe-contact-info__item p,
html.light .dhe-contact__hours p,html.light .dhe-banner-card__body p,
html.light .dhe-feature-banner__intro,html.light .dhe-feature-banner__byline,
html.light .dhe-home-hero__intro,html.light .dhe-wiz__subtitle,
html.light .dhe-wiz__radio-desc,html.light .dhe-wiz__radio-desc-inline,
html.light .dhe-checklist__item{color:#334155}
html.light .dhe-checklist__item strong,html.light .dhe-feature-banner__byline strong{color:#0f172a}
html.light .dhe-banner-card,html.light .dhe-contact__card,
html.light .dhe-step-card,html.light .dhe-wiz__step-card{background:#fff;border-color:#e2e8f0}
html.light .dhe-mini-card{background:#f1f5f9}
html.light .dhe-feature-banner{background:linear-gradient(to right,rgba(219,234,254,.6),#fff);border-color:rgba(37,99,235,.25)}
html.light .dhe-resource-bar{background:rgba(219,234,254,.4);border-color:rgba(37,99,235,.25)}
html.light .dhe-form__input,html.light .dhe-form__textarea,html.light .dhe-form__select{background:#fff;border-color:#cbd5e1;color:#0f172a}
html.light .dhe-form__input::placeholder,html.light .dhe-form__textarea::placeholder{color:#94a3b8}
html.light .dhe-wiz__radio-card{background:#f1f5f9;border-color:#cbd5e1}
html.light .dhe-wiz__radio-card.selected{background:rgba(37,99,235,.06);border-color:#2563eb}
html.light .dhe-wiz__radio-card.selected .dhe-wiz__radio-circle{border-color:#2563eb}
html.light .dhe-wiz__radio-card.selected .dhe-wiz__radio-circle::after{background:#2563eb}
html.light .dhe-home-hero__chip{background:rgba(15,23,42,.85)}
html.light .dhe-home-hero__badge{background:#fff;border-color:#e2e8f0}
html.light .dhe-home-hero__badge-label{color:#475569}
html.light .dhe-home-hero__stat{background:#fff;border-color:#e2e8f0}
html.light .dhe-home-hero__stat--primary{background:#dbeafe;border-color:#93c5fd}
html.light .dhe-home-hero__stat--success{background:#dcfce7;border-color:#86efac}
html.light .dhe-home-hero__stat-value{color:#334155}
html.light .dhe-about__hero-text h1{color:#0f172a}
html.light .dhe-about__hero-text p{color:#334155}
html.light .dhe-wiz__progress{background:#e2e8f0}
html.light .dhe-wiz__header{background:#f1f5f9;border-color:#e2e8f0}
html.light .dhe-wiz__captcha label{color:#0f172a}
html.light .dhe-wiz__captcha input[type=text]{background:#fff;border-color:#cbd5e1;color:#0f172a}
html.light .dhe-wiz__captcha input[type=text]::placeholder{color:#94a3b8}

/* Blog index light mode */
html.light .dhe-blog-card{background:#fff;border-color:#e2e8f0;box-shadow:0 1px 3px rgba(0,0,0,.05)}
html.light .dhe-blog-card:hover{border-color:#1d4ed8;box-shadow:0 4px 12px rgba(0,0,0,.08)}
html.light .dhe-blog-card__img{background-color:#cbd5e1}
html.light .dhe-blog-card__tag{color:#1d4ed8;background:rgba(59,130,246,.08)}
html.light .dhe-blog-card__title{color:#0f172a}
html.light .dhe-blog-card__date{color:#64748b}
html.light .dhe-blog-card__excerpt{color:#475569}

/* Blog post light mode */
html.light .dhe-post-hero{background-color:#cbd5e1}
html.light .dhe-post__tag{color:#1d4ed8;background:rgba(59,130,246,.08)}
html.light .dhe-post__title{color:#0f172a}
html.light .dhe-post__meta{color:#64748b}
html.light .dhe-post-body{color:#1e293b}
html.light .dhe-post-body h1,
html.light .dhe-post-body h2,
html.light .dhe-post-body h3,
html.light .dhe-post-body h4{color:#0f172a}
html.light .dhe-post-body h2{border-bottom-color:#cbd5e1}
html.light .dhe-post-body strong{color:#0f172a}
html.light .dhe-post-body a.int-link{color:#1d4ed8}
html.light .dhe-post-body a.int-link:hover{color:#1e40af}
html.light .dhe-post-body a.ext-link{color:#047857}
html.light .dhe-post-body a.ext-link:hover{color:#065f46}
html.light .dhe-post-body code{background:#f1f5f9;color:#92400e}
html.light .dhe-post-body pre{background:#f1f5f9}
html.light .dhe-post-body pre code{color:#1e293b}
html.light .dhe-post__back-link{color:#1d4ed8}
html.light .dhe-post__back-link:hover{color:#1e40af}
html.light .dhe-post-cta__card{background:linear-gradient(135deg,#dbeafe 0%,#f1f5f9 100%);border-color:#bfdbfe}
html.light .dhe-post-cta__badge{color:#1d4ed8;background:rgba(59,130,246,.1)}
html.light .dhe-post-cta__title{color:#0f172a}
html.light .dhe-post-cta__intro{color:#334155}
html.light .dhe-post-cta__btn-secondary{color:#334155;border-color:#cbd5e1}
html.light .dhe-post-cta__btn-secondary:hover{background:#f1f5f9;color:#0f172a}
html.light .dhe-blog-404__title{color:#0f172a}
html.light .dhe-blog-404__intro{color:#475569}
