/* === digiency-modern.css === */
/* Digiency 2026 - Dark theme (SEO pages unchanged) */
:root {
  --de-brand: #ff2d6a;
  --de-brand-dark: #e91e63;
  --de-brand-soft: rgba(255, 45, 106, 0.14);
  --de-bg: #0b0f19;
  --de-bg-alt: #101827;
  --de-surface: #151d2e;
  --de-surface-2: #1c2738;
  --de-navy: #0b0f19;
  --de-navy-2: #151d2e;
  --de-heading: #f1f5f9;
  --de-text: #c5ced9;
  --de-muted: #8b99ad;
  --de-border: rgba(255, 255, 255, 0.09);
  --de-border-strong: rgba(255, 255, 255, 0.14);
  --de-white: var(--de-surface);
  --de-radius: 14px;
  --de-radius-lg: 22px;
  --de-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --de-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --de-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --de-max: 1180px;
  --de-header-h: 76px;
  --de-topbar-h: 42px;
  --de-gradient-hero: linear-gradient(135deg, #0b0f19 0%, #1a2744 50%, #0b0f19 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--de-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--de-text);
  background: var(--de-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}
#form1, main, .de-page-wrap {
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #ff6b9d; text-decoration: none; transition: 0.2s; }
a:hover { color: #ff8fb1; }
h1, h2, h3, h4 { color: var(--de-heading); font-weight: 700; line-height: 1.2; margin-top: 0; }
p { margin-top: 0; }
label { color: var(--de-heading); }

.container, .custom-container {
  width: 100%;
  max-width: var(--de-max);
  margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left, 0px));
  padding-right: max(24px, env(safe-area-inset-right, 0px));
}

@media (min-width: 1200px) {
  :root { --de-max: 1320px; }
}
@media (min-width: 1600px) {
  :root { --de-max: 1440px; }
}

/* Header */
.de-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--de-border);
}
.de-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--de-header-h);
  gap: 12px;
}

@media (max-width: 991.98px) {
  .de-header__inner > nav {
    display: none;
  }

  .de-header__actions {
    margin-left: auto;
  }
}
.de-logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  border-radius: 10px;
  background: transparent !important;
  flex-shrink: 0;
}
.de-logo img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none;
}
.de-mobile-nav__logo,
.de-footer__logo {
  background: transparent !important;
}

@media (max-width: 767px) {
  .de-logo img {
    height: 50px;
    max-width: 200px;
  }
  .de-header__inner {
    min-height: 58px;
  }
}

/* Nav */
.de-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .de-header__inner > nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: 16px;
  }

  .de-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    min-width: 0;
  }

  .de-nav > li {
    position: relative;
  }

  .de-nav > li > a {
    padding: 10px 14px;
    color: var(--de-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    white-space: nowrap;
  }

  .de-nav > li > a:hover {
    background: var(--de-brand-soft);
    color: #ff8fb1;
  }

  .de-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--de-surface-2);
    border: 1px solid var(--de-border-strong);
    border-radius: var(--de-radius);
    box-shadow: var(--de-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s;
    list-style: none;
    margin: 0;
    z-index: 20;
  }

  .de-nav li:hover .de-submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .de-submenu a {
    display: block;
    padding: 10px 12px;
    color: var(--de-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
  }

  .de-submenu a:hover {
    background: var(--de-brand-soft);
    color: #ff8fb1;
  }

  .de-nav__has-mega { position: static; }

  .de-submenu--mega {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
    min-width: min(920px, 94vw);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 12px;
    padding: 16px;
  }

  .de-nav li:hover .de-submenu--mega {
    transform: translateX(-50%);
  }

  .de-submenu__col {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .de-submenu__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff8fb1;
    padding: 6px 12px 8px;
  }

  .de-submenu__hint {
    font-size: 12px;
    line-height: 1.5;
    color: var(--de-muted);
    margin: 4px 12px 12px;
  }

  .de-submenu__overview {
    font-weight: 700 !important;
    color: var(--de-heading) !important;
  }

  .de-btn--sm {
    margin: 0 12px 8px;
    padding: 10px 14px !important;
    font-size: 13px !important;
    width: calc(100% - 24px);
    justify-content: center;
  }
}

.de-solutions-group { margin-bottom: 48px; }
.de-solutions-group__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  color: var(--de-heading);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--de-border);
}
.de-solutions-group__title i { color: var(--de-brand); }
.de-card--solution {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.de-card--solution .de-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--de-brand-soft);
  color: var(--de-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.de-card--solution h3 { font-size: 1.05rem; }
.de-solution-group { margin-bottom: 48px; }
.de-solution-group__title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--de-heading);
}
.de-solution-group__title i { color: #e91e63; }
.de-solutions-grid { margin-bottom: 0; }
.de-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.de-menu-toggle {
  position: relative;
  border: 1px solid var(--de-border);
  background: var(--de-surface);
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
@media (min-width: 992px) { .de-menu-toggle { display: none; } }
.de-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--de-heading);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
  transform-origin: center;
}
.de-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.de-menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.de-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.de-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}
.de-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.de-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.de-mobile-nav.is-open .de-mobile-nav__backdrop { opacity: 1; }
.de-mobile-nav__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 92vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121a2b 0%, #0b0f19 100%);
  border-left: 1px solid var(--de-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.de-mobile-nav.is-open .de-mobile-nav__panel { transform: none; }
.de-mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--de-border);
  flex-shrink: 0;
}
.de-mobile-nav__logo img {
  height: 42px;
  width: auto;
  display: block;
  background: transparent !important;
}
.de-mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--de-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--de-heading);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.de-mobile-nav__close:hover {
  background: var(--de-brand-soft);
  border-color: rgba(255, 45, 106, 0.35);
  color: #ff8fb1;
}
.de-mobile-nav__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px 8px;
  -webkit-overflow-scrolling: touch;
}
.de-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.de-mobile-nav__list--main a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  margin-bottom: 4px;
  border-radius: 12px;
  color: var(--de-heading);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.de-mobile-nav__list--main a i {
  width: 18px;
  text-align: center;
  color: var(--de-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.de-mobile-nav__list--main li.active > a,
.de-mobile-nav__list--main a:hover {
  background: var(--de-brand-soft);
  color: #ff8fb1;
}
.de-mobile-nav__list--main li.active > a i,
.de-mobile-nav__list--main a:hover i { color: #ff8fb1; }
.de-mobile-nav__section {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--de-border);
}
.de-mobile-nav__section-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 14px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--de-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.de-mobile-nav__section-toggle span {
  display: flex;
  align-items: center;
  gap: 12px;
}
.de-mobile-nav__section-toggle span i { color: var(--de-muted); }
.de-mobile-nav__section-toggle:hover { background: rgba(255, 255, 255, 0.06); }
.de-mobile-nav__chevron {
  font-size: 12px;
  color: var(--de-muted);
  transition: transform 0.25s;
}
.de-mobile-nav__section.is-open .de-mobile-nav__chevron { transform: rotate(180deg); }
.de-mobile-nav__list--sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 4px;
}
.de-mobile-nav__section.is-open .de-mobile-nav__list--sub { max-height: 520px; }
.de-mobile-nav__list--sub a {
  display: block;
  padding: 10px 14px 10px 44px;
  color: var(--de-text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.de-mobile-nav__list--sub li.active > a,
.de-mobile-nav__list--sub a:hover {
  color: #ff8fb1;
  background: rgba(255, 45, 106, 0.08);
}
.de-mobile-nav__foot {
  flex-shrink: 0;
  padding: 14px 18px 20px;
  border-top: 1px solid var(--de-border);
  background: rgba(0, 0, 0, 0.22);
}
.de-mobile-nav__cta {
  width: 100%;
  margin-bottom: 12px;
}
.de-mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.de-mobile-nav__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--de-muted);
  transition: color 0.2s;
}
.de-mobile-nav__contact a i { color: var(--de-brand); font-size: 12px; }
.de-mobile-nav__contact a:hover { color: var(--de-heading); }
body.de-nav-open { overflow: hidden; }

/* Buttons */
.btn, .de-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--de-font);
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
}
.de-btn--primary, .btn.de-btn--primary {
  background: linear-gradient(135deg, var(--de-brand), #ff6090);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
}
.de-btn--primary:hover { transform: translateY(-2px); color: #fff !important; }
.de-btn--outline {
  background: transparent;
  color: var(--de-brand) !important;
  border: 2px solid var(--de-brand);
}
.de-btn--outline:hover { background: var(--de-brand-soft); color: #ff8fb1 !important; }
.de-btn--white {
  background: var(--de-heading);
  color: var(--de-bg) !important;
  box-shadow: var(--de-shadow-sm);
}
.de-btn--white:hover { background: #fff; color: var(--de-bg) !important; }
.de-btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Hero - home */
.de-hero:not(.de-hero-swiss) {
  position: relative;
  padding: 100px 0 80px;
  background: var(--de-gradient-hero);
  color: #fff;
  overflow: hidden;
}
.de-hero.de-hero-swiss {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #0b0f19;
}
.de-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(233, 30, 99, 0.25), transparent 50%);
  pointer-events: none;
}
.de-hero .container { position: relative; z-index: 1; }
.de-hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .de-hero__grid { grid-template-columns: 1fr 1fr; }
}
.de-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.de-hero__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  max-width: 520px;
}
.de-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.de-hero__media {
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  box-shadow: var(--de-shadow);
  border: 4px solid rgba(255, 255, 255, 0.12);
}
.de-hero__media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.de-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.de-stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--de-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.de-stat strong { display: block; font-size: 1.5rem; color: #fff; }
.de-stat span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.8; }

/* Service page hero with image */
.de-service-hero.de-hero-swiss {
  min-height: auto !important;
  align-items: flex-start !important;
  padding: 0;
}

.de-service-hero:not(.de-hero-swiss) {
  position: relative;
  padding: 0;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--de-navy);
  color: #fff;
}

.de-service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.de-service-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.55) 60%, rgba(11, 15, 25, 0.4) 100%);
}
.de-service-hero:not(.de-hero-swiss) .container {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 56px;
}
.de-service-hero h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 16px; }
.de-service-hero .de-hero__lead { color: rgba(255, 255, 255, 0.9); max-width: 640px; }

.de-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--de-brand);
  margin-bottom: 12px;
}
.de-eyebrow--hero { color: #ff8fb1; }

.de-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 24px;
  background: var(--de-bg-alt);
  border-bottom: 1px solid var(--de-border);
}
.de-trust span {
  font-size: 13px;
  font-weight: 600;
  color: var(--de-muted);
  padding: 8px 16px;
  background: var(--de-surface);
  border-radius: 999px;
  border: 1px solid var(--de-border);
}

.de-section { padding: 88px 0; }
.de-section--alt { background: var(--de-bg-alt); }
.de-section--dark {
  background: var(--de-surface);
  color: rgba(255, 255, 255, 0.88);
}
.de-section--dark h2, .de-section--dark h3 { color: #fff; }
.de-section__head { max-width: 600px; margin-bottom: 48px; }
.de-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.de-section__head h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); margin-bottom: 12px; }
.de-section__head p { color: var(--de-muted); }

.de-grid-2, .de-grid-3, .de-grid-4 { display: grid; gap: 24px; }
@media (min-width: 768px) {
  .de-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .de-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .de-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 768px) and (max-width: 991px) {
  .de-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.de-card {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 0;
  overflow: hidden;
  height: 100%;
  transition: 0.25s;
  box-shadow: var(--de-shadow-sm);
}
.de-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--de-shadow);
  border-color: rgba(255, 45, 106, 0.35);
}
.de-card__img { height: 180px; overflow: hidden; }
.de-card__img img { width: 100%; height: 100%; object-fit: cover; }
.de-card__body { padding: 24px; }
.de-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--de-brand-soft);
  color: var(--de-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.de-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.de-card h3 a { color: var(--de-heading); }
.de-card p { font-size: 15px; color: var(--de-muted); margin: 0; }

.de-section--dark .de-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}
.de-section--dark .de-card h3 a { color: #fff; }
.de-section--dark .de-card p { color: rgba(255, 255, 255, 0.75); }

.de-split {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .de-split { grid-template-columns: 1fr 1fr; }
  .de-split--reverse .de-split__img { order: 2; }
}
.de-split__img {
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  box-shadow: var(--de-shadow);
}
.de-split__img img { width: 100%; height: 400px; object-fit: cover; }

.de-value-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.de-value-list li {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
}
.de-value-list i { color: var(--de-brand); margin-top: 4px; }
.de-value-list strong { display: block; color: var(--de-heading); margin-bottom: 4px; }
.de-value-list span { font-size: 14px; color: var(--de-muted); }

.de-page-hero {
  padding: 72px 0;
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-page-hero h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 12px; }
.de-page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 640px; margin: 0 auto; }

.de-service-layout { display: grid; gap: 40px; }
@media (min-width: 992px) {
  .de-service-layout { grid-template-columns: 1fr 300px; align-items: start; }
}
.de-service-sidebar {
  background: var(--de-surface-2);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px;
  box-shadow: var(--de-shadow-sm);
  position: sticky;
  top: 100px;
}
.de-service-sidebar h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-heading);
  margin-bottom: 16px;
}
.de-service-sidebar ul { list-style: none; margin: 0 0 20px; padding: 0; }
.de-service-sidebar li { margin-bottom: 10px; }
.de-service-sidebar a { color: var(--de-heading); font-weight: 600; }
.de-sidebar-cta { padding-top: 16px; border-top: 1px solid var(--de-border); }

.de-checklist { list-style: none; margin: 0; padding: 0; }
.de-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--de-text);
}
.de-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--de-brand);
}
.de-prose p { margin-bottom: 16px; }
.de-mt { margin-top: 32px; }

.de-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) { .de-process { grid-template-columns: repeat(2, 1fr); } }
.de-process li {
  padding: 22px 22px 22px 58px;
  position: relative;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  counter-increment: step;
}
.de-process { counter-reset: step; }
.de-process li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--de-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.de-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.de-tags span {
  padding: 8px 16px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--de-heading);
}

.de-cta:not(.de-cta--signature) {
  padding: 72px 0;
  background: #0b0f19;
  border-top: 1px solid rgba(233, 30, 99, 0.35);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.de-footer {
  background: #060910;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 64px;
  border-top: 1px solid var(--de-border);
}
.de-footer a { color: rgba(255, 255, 255, 0.9); }
.de-footer a:hover { color: #fff; }
.de-footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .de-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
}
.de-footer h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.de-footer ul { list-style: none; margin: 0; padding: 0; }
.de-footer li { margin-bottom: 10px; }
.de-logo-footer, .de-footer__logo img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin-bottom: 16px;
  background: transparent !important;
}
.de-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}

.de-mobile-dock {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 14px calc(12px + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 767px) {
  .de-mobile-dock {
    display: block !important;
    visibility: visible;
    pointer-events: auto;
  }
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  .de-scroll-top { bottom: calc(92px + env(safe-area-inset-bottom, 0px)) !important; }
  .container,
  .custom-container {
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
  }
  .de-header {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
  .de-mobile-nav__panel {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .de-mobile-dock__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 4px;
    max-width: 400px;
    margin: 0 auto;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 999px;
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .de-mobile-dock__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font: inherit;
    color: #252536;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }
  .de-mobile-dock__item:active {
    transform: scale(0.96);
  }
  .de-mobile-dock__item.is-active {
    background: rgba(233, 30, 99, 0.12);
    color: #e91e63;
  }
  .de-mobile-dock__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.05rem;
    line-height: 1;
  }
  .de-mobile-dock__icon--brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
  }
  .de-mobile-dock__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }
  .de-mobile-dock__contact-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
  }
  .de-mobile-dock__contact-btn {
    width: 100%;
  }
  .de-mobile-dock__contact-expanded {
    display: none;
    align-items: center;
    gap: 6px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }
  .de-mobile-dock__contact-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    color: #fff !important;
  }
  .de-mobile-dock__contact-link svg {
    display: block;
    flex-shrink: 0;
  }
  .de-mobile-dock__contact-link--call {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
  }
  .de-mobile-dock__contact-link--wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }
  .de-mobile-dock__contact-close {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(37, 37, 54, 0.1);
    color: #252536;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  .de-mobile-dock.is-contact-open .de-mobile-dock__item:not(.de-mobile-dock__contact-link) {
    display: none;
  }
  .de-mobile-dock.is-contact-open .de-mobile-dock__contact-btn {
    display: none;
  }
  .de-mobile-dock.is-contact-open .de-mobile-dock__contact-expanded {
    display: flex;
  }
  .de-mobile-dock.is-contact-open .de-mobile-dock__contact-wrap {
    flex: 1 1 100%;
  }
  .de-mobile-dock.is-contact-open .de-mobile-dock__inner {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  body { padding-bottom: 0 !important; }
}

.de-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--de-brand);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.4);
}
.de-scroll-top.is-visible { opacity: 1; visibility: visible; }

.form-default, .de-form-box {
  background: var(--de-surface-2);
  border: 1px solid var(--de-border-strong);
  border-radius: var(--de-radius-lg);
  padding: 32px;
  box-shadow: var(--de-shadow-sm);
}
.section-form__input-field,
.de-input, .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--de-border-strong);
  border-radius: 10px;
  font-family: var(--de-font);
  font-size: 15px;
  margin-bottom: 4px;
  background: var(--de-bg);
  color: var(--de-heading);
}
.section-form__input-field::placeholder,
.form-control::placeholder { color: var(--de-muted); }
.section-form__input-field:focus, .form-control:focus {
  outline: none;
  border-color: var(--de-brand);
  box-shadow: 0 0 0 3px var(--de-brand-soft);
  background: var(--de-surface);
}
.section-form__input-field.textarea { min-height: 130px; resize: vertical; }

.accordion-item {
  border: 1px solid var(--de-border) !important;
  border-radius: var(--de-radius) !important;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--de-surface) !important;
}
.accordion-button {
  font-weight: 600;
  color: var(--de-heading) !important;
  background: var(--de-surface) !important;
}
.accordion-button:not(.collapsed) {
  background: var(--de-brand-soft) !important;
  color: #ff8fb1 !important;
  box-shadow: none !important;
}
.accordion-button::after { filter: invert(1); opacity: 0.7; }
.accordion-body {
  background: var(--de-surface) !important;
  color: var(--de-text) !important;
}

.blog-block {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--de-shadow-sm);
}
.blog-block__img { height: 200px; overflow: hidden; }
.blog-block__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-block__content { padding: 24px; }
.blog-block__heading a { color: var(--de-heading); font-weight: 700; }
.blog-block__content p { color: var(--de-muted); }

.de-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: center;
}
.de-metric {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px 16px;
  box-shadow: var(--de-shadow-sm);
}
.de-metric strong {
  display: block;
  font-size: 2rem;
  color: var(--de-brand);
  line-height: 1.1;
}
.de-metric span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--de-muted);
}
.de-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .de-gallery { grid-template-columns: repeat(4, 1fr); } }
.de-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--de-radius);
}
.de-quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .de-quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .de-quote-grid { grid-template-columns: repeat(3, 1fr); } }
.de-quote {
  margin: 0;
  padding: 28px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  box-shadow: var(--de-shadow-sm);
}
.de-quote p { margin-bottom: 16px; font-style: italic; color: var(--de-text); }
.de-quote footer { font-size: 14px; color: var(--de-heading); }
.de-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 992px) { .de-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.de-contact-info p { margin-bottom: 12px; }
.de-contact-info h3 { font-size: 1rem; margin: 24px 0 8px; }
.de-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.de-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--de-surface);
  color: var(--de-heading) !important;
  border: 1px solid var(--de-border);
}
.de-social a:hover { background: var(--de-brand); color: #fff !important; border-color: var(--de-brand); }
.de-map { margin-top: 0; }
.de-map iframe { display: block; width: 100%; min-height: 420px; border: 0; }
.no-select {
  user-select: none;
  -webkit-user-select: none;
}
.refresh-icon {
  font-size: 18px;
  color: var(--de-brand);
  cursor: pointer;
  margin-left: 10px;
  text-decoration: none;
}
.refresh-icon:hover { color: var(--de-brand-dark); }

.de-page-wrap { width: 100%; overflow-x: hidden; }
.de-img-credit {
  font-size: 11px;
  color: var(--de-muted);
  margin-top: 8px;
}

/* Page hero (new + legacy breadcrumb) */
.de-page-hero {
  padding: 88px 0 72px;
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-page-hero h1 {
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 820px;
  margin: 0 auto 16px;
}
.de-page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Legacy inner pages - modern skin without URL/SEO changes */
.breadcrumb-area { margin: 0; padding: 0; }
.breadcrumb-area .tg-breadcrumb-bg {
  min-height: 300px !important;
  display: flex !important;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
  background-image: linear-gradient(135deg, rgba(11, 15, 25, 0.94), rgba(11, 15, 25, 0.82)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&q=80") !important;
}
.tg-breadcrumb-bg, .breadcrumb-area .tg-breadcrumb-bg,
.de-page-hero { background-size: cover; background-position: center; }
.tg-breadcrumb-title, .tg-breadcrumb h1, .tg-breadcrumb h2, .tg-breadcrumb h3 {
  color: #fff !important;
  font-family: var(--de-font) !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}
.tg-breadcrumb-link { color: rgba(255, 255, 255, 0.75) !important; font-size: 14px; }
.tg-breadcrumb-link a { color: #fff !important; }
.main, .main.position-relative { padding: 0; background: var(--de-bg); }
section.blog, section.about, section.contact, section.price, .about-section,
.benefit, .service.pt-90, .client--area {
  padding: 64px 0 !important;
  font-family: var(--de-font);
  background: var(--de-bg) !important;
  color: var(--de-text) !important;
}
.section-title__main, .section-title__sub, .h2-40, .h2-30, .f2-30 {
  font-family: var(--de-font) !important;
  color: var(--de-heading) !important;
}
.section-title__sub, .primary-color { color: #ff8fb1 !important; }
.price-block, .service-block, .service-block--style5, .client-block {
  background: var(--de-surface) !important;
  border: 1px solid var(--de-border) !important;
  border-radius: var(--de-radius-lg) !important;
  box-shadow: var(--de-shadow-sm) !important;
  padding: 28px !important;
  color: var(--de-text) !important;
}
.price-block .service-block__title,
.service-block__title { color: var(--de-heading) !important; }
.client-block__text { color: var(--de-text) !important; }
.price-block .btn, .main .btn:not(.de-btn) {
  background: linear-gradient(135deg, var(--de-brand), #ff6090) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
}
.de-cta-band {
  background: var(--de-gradient-hero);
  color: #fff;
  text-align: center;
}
.de-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.de-cta-band h2 { color: #fff; margin-bottom: 8px; }
.de-cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.de-blog-grid .col-lg-4 { margin-bottom: 24px; }
.blog-block--style4, .blog-block {
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--de-shadow) !important;
}
.blog-block__img { border-radius: var(--de-radius-lg) var(--de-radius-lg) 0 0; overflow: hidden; }
.blog-block__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-brand);
  font-weight: 700;
}
.de-enquiry-wrap { max-width: 720px; margin: 0 auto; }
.service-block--style2 {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  padding: 28px;
  height: 100%;
  box-shadow: var(--de-shadow-sm);
}
.service-block--style2 img { max-width: 72px; }
.about__inner-images ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) { .about__inner-images ul { grid-template-columns: repeat(4, 1fr); } }
.about__inner-images img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--de-radius); }

.element, .tgmobile__menu, .tgmenu__wrap, #header-fixed-height { display: none !important; }
.text-muted { color: var(--de-muted) !important; }
.text-danger { color: #f87171 !important; }

/* Bootstrap + misc dark overrides */
select.form-control, select.form-control option {
  background: var(--de-bg);
  color: var(--de-heading);
}
.captcha-container {
  background: var(--de-bg) !important;
  border-color: var(--de-border) !important;
}
.captcha-image .form-control, .captcha-image label {
  background: var(--de-surface) !important;
  color: var(--de-heading) !important;
}
.update-progress-content {
  background: var(--de-surface-2) !important;
  color: var(--de-heading) !important;
}
.modal-content {
  background: var(--de-surface-2) !important;
  color: var(--de-text) !important;
  border: 1px solid var(--de-border) !important;
}
.modal-header, .modal-footer { border-color: var(--de-border) !important; }
.modal-title { color: var(--de-heading) !important; }
.btn-close { filter: invert(1); }
.accordion-body p { color: var(--de-text) !important; }
#homeFaq .accordion-button { background: var(--de-surface) !important; }

/* Legacy SVG icons on dark cards */
.service-block--style5 svg path,
.price-block svg path { stroke: #ff8fb1 !important; }
.contact-block__title { color: var(--de-heading) !important; }
.contact-block__text { color: var(--de-text) !important; }
.benefit__content p, .features-list p { color: var(--de-text) !important; }

/* Service hero with photo (solution + service pages) */
.de-hero-swiss__grid--service {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 992px) {
  .de-hero-swiss__grid--service {
    grid-template-columns: 1fr min(44%, 480px);
  }
}
.de-overview-photo {
  margin: 28px 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--de-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.de-overview-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .de-hero { padding: 72px 0 56px; }
  .de-hero__grid { grid-template-columns: 1fr !important; }
  .de-hero__media img { height: 260px; }
  .de-overview-photo img { height: 220px; }
  .de-split { grid-template-columns: 1fr !important; }
  .de-split__img img { height: 280px; }
  .de-section { padding: 56px 0; }
  .de-grid-3, .de-grid-4, .de-grid-2 { grid-template-columns: 1fr !important; }
  .de-service-sidebar { position: static; }
  .de-footer__grid { grid-template-columns: 1fr; }
}


/* === digiency-luxury.css === */
/* Digiency Luxury MNC theme - Accenture / TCS / Infosys inspired */

:root {
  --de-brand: #e91e63;
  --de-brand-glow: rgba(233, 30, 99, 0.45);
  --de-lux-line: linear-gradient(90deg, transparent, var(--de-brand), transparent);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23e91e63' fill-opacity='0.03' d='M28 0L56 16v32L28 64 0 48V16z'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.de-page-wrap, main { position: relative; z-index: 1; }

/* Top bar */
.de-topbar {
  background: #060910;
  border-bottom: 1px solid var(--de-border);
  font-size: 13px;
  color: var(--de-muted);
}
.de-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.de-topbar a { color: var(--de-heading); font-weight: 500; }
.de-topbar a:hover { color: #ff8fb1; }
.de-topbar__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff8fb1;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.35;
}

.de-topbar__contact {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 14px;
  line-height: 1.4;
}

.de-topbar__contact a {
  white-space: nowrap;
}

.de-topbar__sep {
  color: var(--de-muted);
  opacity: 0.65;
  user-select: none;
}

@media (max-width: 991px) {
  .de-topbar__inner {
    justify-content: space-between;
    align-items: center;
    gap: 6px 10px;
    padding: 7px 0;
  }
  .de-topbar__tag {
    font-size: 9px;
    letter-spacing: 0.04em;
    flex: 1 1 auto;
    min-width: 0;
  }
  .de-topbar__contact {
    flex: 0 1 auto;
    justify-content: flex-end;
    font-size: 11px;
    gap: 4px 8px;
  }
  .de-topbar__contact a {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .de-topbar {
    font-size: 11px;
  }
  .de-topbar__inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 4px;
    padding: 6px 0 7px;
  }
  .de-topbar__tag {
    width: 100%;
    justify-content: center;
    font-size: 8px;
    letter-spacing: 0.05em;
    line-height: 1.25;
    padding: 0 4px;
  }
  .de-topbar__tag i {
    font-size: 9px;
  }
  .de-topbar__contact {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 10px;
  }
  .de-topbar__sep {
    display: inline;
    font-size: 10px;
    line-height: 1;
  }
  .de-topbar__contact a {
    font-size: 11px;
    line-height: 1.3;
  }
  .de-topbar__contact a i {
    font-size: 10px;
    margin-right: 3px;
  }
}

@media (max-width: 400px) {
  .de-topbar__tag {
    font-size: 7px;
    letter-spacing: 0.03em;
  }
  .de-topbar__contact {
    flex-direction: column;
    gap: 2px;
  }
  .de-topbar__sep {
    display: none;
  }
  .de-topbar__contact a {
    font-size: 10px;
  }
}

/* Header luxury */
.de-header {
  background: rgba(8, 11, 18, 0.88) !important;
  border-bottom: 1px solid rgba(233, 30, 99, 0.15) !important;
}
.de-logo,
.de-mobile-nav__logo,
.de-footer__logo {
  background: transparent !important;
}
.de-logo img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none;
}

@media (max-width: 991px) {
  .de-logo img {
    height: 60px;
    max-width: 240px;
  }
  .de-header__inner {
    min-height: 68px;
  }
}

@media (max-width: 767px) {
  .de-logo img {
    height: 50px !important;
    max-width: 200px;
  }
  .de-header__inner {
    min-height: 58px;
    gap: 8px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .de-header__actions {
    gap: 8px;
  }
  .de-menu-toggle {
    padding: 0;
    width: 40px;
    height: 40px;
  }
}

/* Mobile drawer polish */
.de-mobile-nav__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--de-brand), transparent);
  pointer-events: none;
}
.de-mobile-nav__list--main a {
  letter-spacing: 0.01em;
}
.de-mobile-nav__section.is-open .de-mobile-nav__section-toggle {
  background: var(--de-brand-soft);
  color: #ff8fb1;
}
.de-mobile-nav__section.is-open .de-mobile-nav__section-toggle span i,
.de-mobile-nav__section.is-open .de-mobile-nav__chevron {
  color: #ff8fb1;
}
.de-nav > li > a {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.de-nav > li.active > a,
.de-nav > li > a[aria-current="page"] {
  color: #ff8fb1 !important;
  background: var(--de-brand-soft) !important;
}

/* Hero luxury */
.de-hero--lux:not(.de-hero-swiss) {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.de-hero--lux.de-hero-swiss:not(.de-service-hero) {
  position: relative;
  overflow: hidden;
}
.de-hero--lux::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--de-lux-line);
}
.de-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(233, 30, 99, 0.35);
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.08);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff8fb1;
  margin-bottom: 24px;
}
.de-hero__badge i { color: var(--de-brand); }
.de-hero--lux h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 14ch;
}
.de-hero-swiss.de-hero--lux h1,
.de-hero-swiss .de-hero-swiss__content h1 {
  max-width: none;
}
.de-hero--lux .de-hero__lead {
  font-size: 1.2rem;
  max-width: 540px;
  line-height: 1.75;
}
.de-hero__hex {
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: 20%;
  background: radial-gradient(circle, var(--de-brand-glow), transparent 70%);
  opacity: 0.35;
  pointer-events: none;
  filter: blur(40px);
}

/* Marquee / trust */
.de-marquee {
  padding: 20px 0;
  background: var(--de-bg-alt);
  border-bottom: 1px solid var(--de-border);
  overflow: hidden;
}
.de-marquee__track {
  display: flex;
  gap: 48px;
  animation: de-marquee 40s linear infinite;
  width: max-content;
}
.de-marquee__track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--de-muted);
  white-space: nowrap;
}
.de-marquee__track span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--de-brand);
  margin-right: 16px;
  transform: rotate(45deg);
  vertical-align: middle;
}
@keyframes de-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Metrics band â€” compact strip with icons */
.de-metrics-band {
  padding: 18px 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(11, 15, 25, 0.98));
  border-top: 1px solid rgba(233, 30, 99, 0.2);
  border-bottom: 1px solid var(--de-border);
}
.de-metrics-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}
@media (min-width: 768px) {
  .de-metrics-band__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.de-metric-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.de-metric-tile__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.35), rgba(233, 30, 99, 0.12));
  color: #ff80ab;
  font-size: 1rem;
}
.de-metric-tile__text strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.de-metric-tile__text span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-muted);
  margin-top: 2px;
  display: block;
  line-height: 1.3;
}
/* Legacy plain divs (if any page not migrated) */
.de-metrics-band__grid > div:not(.de-metric-tile) {
  text-align: center;
}
.de-metrics-band__grid > div:not(.de-metric-tile) strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
}
.de-metrics-band__grid > div:not(.de-metric-tile) span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--de-muted);
  margin-top: 4px;
  display: block;
}

/* Pillars */
.de-pillar {
  padding: 32px;
  background: linear-gradient(145deg, var(--de-surface), var(--de-surface-2));
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.de-pillar:hover {
  border-color: rgba(233, 30, 99, 0.4);
  transform: translateY(-4px);
}
.de-pillar__num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(233, 30, 99, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.de-pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.de-pillar p { font-size: 15px; margin: 0; }

/* Timeline */
.de-lux-timeline {
  display: grid;
  gap: 0;
  position: relative;
}
@media (min-width: 992px) {
  .de-lux-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .de-lux-timeline::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--de-brand), rgba(233, 30, 99, 0.2));
  }
}
.de-lux-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.de-lux-step__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--de-surface-2);
  border: 2px solid var(--de-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ff8fb1;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.de-lux-step h3 { font-size: 1rem; margin-bottom: 8px; }
.de-lux-step p { font-size: 14px; color: var(--de-muted); margin: 0; }

/* Industries */
.de-industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .de-industry-grid { grid-template-columns: repeat(4, 1fr); } }
.de-industry {
  padding: 24px 20px;
  text-align: center;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius);
  transition: 0.2s;
}
.de-industry:hover {
  border-color: var(--de-brand);
  background: var(--de-brand-soft);
}
.de-industry i {
  font-size: 28px;
  color: var(--de-brand);
  margin-bottom: 12px;
}
.de-industry span {
  font-size: 14px;
  font-weight: 600;
  color: var(--de-heading);
}

/* Outcomes */
.de-outcome {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--de-border);
  border-radius: var(--de-radius-lg);
  background: var(--de-surface);
}
.de-outcome strong {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--de-brand);
  display: block;
  line-height: 1;
}
.de-outcome span { font-size: 14px; color: var(--de-muted); margin-top: 8px; display: block; }

.de-case-study-grid { gap: 24px; }
.de-case-study {
  background: linear-gradient(145deg, rgba(21, 29, 46, 0.95), rgba(12, 16, 28, 0.98));
  border: 1px solid rgba(233, 30, 99, 0.18);
  border-radius: 16px;
  padding: 28px 26px;
  height: 100%;
}
.de-case-study__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff8fa8;
  margin-bottom: 12px;
}
.de-case-study h3 { font-size: 1.15rem; margin-bottom: 12px; color: #fff; }
.de-case-study p { color: var(--de-muted); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.de-case-study__metric strong {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  line-height: 1.1;
}
.de-case-study__metric span { font-size: 13px; color: var(--de-muted); }

.de-industry-grid--detail { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.de-industry--detail {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 18px;
  min-height: 140px;
  gap: 8px;
}
.de-industry--detail i { font-size: 1.25rem; color: #ff6b8a; margin-bottom: 4px; }
.de-industry--detail strong { display: block; color: #fff; font-size: 15px; }
.de-industry--detail p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--de-muted);
}

.de-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.de-comparison-block + .de-comparison-block {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.de-comparison-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--de-muted);
  font-size: 16px;
  line-height: 1.65;
}
.de-table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: 14px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  background: rgba(12, 16, 28, 0.6);
}
.de-comparison-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
.de-comparison-table caption { padding: 0; }
.de-comparison-table thead th {
  background: rgba(233, 30, 99, 0.12);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.de-comparison-table tbody th[scope="row"] {
  color: #ff8fa8;
  font-weight: 600;
  text-align: left;
  vertical-align: top;
  padding: 14px 16px;
  width: 22%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.de-comparison-table td {
  color: var(--de-muted);
  line-height: 1.55;
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.de-comparison-table tr:last-child th,
.de-comparison-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 767px) {
  .de-comparison-table { font-size: 13px; }
  .de-comparison-table thead th,
  .de-comparison-table tbody th,
  .de-comparison-table td { padding: 12px 10px; }
}

/* Tech tags */
.de-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.de-tech-tags span {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--de-border);
  border-radius: 8px;
  background: var(--de-surface);
  color: var(--de-heading);
}

/* Section title luxury */
.de-section__head--lux h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  letter-spacing: -0.025em;
}
.de-section__head--lux p {
  font-size: 1.05rem;
  max-width: 640px;
}
.de-section__head--center.de-section__head--lux p { margin-left: auto; margin-right: auto; }

.de-divider {
  height: 1px;
  background: var(--de-lux-line);
  margin: 0 auto 48px;
  max-width: 200px;
}

/* Card luxury */
.de-card--lux .de-card__body { padding: 28px; }
.de-card--lux h3 { font-size: 1.2rem; }

/* Page hero luxury */
.de-page-hero--lux:not(.de-hero-swiss) {
  position: relative;
  padding: 100px 0 80px;
}
.de-page-hero--lux.de-hero-swiss:not(.de-service-hero) {
  position: relative;
}

.de-service-hero.de-hero-swiss.de-page-hero--lux {
  padding-top: clamp(8px, 1.5vw, 16px) !important;
  padding-bottom: clamp(20px, 3vw, 36px) !important;
}
.de-page-hero--lux::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(233, 30, 99, 0.15), transparent);
  pointer-events: none;
}

/* Animated global network banner â€” canvas (Insights, Careers, Contact, Quick enquiry) */
.de-page-hero--global-banner,
.de-cta--global-banner {
  position: relative;
  overflow: hidden;
  background: #050810 !important;
  background-image: none !important;
}

.de-page-hero--global-banner.de-page-hero--lux::before {
  display: none;
}

.de-banner-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050810 url("../images/banners/global-connect-hero.png") center center / cover no-repeat;
}

/* SVG network lines â€” pulses travel along country routes on the map */
.de-banner-anim__network {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.de-banner-anim__network svg {
  display: block;
  width: 100%;
  height: 100%;
}

.de-banner-anim__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.9) 0%,
    rgba(5, 8, 16, 0.08) 38%,
    rgba(5, 8, 16, 0.12) 62%,
    rgba(5, 8, 16, 0.82) 100%
  );
  pointer-events: none;
}

@keyframes de-net-fallback {
  to { stroke-dashoffset: -240; }
}

.de-page-hero--global-banner {
  min-height: clamp(220px, 38vw, 340px);
  display: flex;
  align-items: center;
}

.de-page-hero--global-banner .container {
  position: relative;
  z-index: 2;
}

.de-cta--global-banner .de-cta__overlay {
  z-index: 1;
}

.de-cta--global-banner .de-cta__card {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .de-page-hero--global-banner {
    min-height: clamp(200px, 42vw, 280px);
    padding: 56px 0 48px;
  }
  .de-banner-anim,
  .de-banner-anim--fallback {
    background-position: center center;
  }
  .de-banner-anim__shade {
    background: linear-gradient(
      180deg,
      rgba(8, 10, 18, 0.88) 0%,
      rgba(8, 10, 18, 0.58) 45%,
      rgba(8, 10, 18, 0.86) 100%
    );
  }
  .de-page-hero--global-banner h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

@media (max-width: 575px) {
  .de-page-hero--global-banner {
    min-height: 200px;
    padding: 44px 0 40px;
    text-align: center;
  }
  .de-page-hero--global-banner p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .de-banner-anim__lines {
    display: none;
  }
}

/* Pre-footer CTA â€” signature panel */
.de-cta--signature {
  position: relative;
  padding: 88px 0;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}
.de-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 9, 16, 0.92) 0%, rgba(6, 9, 16, 0.78) 50%, rgba(233, 30, 99, 0.22) 100%);
  pointer-events: none;
}
.de-cta__card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: 20px;
  border: 1px solid rgba(233, 30, 99, 0.45);
  background: rgba(12, 16, 28, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.de-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8fb1;
  margin-bottom: 16px;
}
.de-cta--signature h2,
.de-cta--signature .de-cta__title {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.de-cta--signature p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.de-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.de-btn--primary {
  background: linear-gradient(135deg, #e91e63, #ff4081) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px !important;
  padding: 16px 32px !important;
}

.de-eyebrow {
  letter-spacing: 0.16em;
}
.de-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--de-brand);
  margin-right: 12px;
  vertical-align: middle;
}

/* Reveal on scroll */
.de-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.de-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes de-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes de-hero-glow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.65; }
}
.de-anim-float {
  animation: de-float 5s ease-in-out infinite;
}
.de-anim-page .de-page-hero--lux h1,
.de-anim-page .de-service-hero h1 {
  animation: de-hero-glow 0.01s; /* trigger paint; reveal via .de-reveal */
}
.de-service-hero {
  position: relative;
  overflow: hidden;
}
.de-service-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 58%;
}
.de-service-hero__vector {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42vw, 520px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(233, 30, 99, 0.2));
}
.de-service-hero__bg {
  background-size: cover !important;
  background-position: center !important;
}
.de-card__img img[src$=".svg"] {
  object-fit: cover;
  width: 100%;
  height: 220px;
  background: #0f1420;
}
.de-page-wrap .de-section,
.de-page-wrap .de-metrics-band {
  animation: none;
}
.de-page-wrap .de-section.de-reveal,
.de-page-wrap .de-card.de-reveal {
  /* scroll reveal handled in digiency-site.js */
}

@media (max-width: 991px) {
  .de-service-hero__inner { max-width: 100%; }
  .de-service-hero__vector {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 24px auto 0;
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .de-marquee__track { animation: none; }
  .de-reveal { opacity: 1; transform: none; }
  .de-anim-float { animation: none; }
}

/* Signature footer */
.de-footer--signature {
  position: relative;
  background: #05070d;
  padding-top: 0;
  overflow: hidden;
}
.de-footer__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(233, 30, 99, 0.25), transparent 70%);
  pointer-events: none;
}
.de-footer__cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.de-footer__cta-text h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 8px 0 0;
}
.de-footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.de-footer__main {
  display: grid;
  gap: 40px;
  padding: 48px 0 32px;
}
@media (min-width: 992px) {
  .de-footer__main { grid-template-columns: 1.05fr 1.5fr 1fr 0.95fr 1.1fr; }
}
.de-footer__tagline {
  color: var(--de-muted);
  max-width: 300px;
  margin: 16px 0;
  line-height: 1.6;
  font-size: 13px;
}
.de-footer__trust {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.de-footer__trust li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.de-footer__trust i { color: #e91e63; margin-right: 8px; }
.de-footer__hex {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e91e63;
  transform: rotate(45deg);
  margin-right: 10px;
  vertical-align: middle;
}
.de-footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}
.de-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.de-footer__col ul li {
  margin-bottom: 10px;
}
.de-footer__col ul a {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}
.de-footer__col ul a:hover {
  color: #fff;
}
.de-footer__col--services ul a {
  white-space: nowrap;
  display: block;
}
.de-footer__social { display: flex; gap: 10px; }
.de-footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(233, 30, 99, 0.35);
  background: rgba(233, 30, 99, 0.08);
  color: #ff8fb1;
}
.de-footer__social a:hover { background: #e91e63; color: #fff; border-color: #e91e63; }
.de-footer__contact-card {
  background: linear-gradient(145deg, #121a2a, #0d111c);
  border: 1px solid rgba(233, 30, 99, 0.25);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.de-footer__contact-card p {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}
.de-footer__contact-card i { color: #e91e63; width: 18px; margin-right: 8px; }
.de-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #ff8fb1 !important;
  margin-top: 8px;
}
.de-footer__legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.de-footer__legal-links a { font-size: 13px; color: var(--de-muted); }
.de-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 28px;
}
.de-footer__bottom-inner {
  text-align: center;
}
.de-footer__bottom-inner p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.de-footer__mono {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 8px 0 0;
}

@media (max-width: 767px) {
  .de-footer--signature > .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .de-footer__cta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 0;
  }
  .de-footer__cta-actions {
    width: 100%;
  }
  .de-footer__cta-actions .de-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .de-footer__main {
    padding: 36px 0 24px;
    gap: 28px;
  }
  .de-footer__brand,
  .de-footer__col {
    padding-left: 0;
    padding-right: 0;
  }
  .de-footer__bottom {
    padding: 18px 0 20px;
  }
  .de-footer--signature {
    margin-bottom: 0;
  }
}

/* 404 page */
.de-page-404 {
  min-height: clamp(280px, 50vw, 420px);
  display: flex;
  align-items: center;
  padding: 72px 0 64px;
  background: linear-gradient(160deg, #0b0f19 0%, #121a2b 50%, #0b0f19 100%);
}
.de-page-404 h1 {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  margin-bottom: 12px;
}
.de-page-404 p {
  max-width: 520px;
  color: var(--de-muted);
}
.de-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.de-404__links .de-card--link {
  display: block;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.de-404__links .de-card--link i {
  font-size: 1.25rem;
  color: #ff8fb1;
  margin-bottom: 12px;
}
.de-404__links .de-card--link h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  color: var(--de-heading);
}
.de-404__links .de-card--link p {
  margin: 0;
  font-size: 14px;
  color: var(--de-muted);
}
.de-404__links .de-card--link:hover {
  border-color: rgba(233, 30, 99, 0.45);
  transform: translateY(-2px);
}

/* Home service matrix */
.de-svc-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .de-svc-matrix { grid-template-columns: repeat(4, 1fr); } }
.de-svc-tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px solid var(--de-border);
  background: var(--de-surface);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.de-svc-tile:hover {
  border-color: rgba(233, 30, 99, 0.5);
  transform: translateY(-3px);
  color: #fff;
}
.de-svc-tile i { font-size: 1.4rem; color: #e91e63; }
.de-svc-tile strong { font-size: 15px; color: #fff; }
.de-svc-tile span { font-size: 13px; color: var(--de-muted); }

/* Homepage services + custom software */
.de-home-services { padding-top: 88px; padding-bottom: 72px; }
.de-home-software { padding-top: 88px; padding-bottom: 88px; }
.de-home-section-cta {
  text-align: center;
  margin: 56px 0 0;
  padding-top: 8px;
}

.de-soft-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--de-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--de-muted);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.de-soft-tabs__btn i { color: #e91e63; }
.de-soft-tabs__btn:hover,
.de-soft-tabs__btn.is-active {
  border-color: rgba(233, 30, 99, 0.55);
  background: rgba(233, 30, 99, 0.08);
  color: #fff;
  transform: translateY(-1px);
}

.de-home-svc-grid { gap: 28px; margin-bottom: 0; }
.de-card--home-svc {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.de-card--home-svc:hover {
  border-color: rgba(233, 30, 99, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.de-card--home-svc .de-card__img { height: 200px; }
.de-card--home-svc .de-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}
.de-home-svc-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(233, 30, 99, 0.12);
  color: #ff8fb1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.de-card--home-svc h3 { font-size: 1.15rem; margin-bottom: 10px; }
.de-card--home-svc p { flex: 1; margin-bottom: 18px; line-height: 1.65; }
.de-home-svc-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #ff8fb1;
}
.de-home-svc-link i {
  flex-shrink: 0;
  margin-top: 3px;
}
.de-home-svc-link:hover { color: #fff; }

.de-home-soft-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0 auto 36px;
  padding: 0;
  max-width: 560px;
}
.de-home-software .de-section__head a { color: #ff8fb1; }
.de-home-soft-stats li {
  min-width: 120px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--de-border);
  background: var(--de-surface);
  text-align: center;
}
.de-home-soft-stats strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.1;
}
.de-home-soft-stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--de-muted);
}

.de-soft-tabs { margin-top: 8px; }
.de-soft-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  scrollbar-width: thin;
}
.de-soft-tabs__btn { white-space: nowrap; flex: 0 0 auto; }
.de-soft-tabs__btn span { font-size: 14px; }
.de-soft-tabs__panel[hidden] { display: none !important; }
.de-home-soft-grid { gap: 24px; }
.de-card--home-soft {
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s, transform 0.2s;
}
.de-card--home-soft:hover {
  border-color: rgba(233, 30, 99, 0.45);
  transform: translateY(-3px);
}
.de-card--home-soft h3 { font-size: 1.05rem; }

@media (max-width: 767px) {
  .de-soft-tabs__btn {
    width: auto;
    justify-content: center;
  }
  .de-home-section-cta { margin-top: 48px; }
}

/* Service deliverables */
.de-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .de-deliverables { grid-template-columns: repeat(3, 1fr); } }
.de-deliverable {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 10px;
  background: var(--de-surface);
  border: 1px solid var(--de-border);
}
.de-deliverable i { color: #e91e63; font-size: 1.2rem; }
.de-deliverable span { font-weight: 500; color: #fff; }

/* Sitemap */
.de-sitemap-section { padding-bottom: 80px; }
.de-sitemap-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .de-sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
.de-sitemap-col__title {
  font-size: 1.25rem;
  margin: 32px 0 16px;
  color: #fff;
}
.de-sitemap-col__title--lg { font-size: 1.4rem; margin-top: 48px; }
.de-sitemap-col__title a { color: #fff; }
.de-sitemap-col__title a:hover { color: #ff8fb1; }
.de-sitemap-section .sitemap-pages ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.de-sitemap-section .sitemap-pages li {
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 2px solid rgba(233, 30, 99, 0.35);
}
.de-sitemap-section .sitemap-pages a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}
.de-sitemap-section .sitemap-pages a:hover { color: #ff8fb1; }
.de-sitemap-note { margin-bottom: 16px; font-size: 14px; }
.de-sitemap-note a { color: #ff8fb1; font-weight: 600; }
.de-sitemap-col--wide { grid-column: span 1; }
@media (min-width: 992px) {
  .de-sitemap-grid { grid-template-columns: 1fr 1fr; }
  .de-sitemap-col--wide { grid-column: span 1; }
}
@media (min-width: 1400px) {
  .de-sitemap-grid { grid-template-columns: repeat(4, 1fr); }
}
.h2-keyword { font-size: 1.35rem; color: #fff; margin-top: 1.5rem; }

/* Service page layout */
.de-service-layout {
  display: grid;
  gap: 48px;
}
@media (min-width: 992px) {
  .de-service-layout { grid-template-columns: 1fr 300px; }
}
.de-service-sidebar {
  background: var(--de-surface);
  border: 1px solid var(--de-border);
  border-radius: 12px;
  padding: 24px;
  height: fit-content;
}
.de-service-sidebar ul { list-style: none; margin: 0; padding: 0; }
.de-service-sidebar li { margin-bottom: 10px; }
.de-sidebar-cta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--de-border); }

/* Careers modal */
#myModal .modal-content {
  background: #151d2e;
  border: 1px solid rgba(233, 30, 99, 0.25);
  color: #fff;
}
#myModal .modal-header { border-bottom-color: rgba(255,255,255,0.1); }
#myModal .btn.de-btn--primary, #myModal .de-btn--primary { margin-top: 8px; }

/* Breadcrumb */
.de-breadcrumb { margin-bottom: 14px; }
.de-section--compact { padding-top: 18px; padding-bottom: 0; }
.de-section--compact .de-breadcrumb { margin-bottom: 0; }
.de-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}
.de-breadcrumb__list li { display: inline-flex; align-items: center; }
.de-breadcrumb__list li + li::before {
  content: "/";
  margin: 0 10px;
  opacity: 0.45;
  color: rgba(255, 255, 255, 0.5);
}
.de-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.de-breadcrumb__list a:hover { color: #fff; text-decoration: underline; }
.de-breadcrumb__list [aria-current="page"] { color: #ff6b8a; font-weight: 500; }
.de-page-hero--global-banner .de-breadcrumb__list,
.de-page-hero--global-banner .de-breadcrumb__list a { color: rgba(255, 255, 255, 0.75); }
.de-page-hero--global-banner .de-breadcrumb__list [aria-current="page"] { color: #ff8fa8; }

/* After-FAQ guide blocks (web design page) */
.de-after-faq .de-after-faq__block + .de-after-faq__block { margin-top: 56px; padding-top: 56px; border-top: 1px solid var(--de-border); }
.de-after-faq .de-divider { margin: 28px auto 36px; max-width: 280px; }
.de-after-faq .de-value-list { margin-top: 28px; }
.de-after-faq .de-after-faq__lead { max-width: 720px; margin: 16px auto 0; color: var(--de-muted); text-align: center; }
.de-after-faq .de-after-faq__footnote { max-width: 680px; margin: 28px auto 0; text-align: center; color: var(--de-muted); font-size: 15px; }
.de-after-faq .de-card--lux .de-card__icon { margin-bottom: 16px; }


/* === digiency-hero-swiss.css === */
/* Full-bleed perspective grid + particles (Digiency brand colors) */

.de-hero-swiss {
  position: relative;
  overflow: hidden;
  /* Content already sits below topbar + header in document flow â€” no double offset */
  padding: clamp(20px, 3vw, 36px) 0 clamp(40px, 6vw, 72px);
  background: #0b0f19;
  min-height: min(82vh, 640px);
  display: flex;
  align-items: center;
  margin-top: 0;
}

/* Cancel stacked padding from luxury/modern hero rules */
.de-hero.de-hero-swiss.de-hero--lux,
.de-hero-swiss.de-page-hero--lux,
.de-hero-swiss.de-service-hero {
  padding-top: clamp(20px, 3vw, 36px) !important;
  padding-bottom: clamp(40px, 6vw, 64px) !important;
}

.de-hero-swiss.de-service-hero.de-hero.de-hero--lux {
  padding-top: clamp(8px, 1.5vw, 16px) !important;
  padding-bottom: clamp(20px, 3vw, 36px) !important;
}

/* Remove legacy service-hero container offset (was causing large gap under menu) */
.de-hero-swiss.de-service-hero .container,
.de-hero-swiss .de-hero-swiss__content-wrap,
.de-hero-swiss .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.de-hero-gridfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.de-hero-gridfx__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.de-hero-gridfx__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.de-hero-gridfx__glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 28%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(233, 30, 99, 0.22) 45%,
    rgba(255, 64, 129, 0.12) 70%,
    transparent 100%
  );
  filter: blur(28px);
  animation: de-horizon-pulse 6s ease-in-out infinite;
}

.de-hero-gridfx__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11, 15, 25, 0.92) 0%,
    rgba(11, 15, 25, 0.72) 38%,
    rgba(11, 15, 25, 0.35) 62%,
    rgba(11, 15, 25, 0.55) 100%
  );
}

.de-hero-gridfx__cta {
  position: absolute;
  pointer-events: auto;
  right: clamp(16px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, #c2185b 0%, #e91e63 45%, #ff4081 100%);
  color: #fff !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1), filter 0.35s ease;
  animation: de-cta-banner-glow 3.2s ease-in-out infinite;
}

/* Ripple rings â€” banner feels active without touching the menu */
.de-hero-gridfx__cta::before,
.de-hero-gridfx__cta::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  border: 1px solid rgba(255, 140, 180, 0.52);
  animation: de-cta-banner-ring 2.65s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.de-hero-gridfx__cta::after {
  border-color: rgba(233, 30, 99, 0.32);
  animation-delay: 0.95s;
}

.de-hero-gridfx__cta:hover {
  transform: translateY(-50%) scale(1.08);
  filter: brightness(1.08);
  color: #fff !important;
}

.de-hero-gridfx__cta:hover::before,
.de-hero-gridfx__cta:hover::after {
  animation-play-state: paused;
  opacity: 0;
}

.de-hero-swiss__content-wrap,
.de-hero-swiss__grid {
  position: relative;
  z-index: 1;
  width: 100%;
}

.de-hero-swiss__grid {
  display: block;
  max-width: 100%;
}

.de-hero-swiss__content,
.de-hero-swiss__content-wrap .de-hero-swiss__content {
  max-width: 40rem;
}

.de-hero-swiss__aside {
  margin-top: 28px;
}

.de-hero__stats--panel .de-stat {
  text-align: left;
  padding: 18px 20px;
}

@media (min-width: 992px) {
  .de-hero-swiss:not(.de-service-hero) .de-hero-swiss__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(32px, 4vw, 72px);
    align-items: center;
  }

  .de-hero-swiss:not(.de-service-hero) .de-hero-swiss__content {
    max-width: none;
  }

  .de-hero-swiss__aside {
    margin-top: 0;
  }

  .de-hero__stats--panel {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .de-hero__stats--panel .de-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
  }

  .de-hero__stats--panel .de-stat strong {
    font-size: 1.75rem;
    flex-shrink: 0;
  }

  .de-hero__stats--panel .de-stat span {
    text-align: right;
    font-size: 12px;
    line-height: 1.35;
  }

  .de-hero-gridfx__vignette {
    background: linear-gradient(
      105deg,
      rgba(11, 15, 25, 0.88) 0%,
      rgba(11, 15, 25, 0.5) 38%,
      rgba(11, 15, 25, 0.22) 62%,
      rgba(11, 15, 25, 0.42) 100%
    );
  }

  .de-hero-swiss:not(.de-service-hero) .de-hero-gridfx__cta {
    display: none;
  }
}

.de-hero-swiss__content h1,
.de-hero-swiss__content-wrap h1 {
  font-size: clamp(1.85rem, 5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.de-hero-swiss__content .de-hero__lead,
.de-hero-swiss__content-wrap .de-hero__lead {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.de-hero-swiss__stage {
  display: none;
}

.de-service-hero.de-hero-swiss {
  min-height: auto !important;
  max-height: none;
  align-items: flex-start !important;
  justify-content: flex-start;
  padding-top: clamp(8px, 1.5vw, 16px) !important;
  padding-bottom: clamp(20px, 3vw, 36px) !important;
}

.de-service-hero.de-hero-swiss .de-hero-swiss__content-wrap {
  padding-top: 0 !important;
  margin-top: 0;
}

.de-service-hero .de-service-hero__bg,
.de-service-hero .de-service-hero__vector {
  display: none !important;
}

/* Inner page heroes â€” content starts below header (no viewport centering gap) */
.de-hero-swiss:not(.de-service-hero):not([data-hero-key="home"]) {
  min-height: auto !important;
  max-height: none;
  align-items: flex-start !important;
  justify-content: flex-start;
  padding-top: clamp(16px, 2vw, 28px) !important;
  padding-bottom: clamp(32px, 5vw, 56px) !important;
}

/* Home hero only â€” full viewport presence */
.de-hero--lux.de-hero-swiss:not(.de-service-hero)[data-hero-key="home"],
.de-hero.de-hero-swiss:not(.de-service-hero)[data-hero-key="home"] {
  min-height: min(88vh, 720px);
  align-items: center;
}

@keyframes de-horizon-pulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@keyframes de-cta-banner-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 0 26px rgba(233, 30, 99, 0.55),
      0 8px 30px rgba(0, 0, 0, 0.4);
    filter: brightness(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2) inset,
      0 0 46px rgba(255, 64, 129, 0.72),
      0 12px 40px rgba(0, 0, 0, 0.46);
    filter: brightness(1.07);
  }
}

@keyframes de-cta-banner-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .de-hero__stats--panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .de-hero__stats--panel .de-stat {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 16px 8px;
  }

  .de-hero__stats--panel .de-stat span {
    text-align: center;
    font-size: 11px;
  }

  .de-hero-swiss {
    min-height: auto;
    padding-top: clamp(16px, 4vw, 28px) !important;
  }
  .de-service-hero.de-hero-swiss {
    min-height: auto !important;
    padding-top: 8px !important;
  }
  .de-hero-gridfx__cta {
    right: 16px;
    top: auto;
    bottom: 24px;
    transform: none;
    min-width: 44px;
    min-height: 44px;
    font-size: 9px;
  }
  .de-hero-gridfx__cta:hover {
    transform: scale(1.08);
    filter: brightness(1.08);
  }
  .de-hero-gridfx__vignette {
    background: linear-gradient(
      180deg,
      rgba(11, 15, 25, 0.88) 0%,
      rgba(11, 15, 25, 0.65) 45%,
      rgba(11, 15, 25, 0.85) 100%
    );
  }
}

@media (prefers-reduced-motion: reduce) {
  .de-hero-gridfx__glow,
  .de-hero-gridfx__cta {
    animation: none !important;
  }
  .de-hero-gridfx__cta {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.12) inset,
      0 0 26px rgba(233, 30, 99, 0.5),
      0 8px 30px rgba(0, 0, 0, 0.38);
  }
  .de-hero-gridfx__cta::before,
  .de-hero-gridfx__cta::after {
    animation: none !important;
    opacity: 0 !important;
  }
}


