/* 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 img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

@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--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; }

/* 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-connect banner — GIF-style motion (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;
}

/* Star field twinkle */
.de-banner-anim__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 28% 8%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 45% 22%, rgba(200, 230, 255, 0.85), transparent),
    radial-gradient(1px 1px at 62% 12%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 78% 20%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.5px 1.5px at 88% 10%, rgba(180, 220, 255, 0.9), transparent),
    radial-gradient(1px 1px at 22% 32%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 55% 28%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 72% 35%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 35% 14%, rgba(255, 255, 255, 0.8), transparent);
  animation: de-banner-stars 6s ease-in-out infinite;
}

.de-banner-anim__flare-top {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 55%;
  height: 55%;
  margin-left: -27.5%;
  background: radial-gradient(ellipse at center, rgba(80, 180, 255, 0.35) 0%, transparent 70%);
  animation: de-banner-flare-top 5s ease-in-out infinite;
}

/* Earth photo — anchored to bottom like the reference image */
.de-banner-anim__img {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -18%;
  top: -5%;
  background: url("../images/banners/global-connect-hero.png") center 72% / cover no-repeat;
  transform-origin: 50% 85%;
  animation:
    de-banner-earth-breathe 8s ease-in-out infinite,
    de-banner-earth-shift 20s ease-in-out infinite alternate;
  will-change: transform, filter;
}

/* SVG overlay — drawing arcs + traveling packets (GIF-like loop) */
.de-banner-anim__motion {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 72%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.92;
  mix-blend-mode: screen;
  animation: de-banner-motion-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* City lights shimmer on globe */
.de-banner-anim__lights {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 55%;
  background:
    radial-gradient(ellipse 8% 5% at 32% 78%, rgba(255, 200, 80, 0.9), transparent),
    radial-gradient(ellipse 6% 4% at 48% 82%, rgba(255, 180, 60, 0.85), transparent),
    radial-gradient(ellipse 7% 5% at 58% 76%, rgba(255, 210, 100, 0.8), transparent),
    radial-gradient(ellipse 9% 6% at 42% 74%, rgba(255, 160, 50, 0.75), transparent),
    radial-gradient(ellipse 5% 4% at 52% 70%, rgba(255, 190, 70, 0.7), transparent);
  mix-blend-mode: screen;
  animation: de-banner-lights 2.5s ease-in-out infinite;
  pointer-events: none;
}

.de-banner-anim__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% 92%, rgba(255, 120, 40, 0.5), transparent 70%),
    radial-gradient(ellipse 50% 30% at 50% 88%, rgba(233, 30, 99, 0.25), transparent),
    radial-gradient(ellipse 100% 25% at 50% 100%, rgba(110, 200, 255, 0.22), transparent 55%);
  animation: de-banner-glow-pulse 3s ease-in-out infinite;
}

.de-banner-anim__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 200, 120, 0.12) 48%,
    rgba(255, 255, 255, 0.08) 52%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: de-banner-scan 5s linear infinite;
}

.de-banner-anim__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 8, 16, 0.88) 0%,
    rgba(5, 8, 16, 0.45) 38%,
    rgba(5, 8, 16, 0.55) 62%,
    rgba(5, 8, 16, 0.82) 100%
  );
}

.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;
}

@keyframes de-banner-earth-breathe {
  0%, 100% {
    filter: brightness(1) saturate(1.08) contrast(1.02);
  }
  50% {
    filter: brightness(1.14) saturate(1.2) contrast(1.05);
  }
}

@keyframes de-banner-earth-shift {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1.5%, -0.5%);
  }
}

@keyframes de-banner-stars {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes de-banner-flare-top {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

@keyframes de-banner-motion-pulse {
  0%, 100% { opacity: 0.78; }
  50% { opacity: 1; }
}

@keyframes de-banner-lights {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  33% { opacity: 0.85; transform: scale(1.02); }
  66% { opacity: 0.5; transform: scale(0.98); }
}

@keyframes de-banner-glow-pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

@keyframes de-banner-scan {
  0% {
    background-position: 130% 0;
  }
  100% {
    background-position: -130% 0;
  }
}

@media (max-width: 991px) {
  .de-page-hero--global-banner {
    min-height: clamp(200px, 42vw, 280px);
    padding: 56px 0 48px;
  }
  .de-banner-anim__img {
    left: -5%;
    right: -5%;
    bottom: -12%;
    animation-duration: 10s, 16s;
  }
  .de-banner-anim__motion {
    height: 78%;
    opacity: 0.85;
  }
  .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;
  }
  .de-banner-anim__motion {
    height: 82%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .de-banner-anim__img,
  .de-banner-anim__motion,
  .de-banner-anim__lights,
  .de-banner-anim__glow,
  .de-banner-anim__stars,
  .de-banner-anim__flare-top,
  .de-banner-anim__scan {
    animation: none !important;
  }
  .de-banner-anim__motion {
    opacity: 0.65;
  }
}

/* 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 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.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.35fr 1fr 1fr 1.15fr; }
}
.de-footer__tagline { color: var(--de-muted); max-width: 300px; margin: 16px 0; line-height: 1.6; }
.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__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: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.8); }
.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__mono {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 8px 0 0;
}

/* 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); }

/* 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); }
}
@media (min-width: 1200px) {
  .de-sitemap-grid { grid-template-columns: repeat(3, 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; }
}
.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; }
