/* ============================================================
   DigiGyor Elementor Widgets v5.0 — Front-End Styles
   Covers: original dggw-* widgets + new dgw-* widgets
   Fully Mobile Responsive
   ============================================================ */

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

/* ── Design tokens ──────────────────────────────────────── */
:root {
  --dgw-bg:        #F5F0EB;
  --dgw-navy:      #0D1B2A;
  --dgw-orange:    #F5730A;
  --dgw-white:     #ffffff;
  --dgw-muted:     #6B7280;
  --dgw-radius:    16px;
  --dgw-radius-sm: 10px;
  --dgw-shadow:    0 2px 20px rgba(0,0,0,.07);
  --dgw-font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Original plugin compat aliases */
  --dggw-orange: #F47A1F;
  --dggw-navy:   #0B1F3A;
}
div#dgw-hero-fddaf7e {
    overflow: hidden;
}
/* ── Base reset for all plugin elements ─────────────────── */
.dgw-section *,
.dggw-scroll-fade *,
[class^="dggw-"] *,
[class^="dgw-"] * {
  box-sizing: border-box;
}

/* =================================================================
   SCROLL FADE ANIMATIONS
   ================================================================= */

/* ── Elementor editor: always show everything, never invisible ── */
.elementor-editor-active .dgw-fade-section,
.elementor-editor-active .dgw-fade-item,
.elementor-editor-active .dgw-fade-left,
.elementor-editor-active .dgw-fade-right,
.elementor-editor-active .dggw-scroll-fade,
body.elementor-editor-active [class*="dgw-fade"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* New-style widgets — fade up */
.dgw-fade-section {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.dgw-fade-section.dgw-visible {
  opacity: 1;
  transform: none;
}
.dgw-fade-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease var(--delay,0s),
              transform .5s ease var(--delay,0s);
}
.dgw-fade-section.dgw-visible .dgw-fade-item {
  opacity: 1;
  transform: none;
}

/* ── Directional fades (used in 2-column layouts) ── */
.dgw-fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s ease, transform .7s ease;
}
.dgw-fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity .7s ease, transform .7s ease;
}
.dgw-fade-left.dgw-visible,
.dgw-fade-right.dgw-visible {
  opacity: 1;
  transform: none;
}

/* Original dggw_ widgets scroll fade */
.dggw-scroll-fade {
  opacity: 0;
  transform: translateY(var(--dggw-dy, 30px));
  transition: opacity var(--dggw-dur, 700ms) ease var(--dggw-delay, 0ms),
              transform var(--dggw-dur, 700ms) ease var(--dggw-delay, 0ms);
}
.dggw-scroll-fade.dggw-visible {
  opacity: 1;
  transform: none;
}

/* =================================================================
   SHARED SECTION BASE
   ================================================================= */
.dgw-section {
  font-family: var(--dgw-font);
  background: var(--dgw-bg);
  padding: 80px 5%;
  box-sizing: border-box;
  width: 100%;
}
.dgw-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--dgw-orange);
  text-transform: uppercase;
  margin: 0 0 12px;
}
.dgw-heading {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  color: var(--dgw-navy);
  margin: 0 0 18px;
  line-height: 1.18;
}
.dgw-highlight { color: var(--dgw-orange); }
.dgw-desc {
  font-size: 15px;
  color: var(--dgw-muted);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 40px;
}

/* =================================================================
   SHARED CARDS GRID
   ================================================================= */
.dgw-cards-grid {
  display: grid;
  gap: 18px;
}
.dgw-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.dgw-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .dgw-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .dgw-cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dgw-cards-grid--4,
  .dgw-cards-grid--3 { grid-template-columns: 1fr; }
  .dgw-section { padding: 52px 5%; }
}

/* =================================================================
   SHARED CARD
   ================================================================= */
.dgw-card {
  background: var(--dgw-white);
  border-radius: var(--dgw-radius);
  padding: 28px 22px;
  box-shadow: var(--dgw-shadow);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
  border: 1.5px solid rgba(0,0,0,.04);
}
.dgw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(0,0,0,.11);
}

/* =================================================================
   SHARED BUTTONS
   ================================================================= */
.dgw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: var(--dgw-font);
  transition: background .2s, transform .15s;
}
.dgw-btn--primary   { background: var(--dgw-orange); color: #fff; }
.dgw-btn--primary:hover  { background: #d45e00; transform: translateY(-1px); }
.dgw-btn--secondary { background: var(--dgw-navy); color: #fff; }
.dgw-btn--secondary:hover{ background: #1b3352; transform: translateY(-1px); }
.dgw-btn--full { width: 100%; justify-content: center; border-radius: var(--dgw-radius-sm); }

@media (max-width: 480px) {
  .dgw-btn { padding: 12px 18px; font-size: 13px; }
}

/* =================================================================
   HERO TILE SLIDER (GSAP-powered, dgw-hero)
   ================================================================= */
.dgw-hero {
  width: 100%;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible; /* arrows poke out edges; tile clip is on .dgw-hero__right */
  background: linear-gradient(140deg,
    var(--dgw-bg-from, #f0faf2) 0%,
    #e8f5ea 55%,
    var(--dgw-bg-to, #f5fef6) 100%);
  font-family: var(--dgw-font);
}
.dgw-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,.13), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ── Dot grid ── */
.dgw-hero__dot-grid {
  position: absolute; right: 26px; top: 18px;
  display: grid; grid-template-columns: repeat(5,1fr); gap: 6px;
  opacity: .3; pointer-events: none; z-index: 1;
}
.dgw-hero__dot-grid span {
  width: 5px; height: 5px;
  border-radius: 50%; background: #22c55e; display: block;
}

/* ── Left Panel ── */
.dgw-hero__left {
  flex: 0 0 46%;
  padding: 52px 36px 52px 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}

/* Brand row */
.dgw-hero__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.dgw-hero__brand-icon {
  width: 34px; height: 34px; border-radius: 7px; background: #111;
  display: flex; align-items: center; justify-content: center;
}
.dgw-hero__brand-name { font-size: 18px; font-weight: 800; color: #111; letter-spacing: -.02em; }

/* Eyebrow tag */
.dgw-hero__slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #16a34a;
  margin-bottom: 14px;
  opacity: 0;  /* animated in by GSAP */
}
.dgw-hero--editor .dgw-hero__slide-tag { opacity: 1; }
.dgw-hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  animation: dgwTagBlink 2s infinite;
}
@keyframes dgwTagBlink { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* Heading */
.dgw-hero__heading {
  font-size: clamp(28px, 3.9vw, 52px);
  font-weight: 900; line-height: 1.07;
  letter-spacing: -.03em; color: #111;
  margin: 0 0 16px;
  min-height: 110px;
}
.dgw-hero--editor .dgw-hero__heading { min-height: auto; }
.dgw-ln  { display: block; overflow: hidden; }
.dgw-ln-i { display: block; }
.dgw-hero__heading em {
  font-style: normal; position: relative; display: inline-block;
}
.dgw-hero__heading em svg {
  position: absolute; bottom: -5px; left: 0;
  width: 100%; pointer-events: none; overflow: visible;
}

/* Sub */
.dgw-hero__sub {
  font-size: 15px; font-weight: 600; line-height: 1.75;
  color: #374151; max-width: 390px;
  margin-bottom: 26px;
  opacity: 0;
}
.dgw-hero--editor .dgw-hero__sub { opacity: 1; }

/* Buttons */
.dgw-hero__btns { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 26px; opacity: 0; }
.dgw-hero--editor .dgw-hero__btns { opacity: 1; }
.dgw-hero__btn-fill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #ea580c; color: #fff;
  padding: 13px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 700; border: none;
  cursor: pointer; text-decoration: none; transition: .2s;
}
.dgw-hero__btn-fill:hover { filter: brightness(.88); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.dgw-hero__btn-out {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid #16a34a; color: #16a34a;
  background: transparent; padding: 12px 20px;
  border-radius: 6px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: .2s;
}
.dgw-hero__btn-out:hover { background: #f0fdf4; }

/* Trust badges */
.dgw-hero__trust { display: flex; flex-wrap: wrap; gap: 10px; opacity: 0; }
.dgw-hero--editor .dgw-hero__trust { opacity: 1; }
.dgw-hero__badge {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 7px 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.dgw-hero__badge-t strong { display: block; font-size: 12px; font-weight: 700; color: #111; }
.dgw-hero__badge-t span   { font-size: 11px; color: #6b7280; }
.dgw-hero__stars { color: #f59e0b; font-size: 10px; letter-spacing: 1px; }

/* Nav wrapper: prev arrow + dots + next arrow */
.dgw-hero__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
}
.dgw-hero--editor .dgw-hero__nav { opacity: 1; }

/* Arrow buttons — absolute on left / right edges, vertically centered */
.dgw-hero__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
  color: #16a34a;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s, box-shadow .2s, opacity .35s ease, transform .35s ease;
}
.dgw-hero__arr--prev { left: 14px; }
.dgw-hero__arr--next { right: 14px; }
.dgw-hero__arr:hover {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transform: translateY(-50%) scale(1.08);
}
/* Hidden state — arrow at boundary */
.dgw-hero__arr.dgw-arr-hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.75);
}

/* Dots (inside nav wrapper) */
.dgw-hero__ndots { display: flex; gap: 7px; align-items: center; }
.dgw-hero__nd {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d1fae5; border: 1.5px solid #86efac;
  cursor: pointer; transition: width .35s ease, border-radius .35s ease;
  position: relative; overflow: hidden;
}
.dgw-hero__nd.act {
  background: rgba(22,163,74,.25);
  border-color: #16a34a;
  width: 36px; border-radius: 4px;
}
.dgw-hero__nd.act::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 0%;
  background: #16a34a; border-radius: 4px;
  animation: dgwNdProg var(--dgw-nd-dur,6s) linear forwards;
}
@keyframes dgwNdProg { to { width: 100%; } }

/* ── Right Panel (tile grid built by JS) ── */
.dgw-hero__right {
  flex: 1; position: relative; overflow: hidden; min-height: 580px;
}

/* Tile layer — unique prefix avoids WordPress theme conflicts */
.dighome-tl {
    margin:4px;
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
.dighome-tl.layer-b
 {
    margin-left: 10px;
}
.dighome-tl.layer-b {
    border: 0;
}
.dighome-tc{
 margin-left: -2px;
 margin-top:-2px;
}
/* Each cell: background-image set by JS — NO <img> so theme img CSS cannot interfere */
.dighome-tc {
  background-repeat: no-repeat;
  will-change: transform;
}

/* (progress bar removed — dots on left panel carry timing indicator) */

/* ── Mobile ── */
@media (max-width: 820px) {
  .dgw-hero { flex-direction: column; }
  .dgw-hero__left { flex: none; width: 100%; padding: 36px 20px 24px; }
  .dgw-hero__heading { min-height: auto; }
  .dgw-hero__right { flex: none; width: 100%; min-height: 280px; }
}
@media (max-width: 480px) {
  .dgw-hero__btns { flex-direction: column; }
  .dgw-hero__btn-fill, .dgw-hero__btn-out { justify-content: center; }
}

/* =================================================================
   RESOURCES WIDGET
   ================================================================= */
.dgw-resources .dgw-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #FFF3E8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.dgw-resources .dgw-card__title {
  font-size: 16px; font-weight: 700;
  color: var(--dgw-navy); margin: 0 0 8px;
}
.dgw-resources .dgw-card__desc {
  font-size: 13.5px; color: var(--dgw-muted);
  line-height: 1.55; margin: 0;
}

/* =================================================================
   FEATURED GUIDE WIDGET
   ================================================================= */
.dgw-fg .dgw-heading { margin-bottom: 32px; }
.dgw-fg__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}
.dgw-fg__card {
  background: var(--dgw-navy);
  border-radius: var(--dgw-radius);
  padding: 36px 32px;
  color: #fff;
}
.dgw-fg__badge {
  display: inline-block;
  background: var(--dgw-orange); color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px; margin-bottom: 22px;
}
.dgw-fg__card-title {
  font-size: 20px; font-weight: 800;
  line-height: 1.35; margin: 0 0 20px; color: #fff;
}
.dgw-fg__bullets {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 28px;
}
.dgw-fg__bullets li {
  font-size: 14px; color: rgba(255,255,255,.78);
  margin-bottom: 8px; line-height: 1.5;
}
.dgw-fg__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.dgw-fg__stat {
  background: var(--dgw-white);
  border-radius: var(--dgw-radius);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--dgw-shadow);
}
.dgw-fg__stat-num {
  display: block;
  font-size: 38px; font-weight: 900;
  color: var(--dgw-orange);
  line-height: 1; margin-bottom: 8px;
}
.dgw-fg__stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em;
  color: var(--dgw-muted); text-transform: uppercase;
}
@media (max-width: 900px) {
  .dgw-fg__row { grid-template-columns: 1fr; }
  .dgw-fg__stats { grid-template-columns: repeat(4,1fr); gap: 12px; }
  .dgw-fg__stat  { padding: 20px 12px; }
  .dgw-fg__stat-num { font-size: 28px; }
}
@media (max-width: 600px) {
  .dgw-fg__stats { grid-template-columns: repeat(2,1fr); }
  .dgw-fg__card  { padding: 28px 22px; }
}

/* =================================================================
   BLOG WIDGET
   ================================================================= */
.dgw-blog__card {
  display: flex; flex-direction: column; gap: 10px;
}
.dgw-blog__tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .09em;
  color: var(--dgw-orange);
  text-transform: uppercase;
  border: 1.5px solid var(--dgw-orange);
  border-radius: 999px;
  padding: 3px 10px;
  display: inline-block; width: fit-content;
}
.dgw-blog__title {
  font-size: 15px; font-weight: 700;
  color: var(--dgw-navy); line-height: 1.4;
  margin: 4px 0;
}
.dgw-blog__time { font-size: 12.5px; color: var(--dgw-muted); margin: 0; }
.dgw-blog__cta {
  font-size: 13px; font-weight: 600;
  color: var(--dgw-navy);
  margin-top: auto; padding-top: 4px;
}
.dgw-blog__card:hover .dgw-blog__cta { color: var(--dgw-orange); }

/* =================================================================
   TOOLS WIDGET
   ================================================================= */
.dgw-tools__card { text-align: left; }
.dgw-tools__icon-wrap {
  width: 44px; height: 44px;
  background: #FFF3E8; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.dgw-tools__name { font-size: 15px; font-weight: 700; color: var(--dgw-navy); margin: 0 0 6px; }
.dgw-tools__desc { font-size: 12.5px; color: var(--dgw-muted); margin: 0; line-height: 1.5; }

/* =================================================================
   GLOSSARY WIDGET
   ================================================================= */
.dgw-glossary .dgw-heading { margin-bottom: 28px; }
.dgw-glossary__tags { display: flex; flex-wrap: wrap; gap: 12px; }
.dgw-tag {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(13,27,42,.18);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--dgw-navy); text-decoration: none;
  background: var(--dgw-white);
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
}
.dgw-tag:hover {
  border-color: var(--dgw-orange);
  color: var(--dgw-orange);
  background: #FFF3E8;
}
.dgw-tag__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--dgw-orange); flex-shrink: 0;
}
@media (max-width: 480px) {
  .dgw-tag { font-size: 12px; padding: 6px 12px; }
}

/* =================================================================
   VIDEO CTA WIDGET
   ================================================================= */
.dgw-video-cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.dgw-video-cta__play-link { text-decoration: none; }
.dgw-video-cta__thumb {
  background: var(--dgw-navy);
  border-radius: var(--dgw-radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s;
}
.dgw-video-cta__thumb:hover { transform: scale(1.02); }
.dgw-video-cta__thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .55;
}
.dgw-video-cta__play-btn {
  width: 64px; height: 64px;
  background: var(--dgw-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  box-shadow: 0 8px 24px rgba(245,115,10,.4);
  transition: transform .2s;
}
.dgw-video-cta__thumb:hover .dgw-video-cta__play-btn { transform: scale(1.1); }
.dgw-video-cta__label {
  font-size: 15px; font-weight: 700;
  color: var(--dgw-navy); margin: 16px 0 4px;
}
.dgw-video-cta__sub { font-size: 13px; color: var(--dgw-muted); margin: 0; }
.dgw-video-cta__text .dgw-desc { margin-bottom: 28px; }
@media (max-width: 860px) {
  .dgw-video-cta__row { grid-template-columns: 1fr; gap: 36px; }
}

/* =================================================================
   NEWSLETTER WIDGET
   ================================================================= */
.dgw-newsletter { text-align: center; }
.dgw-newsletter .dgw-eyebrow,
.dgw-newsletter .dgw-heading,
.dgw-newsletter .dgw-desc { margin-left: auto; margin-right: auto; text-align: center; }
.dgw-newsletter__form { max-width: 540px; margin: 0 auto; }
.dgw-newsletter__input-row {
  display: flex; align-items: center;
  background: var(--dgw-white);
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  gap: 10px;
  box-shadow: var(--dgw-shadow);
}
.dgw-newsletter__icon { font-size: 18px; flex-shrink: 0; }
.dgw-newsletter__input {
  flex: 1; border: none; outline: none;
  background: transparent;
  font-size: 15px; color: var(--dgw-navy);
  font-family: var(--dgw-font);
  min-width: 0;
}
.dgw-newsletter__input::placeholder { color: var(--dgw-muted); }
.dgw-newsletter__success { margin-top: 14px; font-weight: 600; color: #16a34a; }
@media (max-width: 540px) {
  .dgw-newsletter__input-row {
    flex-direction: column;
    border-radius: var(--dgw-radius);
    padding: 14px;
    align-items: stretch;
  }
  .dgw-newsletter__input { font-size: 14px; }
  .dgw-newsletter__input-row .dgw-btn { border-radius: var(--dgw-radius-sm); }
}

/* =================================================================
   CONTACT WIDGET
   ================================================================= */
.dgw-contact__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(22,163,74,.08);
  color: #15803d; font-size: 13px; font-weight: 600;
  border-radius: 999px; padding: 6px 14px; margin-bottom: 36px;
}
.dgw-contact__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  animation: dgw-pulse 2s ease-in-out infinite;
}
@keyframes dgw-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.dgw-contact__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px; align-items: start;
}
.dgw-contact__info {
  background: var(--dgw-white);
  border-radius: var(--dgw-radius);
  padding: 32px 26px;
  box-shadow: var(--dgw-shadow);
}
.dgw-contact__info-title { font-size: 16px; font-weight: 700; color: var(--dgw-navy); margin: 0 0 16px; }
.dgw-contact__info-row {
  font-size: 14px; color: var(--dgw-muted);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.dgw-contact__info-row a { color: var(--dgw-orange); text-decoration: none; }
.dgw-contact__why-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; color: var(--dgw-muted);
  text-transform: uppercase; margin: 24px 0 10px;
}
.dgw-contact__why-list { list-style: disc; padding-left: 18px; margin: 0; }
.dgw-contact__why-list li {
  font-size: 13.5px; color: var(--dgw-navy);
  margin-bottom: 7px; line-height: 1.45;
}
.dgw-contact__form-wrap {
  background: var(--dgw-navy);
  border-radius: var(--dgw-radius);
  padding: 36px 32px;
}
.dgw-contact__form-title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.dgw-contact__form-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin: 0 0 24px; }
.dgw-contact__form-row { display: flex; gap: 16px; }
.dgw-contact__form-row--2 > .dgw-field { flex: 1; }
.dgw-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.dgw-field label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.dgw-field label span { font-weight: 400; color: rgba(255,255,255,.45); }
.dgw-field input,
.dgw-field select,
.dgw-field textarea {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px; color: #fff;
  font-family: var(--dgw-font);
  outline: none;
  width: 100%;
  transition: border-color .2s;
}
.dgw-field input::placeholder,
.dgw-field textarea::placeholder { color: rgba(255,255,255,.35); }
.dgw-field input:focus,
.dgw-field select:focus,
.dgw-field textarea:focus { border-color: var(--dgw-orange); }
.dgw-field select option { color: var(--dgw-navy); background: #fff; }
.dgw-field textarea { resize: vertical; }
.dgw-contact__privacy {
  font-size: 12px; color: rgba(255,255,255,.45);
  text-align: center; margin: 12px 0 0;
}
@media (max-width: 900px) {
  .dgw-contact__row { grid-template-columns: 1fr; }
  .dgw-contact__form-wrap { padding: 28px 20px; }
}
@media (max-width: 600px) {
  .dgw-contact__form-row--2 { flex-direction: column; gap: 0; }
  .dgw-contact__info { padding: 24px 18px; }
}

/* Steps */
.dgw-steps__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px; margin-top: 40px;
}
.dgw-step {
  background: var(--dgw-white);
  border-radius: var(--dgw-radius);
  padding: 28px 22px;
  box-shadow: var(--dgw-shadow);
  position: relative;
  border: 1.5px solid rgba(0,0,0,.04);
}
.dgw-step__num {
  position: absolute; top: 20px; right: 20px;
  font-size: 32px; font-weight: 900;
  color: rgba(0,0,0,.06); line-height: 1;
}
.dgw-step__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px; background: #FFF3E8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.dgw-step__title { font-size: 15px; font-weight: 700; color: var(--dgw-navy); margin: 0 0 8px; }
.dgw-step__desc  { font-size: 13.5px; color: var(--dgw-muted); line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .dgw-steps__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 540px) {
  .dgw-steps__grid { grid-template-columns: 1fr; }
  .dgw-step { padding: 22px 18px; }
}

/* Offices */
.dgw-offices__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 40px;
}
.dgw-office {
  background: var(--dgw-white);
  border-radius: var(--dgw-radius);
  padding: 28px 22px;
  box-shadow: var(--dgw-shadow);
  border: 1.5px solid rgba(0,0,0,.04);
}
.dgw-office__flag  { font-size: 24px; display: block; margin-bottom: 4px; }
.dgw-office__country { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--dgw-muted); text-transform: uppercase; margin: 0 0 4px; }
.dgw-office__city    { font-size: 20px; font-weight: 800; color: var(--dgw-navy); margin: 0 0 8px; }
.dgw-office__address { font-size: 13px; color: var(--dgw-muted); margin: 0 0 10px; line-height: 1.45; }
.dgw-office__phone   { font-size: 13.5px; color: var(--dgw-navy); font-weight: 600; margin: 0; }
@media (max-width: 768px) {
  .dgw-offices__grid { grid-template-columns: 1fr; }
}

/* =================================================================
   ORIGINAL DGGW WIDGETS — Mobile Responsive Overrides
   (CSS classes used in the original 35 widgets)
   ================================================================= */

/* Generic wrapper all original widgets use */
[class^="dggw-"] {
  font-family: var(--dgw-font);
  box-sizing: border-box;
}

/* --- Hero (original) --- */
.dggw-hero {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 40px; padding: 80px 5%;
  min-height: 560px;
}
.dggw-hero__content { flex: 1 1 380px; }
.dggw-hero__media   { flex: 1 1 320px; }
.dggw-hero__heading {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.1;
}
.dggw-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid; border-radius: 999px;
  padding: 6px 16px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.dggw-hero__desc { font-size: 16px; line-height: 1.7; }
.dggw-hero__cta  { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.dggw-hero__btn1,
.dggw-hero__btn2 {
  display: inline-flex; align-items: center;
  padding: 13px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: opacity .2s, transform .15s;
}
.dggw-hero__btn1:hover,
.dggw-hero__btn2:hover { opacity: .88; transform: translateY(-1px); }

.dggw-hero__trust { margin-top: 36px; }
.dggw-hero__trust-label { font-size: 12px; font-weight: 600; opacity: .6; margin-bottom: 12px; }
.dggw-hero__trust-logos { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.dggw-hero__trust-logo  { font-size: 13px; font-weight: 700; opacity: .55; }

@media (max-width: 768px) {
  .dggw-hero { padding: 56px 5%; flex-direction: column; }
  .dggw-hero__content, .dggw-hero__media { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .dggw-hero { padding: 44px 5%; }
  .dggw-hero__cta { flex-direction: column; }
  .dggw-hero__btn1, .dggw-hero__btn2 { justify-content: center; }
}

/* --- Trust Bar --- */
.dggw-trust-bar { overflow: hidden; padding: 24px 5%; }
.dggw-trust-bar__inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: center;
}
.dggw-trust-bar__item { display: flex; align-items: center; gap: 10px; }
@media (max-width: 600px) {
  .dggw-trust-bar__inner { gap: 16px; }
}

/* --- Services / Cards sections --- */
.dggw-services,
.dggw-results,
.dggw-expertise,
.dggw-win-bigger,
.dggw-other-services { padding: 72px 5%; }

.dggw-services__grid,
.dggw-results__grid,
.dggw-expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* Generic card used by original widgets */
.dggw-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1.5px solid rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.dggw-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.11);
}
.dggw-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px; background: #FFF3E8;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.dggw-card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.dggw-card__desc  { font-size: 14px; line-height: 1.6; opacity: .7; margin: 0; }

@media (max-width: 600px) {
  .dggw-services__grid,
  .dggw-results__grid,
  .dggw-expertise__grid { grid-template-columns: 1fr; }
  .dggw-services, .dggw-results, .dggw-expertise,
  .dggw-win-bigger, .dggw-other-services { padding: 52px 5%; }
}

/* --- Process widget --- */
.dggw-process { padding: 72px 5%; }
.dggw-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 20px; margin-top: 40px;
}
.dggw-process__step {
  background: #fff; border-radius: 14px;
  padding: 28px 22px; position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.dggw-process__step-num {
  font-size: 48px; font-weight: 900;
  opacity: .07; position: absolute; top: 14px; right: 18px;
}
@media (max-width: 600px) {
  .dggw-process__steps { grid-template-columns: 1fr; }
  .dggw-process { padding: 52px 5%; }
}

/* --- Why Brands Choose / Case Studies / Win Bigger --- */
.dggw-why-brands-choose,
.dggw-case-studies,
.dggw-win-bigger { padding: 72px 5%; }

.dggw-case-studies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 24px; margin-top: 40px;
}
@media (max-width: 600px) {
  .dggw-case-studies__grid { grid-template-columns: 1fr; }
  .dggw-why-brands-choose,
  .dggw-case-studies { padding: 52px 5%; }
}

/* --- Testimonials --- */
.dggw-testimonials { padding: 72px 5%; }
.dggw-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px; margin-top: 40px;
}
.dggw-testimonial {
  background: #fff; border-radius: 14px;
  padding: 28px 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.dggw-testimonial__quote { font-size: 15px; line-height: 1.7; font-style: italic; opacity: .85; }
.dggw-testimonial__author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.dggw-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #e2e8f0; overflow: hidden; flex-shrink: 0;
}
.dggw-testimonial__avatar img { width:100%; height:100%; object-fit:cover; }
.dggw-testimonial__name { font-size: 14px; font-weight: 700; }
.dggw-testimonial__role { font-size: 12.5px; opacity: .6; }
@media (max-width: 600px) {
  .dggw-testimonials__grid { grid-template-columns: 1fr; }
  .dggw-testimonials { padding: 52px 5%; }
}

/* --- CEO Message --- */
.dggw-ceo-message { padding: 72px 5%; }
.dggw-ceo-message__inner {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 60px; align-items: center;
}
.dggw-ceo-message__photo {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4; background: #e2e8f0;
}
.dggw-ceo-message__photo img { width:100%; height:100%; object-fit:cover; }
@media (max-width: 768px) {
  .dggw-ceo-message__inner { grid-template-columns: 1fr; gap: 36px; }
  .dggw-ceo-message__photo { max-width: 240px; }
  .dggw-ceo-message { padding: 52px 5%; }
}

/* --- FAQ --- */
.dggw-faq { padding: 72px 5%; }
.dggw-faq__item {
  background: #fff; border-radius: 12px;
  padding: 20px 22px; margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  cursor: pointer;
}
.dggw-faq__question {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700;
}
.dggw-faq__answer {
  font-size: 14px; line-height: 1.7;
  color: var(--dgw-muted); margin-top: 12px;
  display: none;
}
.dggw-faq__item.open .dggw-faq__answer { display: block; }
@media (max-width: 600px) {
  .dggw-faq { padding: 52px 5%; }
}

/* --- Final CTA --- */
.dggw-final-cta {
  padding: 80px 5%;
  text-align: center;
}
.dggw-final-cta__inner { max-width: 720px; margin: 0 auto; }
.dggw-final-cta__btns  { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media (max-width: 480px) {
  .dggw-final-cta__btns { flex-direction: column; align-items: stretch; }
  .dggw-final-cta { padding: 56px 5%; }
}

/* --- Service Hero --- */
.dggw-service-hero { padding: 80px 5%; }
.dggw-service-hero__inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 768px) {
  .dggw-service-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .dggw-service-hero { padding: 56px 5%; }
}

/* --- Problem/Deliverables, Our Approach, Typical Outcomes --- */
.dggw-problem-deliverables,
.dggw-our-approach,
.dggw-typical-outcomes { padding: 72px 5%; }

.dggw-deliverables__grid,
.dggw-approach__grid,
.dggw-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 18px; margin-top: 36px;
}
@media (max-width: 600px) {
  .dggw-deliverables__grid,
  .dggw-approach__grid,
  .dggw-outcomes__grid { grid-template-columns: 1fr; }
  .dggw-problem-deliverables,
  .dggw-our-approach,
  .dggw-typical-outcomes { padding: 52px 5%; }
}

/* --- Quote Block --- */
.dggw-quote-block { padding: 60px 5%; }
.dggw-quote-block__inner {
  max-width: 860px; margin: 0 auto;
  text-align: center;
  padding: 40px 48px;
  border-radius: 20px;
  background: var(--dggw-navy,#0B1F3A);
  color: #fff;
}
.dggw-quote-block__text {
  font-size: clamp(18px,2.5vw,28px);
  font-weight: 700; line-height: 1.4; font-style: italic;
}
.dggw-quote-block__author { margin-top: 20px; font-size: 13px; opacity: .6; }
@media (max-width: 600px) {
  .dggw-quote-block__inner { padding: 28px 22px; }
}

/* --- Paired Services, Service CTA --- */
.dggw-paired-services,
.dggw-service-cta { padding: 72px 5%; }
.dggw-paired-services__grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) {
  .dggw-paired-services__grid { grid-template-columns: 1fr; }
  .dggw-paired-services, .dggw-service-cta { padding: 52px 5%; }
}

/* --- Results Grid, Featured Case, Industry Categories --- */
.dggw-results-grid,
.dggw-featured-case,
.dggw-industry-categories { padding: 72px 5%; }

.dggw-results-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 16px; margin-top: 36px;
}
.dggw-result-item {
  background: #fff; border-radius: 14px;
  padding: 24px 18px; text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.dggw-result-item__num {
  font-size: 36px; font-weight: 900;
  color: var(--dggw-orange, #F47A1F); line-height: 1;
}
.dggw-result-item__label { font-size: 12px; font-weight: 600; opacity: .6; margin-top: 6px; }

@media (max-width: 600px) {
  .dggw-results-grid__grid { grid-template-columns: repeat(2,1fr); }
  .dggw-results-grid, .dggw-featured-case, .dggw-industry-categories { padding: 52px 5%; }
}

/* --- Testimonials Grid --- */
.dggw-testimonials-grid { padding: 72px 5%; }
.dggw-testimonials-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) {
  .dggw-testimonials-grid__grid { grid-template-columns: 1fr; }
  .dggw-testimonials-grid { padding: 52px 5%; }
}

/* --- About Hero --- */
.dggw-about-hero { padding: 80px 5%; }
.dggw-about-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 768px) {
  .dggw-about-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .dggw-about-hero { padding: 56px 5%; }
}

/* --- Our Story, Mission/Vision, Our Values --- */
.dggw-our-story,
.dggw-mission-vision,
.dggw-our-values { padding: 72px 5%; }

.dggw-our-values__grid,
.dggw-mission-vision__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) {
  .dggw-our-values__grid,
  .dggw-mission-vision__grid { grid-template-columns: 1fr; }
  .dggw-our-story, .dggw-mission-vision, .dggw-our-values { padding: 52px 5%; }
}

/* --- Team Grid, Meet Team --- */
.dggw-team-grid,
.dggw-meet-team { padding: 72px 5%; }
.dggw-team-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 24px; margin-top: 40px;
}
.dggw-team-member { text-align: center; }
.dggw-team-member__photo {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4; background: #e2e8f0; margin-bottom: 16px;
}
.dggw-team-member__photo img { width:100%; height:100%; object-fit:cover; }
.dggw-team-member__name { font-size: 16px; font-weight: 700; }
.dggw-team-member__role { font-size: 13px; opacity: .6; margin-top: 4px; }
@media (max-width: 600px) {
  .dggw-team-grid__grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .dggw-team-grid, .dggw-meet-team { padding: 52px 5%; }
}
@media (max-width: 380px) {
  .dggw-team-grid__grid { grid-template-columns: 1fr; }
}

/* --- Journey Timeline --- */
.dggw-journey-timeline { padding: 72px 5%; }
.dggw-timeline {
  position: relative; margin-top: 48px;
  padding-left: 24px;
}
.dggw-timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--dggw-orange, #F47A1F);
  opacity: .2;
}
.dggw-timeline__item {
  position: relative; padding-left: 28px; margin-bottom: 36px;
}
.dggw-timeline__dot {
  position: absolute; left: -36px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--dggw-orange, #F47A1F);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--dggw-orange, #F47A1F);
}
.dggw-timeline__year  { font-size: 12px; font-weight: 700; opacity: .5; margin-bottom: 4px; }
.dggw-timeline__title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.dggw-timeline__desc  { font-size: 14px; line-height: 1.65; opacity: .72; }
@media (max-width: 600px) {
  .dggw-journey-timeline { padding: 52px 5%; }
}

/* --- Operating Principles --- */
.dggw-operating-principles { padding: 72px 5%; }
.dggw-principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 20px; margin-top: 40px;
}
@media (max-width: 600px) {
  .dggw-principles__grid { grid-template-columns: 1fr; }
  .dggw-operating-principles { padding: 52px 5%; }
}

/* --- Events --- */
.dggw-events { padding: 72px 5%; }
.dggw-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 20px; margin-top: 40px;
}
.dggw-event-card {
  background: #fff; border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.dggw-event-card__img {
  aspect-ratio: 16/9; background: #e2e8f0; overflow: hidden;
}
.dggw-event-card__img img { width:100%; height:100%; object-fit:cover; }
.dggw-event-card__body { padding: 20px; }
.dggw-event-card__date { font-size: 12px; font-weight: 600; opacity: .55; margin-bottom: 6px; }
.dggw-event-card__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.dggw-event-card__desc  { font-size: 13.5px; line-height: 1.6; opacity: .72; }
@media (max-width: 600px) {
  .dggw-events__grid { grid-template-columns: 1fr; }
  .dggw-events { padding: 52px 5%; }
}

/* --- Service FAQ --- */
.dggw-service-faq { padding: 72px 5%; }
.dggw-service-faq__items { margin-top: 36px; }
@media (max-width: 600px) {
  .dggw-service-faq { padding: 52px 5%; }
}

/* =================================================================
   GLOBAL TYPOGRAPHY RESPONSIVE HELPERS
   ================================================================= */
@media (max-width: 600px) {
  .dggw-heading,
  [class*="__heading"],
  [class*="__title"] { font-size: clamp(22px, 6vw, 32px) !important; }

  .dggw-desc,
  [class*="__desc"],
  [class*="__description"] { font-size: 14px !important; }

  .dgw-heading { font-size: clamp(22px, 6vw, 30px); }
}

/* =================================================================
   PRINT — hide animations
   ================================================================= */
@media print {
  .dgw-fade-section,
  .dggw-scroll-fade { opacity: 1 !important; transform: none !important; }
}
