/* DCUBE static — design tokens */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size: 16px;
  --navbar-height: 80px;
  --radius: 0.75rem;
  --background: #fafcfe;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --brand: #3b82f6;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --gradient-brand: linear-gradient(135deg, #38bdf8, #2563eb);
  --gradient-hero: radial-gradient(ellipse at top right, rgba(147, 197, 253, 0.35), transparent 60%), radial-gradient(ellipse at bottom left, rgba(186, 230, 253, 0.3), transparent 60%);
  --shadow-soft: 0 10px 30px -10px rgba(59, 130, 246, 0.18);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 60px rgba(96, 165, 250, 0.35);
  --dcube-cyan: #06b6d4;
  --dcube-blue: #2563eb;
  --dcube-purple: #9333ea;
  --layout-max-width: 90rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font-family); font-size: var(--font-size); -webkit-font-smoothing: antialiased; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: var(--font-family); padding-top: var(--navbar-height); }
body.has-fixed-navbar { padding-top: var(--navbar-height); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

.bg-gradient-brand { background-image: var(--gradient-brand); }
.bg-gradient-hero { background-image: var(--gradient-hero); }
.text-gradient-brand {
  background-image: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.animate-fade-in-up { animation: fade-in-up 0.7s ease-out both; }
@keyframes fade-in-up { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dash-move { to { stroke-dashoffset: -100; } }

.page-main .container-xl,
.hero-section > .hero-content.container-xl,
.hero-section > .hero-content.container,
.footer-dcube > .container-xl.footer-inner,
.footer-dcube > .container.footer-inner {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px) {
  .page-main .container-xl,
  .hero-section > .hero-content.container-xl,
  .hero-section > .hero-content.container,
  .footer-dcube > .container-xl.footer-inner,
  .footer-dcube > .container.footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.page-main { min-height: 100vh; background: var(--background); color: var(--foreground); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(24px); background: rgba(250, 252, 254, 0.7); border-bottom: 1px solid rgba(226, 232, 240, 0.6); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.5rem; padding: 0.75rem 0; }
.site-header__logo img { height: 3rem; width: auto; }
@media (min-width: 768px) { .site-header__logo img { height: 3.5rem; } }
@media (min-width: 1024px) { .site-header__logo img { height: 4rem; } }
.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  margin-left: auto;
  background: transparent;
  color: #0891b2;
  transition: transform 0.2s ease;
}
.site-header__toggle:hover { transform: scale(1.08); }
.site-header__toggle:focus { box-shadow: none; outline: none; }
.site-header__toggle-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(8, 145, 178, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.site-header__mobile-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding: 0.5rem 1.25rem 0.75rem;
  border-top: 1px solid rgba(229, 231, 235, 0.85);
}
.site-header__mobile .phone-pill {
  display: inline-flex !important;
  flex: 0 1 auto;
  margin: 0;
}
.site-header__mobile .btn-connect {
  flex: 0 1 auto;
  width: auto !important;
  max-width: 100%;
  margin: 0;
  padding: 0.5625rem 1.25rem;
  white-space: nowrap;
}
.site-header__phone { display: none; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; text-decoration: none; color: inherit; }
@media (min-width: 768px) { .site-header__phone { display: flex; } }
.site-header__phone:hover { color: inherit; }
.site-header__phone-icon { width: 2.25rem; height: 2.25rem; border-radius: 999px; background: rgba(59, 130, 246, 0.1); display: grid; place-items: center; color: var(--primary); }
.site-header__phone-icon .icon-lucide { width: 1rem; height: 1rem; }
.btn-connect { padding: 0.625rem 1.25rem; border-radius: 999px; border: none; background-image: var(--gradient-brand); color: #fff; font-size: 0.875rem; font-weight: 600; box-shadow: var(--shadow-soft); cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.btn-connect:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.btn-brand {
  background: linear-gradient(90deg, var(--dcube-cyan), var(--dcube-blue));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
}

.btn-brand:hover {
  color: #fff;
}

/* Navbar (Bootstrap fixed-top) — used on dcube-services pages */
.navbar-dcube { background: rgba(255, 255, 255, 0.95) !important; backdrop-filter: blur(16px); border-bottom: 1px solid #e5e7eb; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); padding-top: 0.5rem; padding-bottom: 0.5rem; }
.navbar-dcube .navbar-brand img { height: 60px; width: auto; }
@media (max-width: 767.98px) { :root { --navbar-height: 64px; } .navbar-dcube .navbar-brand img { height: 44px; } }

.navbar-dcube > .container,
.navbar-dcube > .container-xl {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 1rem !important;
  padding-right: 2.5rem !important;
}

.navbar-desktop-wrap {
  flex: 1 1 auto;
  min-width: 0;
  gap: 1rem;
}

.navbar-nav-dcube {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.navbar-dcube .nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #374151 !important;
  padding: 0.5rem 0.25rem !important;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  border: none;
  background: none;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-dcube .nav-link::after {
  display: none;
}

.navbar-dcube .nav-link:hover {
  color: transparent !important;
  background-image: linear-gradient(90deg, #06b6d4, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-dcube .nav-link.active {
  color: transparent !important;
  background-image: linear-gradient(90deg, #06b6d4, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.navbar-dcube .btn-brand.btn-connect {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  white-space: nowrap;
}

/* Mobile: collapse should show ONLY mobile menu (prevents broken header) */
@media (max-width: 991.98px) {
  .navbar-dcube .navbar-nav.navbar-nav-dcube,
  .navbar-dcube .navbar-actions {
    display: none !important;
  }

  .navbar-dcube .navbar-collapse.show,
  .navbar-dcube .navbar-collapse.collapsing {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(229, 231, 235, 0.85);
    margin-top: 0.35rem;
  }

  .navbar-dcube .navbar-collapse:not(.show):not(.collapsing) .navbar-mobile-menu {
    display: none !important;
  }

  .navbar-dcube .navbar-collapse.show .navbar-mobile-menu,
  .navbar-dcube .navbar-collapse.collapsing .navbar-mobile-menu {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
  }
}

.navbar-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 0 1.25rem 0.75rem;
}

.navbar-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  padding: 0.25rem 0 0.5rem;
  margin-top: 0;
}

.navbar-mobile-actions .phone-pill,
.navbar-mobile-actions .navbar-mobile-phone {
  display: inline-flex !important;
  flex: 0 1 auto;
  margin: 0;
}

.navbar-mobile-actions .btn-connect {
  flex: 0 1 auto;
  width: auto !important;
  max-width: 100%;
  margin: 0;
  padding: 0.5625rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.navbar-mobile-link {
  display: block;
  width: 100%;
  padding: 0.25rem 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.navbar-mobile-link:hover,
.navbar-mobile-link:focus-visible {
  color: #06b6d4;
  transform: translateX(0.625rem);
}

.navbar-mobile-link.active {
  color: #06b6d4;
}


@media (min-width: 992px) {
  .navbar-mobile-menu {
    display: none !important;
  }
}

.navbar-dcube .navbar-toggler {
  color: #0891b2;
  padding: 0.35rem;
  transition: transform 0.2s ease;
}

.navbar-dcube .navbar-toggler:hover {
  transform: scale(1.08);
}

.navbar-dcube .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-actions {
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(90deg, #f9fafb, #f3f4f6);
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-pill:hover,
.phone-pill:focus-visible {
  border-color: #22d3ee;
  transform: scale(1.05);
  color: #374151;
}

.phone-pill .icon-lucide {
  width: 1rem;
  height: 1rem;
  color: #0891b2;
  flex-shrink: 0;
}

/* Gradients */
.grad-cyan-blue { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.grad-sky-indigo { background: linear-gradient(135deg, #0ea5e9, #4f46e5); }
.grad-blue-violet { background: linear-gradient(135deg, #3b82f6, #7c3aed); }
.grad-indigo-blue { background: linear-gradient(135deg, #6366f1, #1d4ed8); }
.grad-indigo-violet { background: linear-gradient(135deg, #6366f1, #7c3aed); }
.grad-violet-fuchsia { background: linear-gradient(135deg, #8b5cf6, #d946ef); }
.grad-blue-indigo { background: linear-gradient(135deg, #2563eb, #4338ca); }

/* Sections shared */
.section { position: relative; overflow: hidden; }
.section--pad { padding: 5rem 0; }
@media (min-width: 1024px) { .section--pad-lg { padding: 7rem 0; } }
.section__bg { position: absolute; inset: 0; background-image: var(--gradient-hero); opacity: 0.6; pointer-events: none; }
.section--white {
  background: #ffffff;
}
.section--white .section__bg,
.section--white .section__glow {
  display: none;
}

/* Services block: KPI cards overlap hero; content sits below cards (no overlap) */
.services-block {
  position: relative;
  z-index: 10;
  overflow: visible;
  padding: 0;
  background: #fff;
  scroll-margin-top: calc(var(--navbar-height, 72px) + 16px);
}
.services-block.section--white {
  background: #fff;
}
.services-block__kpi {
  position: relative;
  z-index: 20;
  margin-top: -5.5rem;
  margin-bottom: 0;
  padding-bottom: 3rem;
  background: transparent;
  pointer-events: none;
}
.services-block__kpi .kpi-bar {
  pointer-events: auto;
}
@media (min-width: 768px) {
  .services-block__kpi {
    margin-top: -6.25rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .services-block__kpi {
    margin-top: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 992px) {
  .services-block__kpi {
    margin-top: -7rem;
    padding-bottom: 5rem;
  }
}
.container-xl.services-block__content {
  padding-top: 4rem;
  padding-bottom: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.services-block__content {
  position: relative;
  z-index: 5;
  margin-top: 0;
  background: #fff;
}
.services-block .section-head {
  margin-bottom: 3rem;
  padding-top: 0;
}
.section__glow { position: absolute; top: -6rem; left: 50%; transform: translateX(-50%); width: 42rem; height: 42rem; border-radius: 999px; background: rgba(59, 130, 246, 0.1); filter: blur(48px); pointer-events: none; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(59, 130, 246, 0.1); color: var(--primary); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; margin-bottom: 1rem; }
.section-badge .icon { width: 0.875rem; height: 0.875rem; }
.section-badge .icon svg,
.section-badge .icon-lucide { width: 0.875rem; height: 0.875rem; display: block; }
.section-title { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }
.section-sub { margin: 1rem auto 0; max-width: 45rem; color: var(--muted-foreground); line-height: 1.6; }

/* Scroll reveal — sections on enter */
@keyframes sectionRevealIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-reveal:not(.is-inview) .section-reveal-animate {
  opacity: 0;
  transform: translateY(28px);
}

.section-reveal.is-inview .section-reveal-animate {
  animation: sectionRevealIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.section-reveal.is-inview .section-reveal-animate--delay {
  animation-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal:not(.is-inview) .section-reveal-animate {
    opacity: 1;
    transform: none;
  }

  .section-reveal.is-inview .section-reveal-animate {
    animation: none;
  }
}

.grid-12 { display: grid; gap: 2.5rem; align-items: stretch; }
@media (min-width: 992px) { .grid-12 { grid-template-columns: 5fr 7fr; } }
.grid-12--reverse { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 992px) { .grid-12--reverse { grid-template-columns: 1fr 1fr; } }

.tab-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* Services tabs — 2 per row below 992px (991 responsive) */
@media (max-width: 991.98px) {
  .services-block .tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .services-block .tab-btn {
    padding: 0.75rem 0.65rem;
    gap: 0.65rem;
    align-items: center;
  }

  .services-block .tab-btn__icon {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
  }

  .services-block .tab-btn__title {
    font-size: 0.8125rem;
    line-height: 1.25;
  }

  .services-block .tab-btn__sub {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .services-block .tab-btn__chev {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 767.98px) {
  .services-block .tab-list {
    grid-template-columns: 1fr;
  }

  .services-block .tab-btn {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }
}

.tab-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn__body {
  flex: 1 1 auto;
  min-width: 0;
}
.tab-btn:hover { border-color: rgba(59,130,246,0.4); }
.tab-btn.is-active { background: var(--card); border-color: rgba(59,130,246,0.5); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.tab-btn__icon { width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; display: grid; place-items: center; color: #fff; flex-shrink: 0; box-shadow: var(--shadow-soft); transition: transform 0.2s; }
.tab-btn.is-active .tab-btn__icon { transform: scale(1.1); }
.tab-btn__title { font-weight: 600; font-size: 1rem; }
.tab-btn__sub { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; }
.tab-btn__chev {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}
.tab-btn.is-active .tab-btn__chev { color: var(--primary); transform: translateX(4px); }

.detail-card { position: relative; width: 100%; border-radius: 1rem; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow-card); padding: 1.5rem; overflow: hidden; }
@media (min-width: 1024px) { .detail-card { padding: 2rem; } }
.detail-card__blob { position: absolute; top: -6rem; right: -6rem; width: 18rem; height: 18rem; border-radius: 999px; opacity: 0.2; filter: blur(48px); pointer-events: none; }
.detail-card__tint { position: absolute; inset: 0; opacity: 0.05; pointer-events: none; }
.detail-card__head { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.detail-card__icon-lg { width: 3.5rem; height: 3.5rem; border-radius: 1rem; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-glow); }
.detail-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--primary); }
.detail-card__title { font-size: 1.25rem; font-weight: 700; }
.detail-dots { display: none; gap: 0.375rem; }
@media (min-width: 640px) { .detail-dots { display: flex; } }
.detail-dots span { height: 0.375rem; border-radius: 999px; background: var(--border); width: 0.75rem; transition: all 0.2s; }
.detail-dots span.is-active { width: 2rem; background-image: var(--gradient-brand); }
.service-detail-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .service-detail-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.service-detail-col { min-width: 0; }
.detail-card__text { position: relative; color: var(--muted-foreground); line-height: 1.625; margin-bottom: 1.25rem; }
.service-detail-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.75rem;
}
.capability-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.capability-card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.capability-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--primary);
}
.capability-card__icon .icon svg,
.capability-card__icon .icon-lucide {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.capability-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--foreground);
}
@media (min-width: 768px) {
  .capability-card__label { font-size: 0.8125rem; }
}
.service-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--muted-foreground);
  font-weight: 500;
}
.service-detail-list__tick {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #06b6d4;
}
.service-detail-list__tick .icon svg {
  width: 14px;
  height: 14px;
}
.capabilities-inner {
  position: relative;
  border-radius: 0.875rem;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.75);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  padding: 1rem 1rem 0.875rem;
}
.flow-diagram {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 11.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(90deg, #f8faff 0%, #ffffff 70%);
  overflow: hidden;
}
.flow-source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.source-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  color: rgba(15, 23, 42, 0.72);
}
.flow-diagram .flow-chart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  overflow: visible;
}
.flow-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: min(100%, 14.5rem);
  flex-shrink: 0;
}
.flow-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--foreground);
  white-space: nowrap;
}
.flow-item span:last-child {
  color: rgba(15, 23, 42, 0.88);
}
.flow-item svg,
.flow-item .icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.detail-card__icon-lg svg { width: 1.75rem; height: 1.75rem; color: #fff; }
.tab-btn__icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }

/* Services — same icon sizes on every viewport */
.services-block .tab-btn__icon {
  width: 2.75rem !important;
  height: 2.75rem !important;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.services-block .tab-btn__icon svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
}

.services-block .detail-card__icon-lg {
  width: 3.5rem !important;
  height: 3.5rem !important;
  min-width: 3.5rem;
  min-height: 3.5rem;
}

.services-block .detail-card__icon-lg svg {
  width: 1.75rem !important;
  height: 1.75rem !important;
}

.services-block .capability-card__icon .icon svg,
.services-block .capability-card__icon .icon-lucide {
  width: 1rem !important;
  height: 1rem !important;
}
.challenge-card__icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.pill-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 0.5rem; }
.pill-tag {
  font-size: 11px;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: rgba(15, 23, 42, 0.8);
}
.pill-tag--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}
.pill-tag--icon .icon {
  display: inline-flex;
  color: var(--primary);
}
.pill-tag--icon .icon svg {
  width: 12px;
  height: 12px;
}
.industry-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.industry-tag { font-size: 0.75rem; padding: 0.375rem 0.75rem; border-radius: 999px; background: rgba(241,245,249,0.6); border: 1px solid var(--border); }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 2rem; }
.stat-box { border-radius: 0.75rem; background: rgba(250,252,254,0.8); border: 1px solid var(--border); padding: 1rem 0.75rem; text-align: center; }
.stat-box__val { font-size: 1.25rem; font-weight: 700; }
@media (min-width: 1024px) { .stat-box__val { font-size: 1.5rem; } }
.stat-box__lbl { font-size: 11px; color: var(--muted-foreground); margin-top: 0.25rem; line-height: 1.25; }
.btn-explore { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1.25rem; border-radius: 999px; background-image: var(--gradient-brand); color: #fff; font-size: 0.875rem; font-weight: 600; text-decoration: none; box-shadow: var(--shadow-soft); transition: transform 0.2s, box-shadow 0.2s; }
.btn-explore:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: #fff; }
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; }
/* Hero banner â€” ported from DCUBE_HTML/css/home.css + custom.css */

:root {
  --navbar-height: 80px;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: calc(100vh - var(--navbar-height));
  padding: 2rem 0 5.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236, 254, 255, 0.85) 0%, #fff 50%, rgba(224, 242, 254, 0.85) 100%);
  animation: heroBgShift 8s ease-in-out infinite;
}

@keyframes heroBgShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(8deg); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  left: 2rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.35), rgba(59, 130, 246, 0.35));
  animation: svcFloatOrb1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 24rem;
  height: 24rem;
  bottom: 6rem;
  right: 3rem;
  background: linear-gradient(135deg, rgba(192, 132, 252, 0.3), rgba(236, 72, 153, 0.25));
  animation: svcFloatOrb2 18s ease-in-out infinite;
}

.hero-orb-3 {
  width: 20rem;
  height: 20rem;
  top: 30%;
  right: 25%;
  background: linear-gradient(135deg, rgba(147, 197, 253, 0.25), rgba(34, 211, 238, 0.2));
  animation: svcFloatOrb3 22s ease-in-out infinite;
}

@keyframes svcFloatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 40px) scale(1.15); }
}

@keyframes svcFloatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1.1); }
  50% { transform: translate(-60px, -30px) scale(1); }
}

@keyframes svcFloatOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.2); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(6, 182, 212, 0.8) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: svcDotsPulse 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes svcDotsPulse {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.07; }
}

/* Soft fade at hero bottom */
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.85));
  pointer-events: none;
  z-index: 1;
}

/* Animated wave shade — matches DCUBE_HTML home hero */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12rem;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero-wave svg {
  width: 200%;
  height: 100%;
  animation: heroWaveSlide 20s linear infinite;
}

@keyframes heroWaveSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-section > .hero-content {
  position: relative;
  z-index: 3;
}

.hero-section .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 992px) {
  .hero-section .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #ecfeff, #eff6ff);
  border: 1px solid #a5f3fc;
  border-radius: 9999px;
  color: #0891b2;
  font-size: 0.875rem;
  white-space: nowrap;
  animation: heroFadeUp 0.8s ease 0.2s both;
}

.hero-badge .icon-inline-sm {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: #0891b2;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1rem;
  background: #0891b2;
  margin-left: 2px;
  animation: typewriterBlink 1s step-end infinite;
}

@keyframes typewriterBlink {
  50% { opacity: 0; }
}

/* Title — home hero typography */
.hero-copy .hero-title {
  color: #111827;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  animation: heroFadeUp 0.8s ease 0.35s both;
  overflow: visible;
}

@media (min-width: 768px) {
  .hero-copy .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-copy .hero-title {
    font-size: 3.75rem;
  }
}

.hero-line-solid {
  display: inline-block;
  font-weight: 400;
  color: #111827;
}

.hero-line-shimmer {
  display: inline-block;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 0.2em;
  margin-bottom: -0.12em;
  overflow: visible;
  background: linear-gradient(90deg, #007bff 0%, #00c0ff 50%, #007bff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  to { background-position: 200% center; }
}

.hero-copy .hero-desc {
  font-size: 1.125rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.625;
  max-width: 100%;
  margin: 0 0 2rem;
  animation: heroFadeUp 0.8s ease 0.5s both;
}

.hero-copy .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  animation: heroFadeUp 0.8s ease 0.6s both;
}

.hero-ctas .btn-hero-primary,
.hero-ctas .btn-hero-secondary {
  cursor: pointer;
  font-family: inherit;
}

.hero-ctas .btn-hero-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  /* Desktop: slightly longer pill button */
  padding: 1rem 2.75rem;
  min-width: 15.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  line-height: 1;
  height: 4.5rem;
  min-height: 3.5rem;
  background: linear-gradient(90deg, #0891b2, #2563eb);
  border: none;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-ctas .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  line-height: 1.2;
  height: auto;
  min-height: unset;
  background: #fff;
  border: 1px solid #d1d5db;
  color: #111827;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-ctas .btn-hero-secondary:hover {
  border-color: #06b6d4;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.15);
  transform: translateY(-2px);
}

.hero-ctas .btn-hero-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-100%);
  animation: btnShimmer 2.5s linear infinite;
}

@keyframes btnShimmer {
  to { transform: translateX(100%); }
}

.hero-ctas .btn-hero-primary:hover {
  color: #fff;
  box-shadow: 0 14px 32px rgba(6, 182, 212, 0.45);
  transform: translateY(-2px);
}

.hero-ctas .btn-hero-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Right visual — layered 3D card (matches home hero) */
.hero-visual {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 2.35rem 1.75rem 2.6rem 1.4rem;
  animation: heroFadeUp 1s ease 0.3s both;
}

.hero-visual-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: heroCardFloat 7s ease-in-out infinite;
}

.hero-visual-stage::before {
  content: '';
  position: absolute;
  inset: -22% -16% -26% -14%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 60% at 50% 45%, rgba(56, 189, 248, 0.28), transparent 68%),
    radial-gradient(ellipse 50% 45% at 18% 12%, rgba(125, 211, 252, 0.3), transparent 60%),
    radial-gradient(ellipse 45% 40% at 88% 88%, rgba(167, 139, 250, 0.16), transparent 62%);
  filter: blur(22px);
}

.hero-visual-layers {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.hero-visual-panel {
  position: absolute;
  pointer-events: none;
}

.hero-visual-panel--back {
  z-index: 0;
  top: 0%;
  left: 0%;
  border-radius: 2.15rem;
  background: linear-gradient(145deg, rgba(165, 243, 252, 0.34) 0%, rgb(186 230 253 / 53%) 52%, rgba(219, 234, 254, 0.16) 100%);
  border: 1px solid rgba(186, 230, 253, 0.32);
  width: 105%;
  height: 103%;
  transform: skew(-13deg);
}

.hero-visual-panel--accent {
  z-index: 1;
  top: 14%;
  left: 15%;
  width: 90%;
  height: 77%;
  border-radius: 2rem;
  background: linear-gradient(333deg, #7dd3fc 0%, #58a2fd 38%, #5ca0fe 72%, #58a0fd 100%);
  opacity: 0.92;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.22);
  transform: skew(-21deg);
}

.hero-carousel {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 2rem;
  overflow: hidden;
  background: #e8f6ff;
  border: 2px solid #67dbfb;
  box-shadow:
    inset 0 0 0 1.5px rgba(224, 252, 255, 0.78),
    inset 0 0 18px rgba(165, 243, 252, 0.22),
    0 0 0 1px rgba(125, 211, 252, 0.35),
    0 0 28px rgba(56, 189, 248, 0.42),
    0 0 64px rgba(14, 165, 233, 0.2),
    0 26px 50px rgba(12, 74, 110, 0.16);
  transform-origin: center center;
  transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
}

.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(125, 211, 252, 0.75) 22%,
    rgba(56, 189, 248, 0.45) 50%,
    rgba(165, 243, 252, 0.8) 78%,
    rgba(255, 255, 255, 0.7) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(125, 211, 252, 0.28),
    inset 1px 0 0 rgba(224, 252, 255, 0.35),
    inset -1px 0 0 rgba(125, 211, 252, 0.32);
}

.hero-carousel-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  overflow: hidden;
}

.hero-center-pulse,
.hero-carousel-ring,
.hero-scan-line {
  display: none;
}

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-carousel-inner .hero-slide {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 1s ease, filter 0.5s ease;
  filter: brightness(1.02) saturate(1.04);
}

.hero-carousel-inner .hero-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: slideKenBurns 8s ease-in-out infinite;
}

@keyframes slideKenBurns {
  0%, 100% { transform: scale(1); filter: brightness(1.02) saturate(1.04); }
  50% { transform: scale(1.04); filter: brightness(1.06) saturate(1.06); }
}

.hero-carousel-glow {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%, rgba(6, 182, 212, 0.08) 100%);
  mix-blend-mode: soft-light;
}

@media (max-width: 1199.98px) {
  .hero-visual {
    padding: 2.25rem 1.6rem 2.5rem 1.2rem;
  }

  .hero-visual-panel--back {
    width: 100%;
    height: 106%;
  }

  .hero-visual-panel--accent {
    left: 13%;
    width: 86%;
  }
}

@media (max-width: 991.98px) {
  .hero-copy {
    max-width: 100%;
  }
  .hero-visual {
    max-width: 36rem;
    margin: 0 auto;
    padding: 2rem 1.4rem 2.3rem;
  }

  .hero-carousel {
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
  }

  .hero-visual-panel--back {
    width: 100%;
    height: 99%;
    transform: skew(-21deg);
    top: 0;
    left: 0;
  }

  .hero-visual-panel--accent {
    top: 16%;
    left: 14%;
    width: 84%;
    height: 76%;
    transform: skew(-21deg);
  }
}

@media (max-width: 575.98px) {
  .hero-visual {
    max-width: 100%;
    padding: 1.5rem 0.85rem 1.85rem;
  }

  .hero-visual-stage::before {
    inset: -10% -8% -14% -8%;
    filter: blur(14px);
  }

  .hero-carousel {
    border-radius: 1.35rem;
    box-shadow: inset 0 0 0 1.5px rgba(224, 252, 255, 0.72), 0 0 20px rgba(56, 189, 248, 0.32), 0 16px 36px rgba(12, 74, 110, 0.14);
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
  }

  .hero-visual-panel--back {
    border-radius: 1.5rem;
    top: 0;
    left: 0;
    width: 98%;
    height: 101%;
    transform: skew(-12deg);
  }

  .hero-visual-panel--accent {
    top: 14%;
    left: 12%;
    width: 84%;
    height: 77%;
    border-radius: 1.4rem;
    transform: skew(-21deg);
  }
}

@media (min-width: 1200px) and (max-width: 1550px) {
  .hero-visual-panel--back {
    width: 100%;
  }

  .hero-visual-panel--accent {
    left: 10%;
    width: 88%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual-stage,
  .hero-carousel {
    animation: none;
  }

  .hero-carousel {
    transform: rotate(3deg);
  }

  .hero-carousel-inner .hero-slide.active {
    animation: none;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1500px) {
  .hero-visual {
    width: 98%;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 1.5rem 0 2rem;
    min-height: 0;
  }

  .hero-section::after {
    display: none;
  }

  .hero-wave {
    height: 8rem;
    opacity: 0.1;
  }

  .services-block__kpi {
    margin-top: 2rem;
    padding-top: 0.25rem;
    padding-bottom: 2.5rem;
  }

  .services-block__content {
    margin-top: 0;
  }

  .hero-copy .hero-title {
    margin-bottom: 1rem;
  }

  .hero-copy .hero-desc {
    margin-bottom: 1.5rem;
  }

  .hero-copy .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn-hero-primary,
  .hero-ctas .btn-hero-secondary {
    width: auto;
    max-width: 100%;
    min-width: 15.5rem;
    align-self: flex-start;
    justify-content: center;
    height: auto;
    min-height: 3.25rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .hero-visual {
    width: 97%;
    padding: 1.5rem 0.85rem 1.85rem;
  }

  .hero-visual-stage::before {
    inset: -10% -8% -14% -8%;
    filter: blur(14px);
  }

  .hero-carousel {
    transform: perspective(1200px) rotateZ(5.8deg) rotateY(-10deg);
  }

  .hero-visual-panel--back {
    border-radius: 1.5rem;
    top: 0;
    left: 0;
    width: 98%;
    height: 101%;
    transform: skew(-12deg);
  }

  .hero-visual-panel--accent {
    top: 14%;
    left: 12%;
    width: 84%;
    height: 77%;
    border-radius: 1.4rem;
    transform: skew(-21deg);
  }

}

:root {
  --dcube-cyan: #06b6d4;
  --dcube-blue: #2563eb;
  --dcube-purple: #9333ea;
}

/* Minimal icon sizing used by DCUBE_HTML footer */
.icon-lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-social {
  width: 1.15rem;
  height: 1.15rem;
}

.icon-contact {
  width: 1.25rem;
  height: 1.25rem;
}

/* â”€â”€ Footer (ported from DCUBE_HTML/css/custom.css) â”€â”€ */
.footer-dcube {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 50%, #fff 100%);
}

.footer-dcube .footer-gradient-bar {
  height: 1px;
  background: linear-gradient(90deg, var(--dcube-cyan), var(--dcube-blue), var(--dcube-purple));
}

.footer-dcube .footer-gradient-bar-bottom {
  height: 1px;
}

.footer-dcube .footer-inner {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-dcube .logo-footer {
  max-height: 10rem;
  width: auto;
}

.footer-dcube .footer-tagline {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.footer-newsletter {
  display: none !important;
}

.footer-newsletter.is-visible {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
  border: 1px solid #a5f3fc;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .footer-dcube .footer-social-wrap {
    display: none !important;
  }
}

.footer-dcube .footer-contact-row {
  display: none !important;
}

.footer-social-title {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-dcube .social-link {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #374151;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-dcube .social-link:hover {
  background: var(--dcube-blue);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  position: relative;
  display: inline-block;
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  padding-bottom: 0.5rem;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-col-title a {
  color: inherit;
  text-decoration: none;
}

.footer-col-title a:hover {
  color: var(--dcube-cyan);
}

.footer-col-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dcube-cyan), var(--dcube-blue));
}

/* Resources footer column — hidden for now; remove this rule to restore */
.footer-col-resources {
  display: none !important;
}

.footer-links-grid-4 > [class*="col-"] {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Tablet (768–991): override Bootstrap col-md-* (force 4 columns) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-links-grid-4 > [class*="col-"] {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
  }
}

/* Mobile: 2 columns, then 1 column */
@media (max-width: 767.98px) {
  .footer-links-grid-4 > [class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }
}

@media (max-width: 575.98px) {
  .footer-links-grid-4 > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .footer-links-grid-4 > [class*="col-"] {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.footer-newsletter-title {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.footer-newsletter-desc {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}

.footer-newsletter-form {
  position: relative;
}

.footer-email-input {
  width: 100%;
  padding: 0.75rem 3.25rem 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
}

.footer-email-input:focus {
  border-color: var(--dcube-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.footer-newsletter-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.5rem;
  background: linear-gradient(90deg, var(--dcube-cyan), var(--dcube-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.footer-newsletter-btn:hover {
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.footer-contact-card:hover {
  border-color: var(--dcube-cyan);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
  color: inherit;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.footer-contact-icon-cyan {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.footer-contact-icon-blue {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
}

.footer-contact-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-contact-label {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-contact-value {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact-card:hover .footer-contact-value {
  color: var(--dcube-cyan);
}

.footer-dcube .footer-contact-row > [class*='col-'],
.footer-dcube .footer-bottom {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.footer-links li {
  margin-bottom: 0.75rem;
  list-style: none;
}

.footer-links {
  padding-left: 0;
  margin: 0;
}

.footer-links a {
  color: #4b5563;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--dcube-cyan);
}

.footer-news-events,
.footer-dcube .footer-links li:has(a[href*="news-events"]) {
  display: none !important;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  border-top: 2px solid #e5e7eb;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.footer-copyright {
  color: #4b5563;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
  width: 100%;
}

.navbar-case-study-link,
.navbar-mobile-link--case-study {
  display: none !important;
}

.footer-legal-nav {
  display: none !important;
}

.footer-legal-nav a {
  color: #4b5563;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-nav a:hover {
  color: var(--dcube-cyan);
}


.recognition-section {
  position: relative;
  overflow: hidden;
}

.recognition-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.recognition-title {
  text-align: left;
  font-size: 2.25rem;
  font-weight: 600;
}

.recognition-lead {
  text-align: left;
  margin-left: 0;
  max-width: 36rem;
}

.recognition-kpis {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Partners layout — side-by-side from 768px (fixes 1023px; lg/Tailwind starts at 1024) */
.recognition-section .recognition-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .recognition-section .recognition-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

/* ~1023px tablet: centered copy + desktop 3 logo lanes */
@media (min-width: 768px) and (max-width: 1279.98px) {
  .recognition-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .recognition-title,
  .recognition-lead,
  .recognition-section .section-sub.recognition-lead {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .recognition-kpis {
    width: 100%;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .recognition-section .grid-12--reverse.recognition-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
}

.recognition-kpi {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 14px 12px;
  text-align: center;
}

.recognition-kpi-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.recognition-kpi-label {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.25;
}

.recognition-logos-wrap {
  width: 100%;
  min-width: 0;
}

@media (max-width: 1279.98px) {
  .recognition-logos-wrap {
    display: flex;
    justify-content: center;
  }
}

.recognition-logos {
  position: relative;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  width: 100%;
}

@media (max-width: 1279.98px) {
  .recognition-logos {
    max-width: none;
    width: 100%;
    margin-inline: auto;
  }
}

/* Defensive override: remove any lingering top fade gradient */
.recognition-logos::before,
.recognition-logos::after,
.recognition-logos:before,
.recognition-logos:after {
  content: none !important;
  display: none !important;
  background: none !important;
  height: 0 !important;
  opacity: 0 !important;
}

.recognition-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px;
  height: 420px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .recognition-logos-grid {
    gap: 12px;
    height: 400px;
  }
}

.recognition-lane {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
}

.recognition-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: recognitionUp 20s linear infinite;
}

@media (max-width: 1279.98px) {
  .recognition-track {
    align-items: center;
    gap: 12px;
  }
}

.recognition-track--down {
  animation-name: recognitionDown;
}

.recognition-lane:hover .recognition-track {
  animation-play-state: paused;
}

@keyframes recognitionUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes recognitionDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.recognition-tile {
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 10px;
  display: grid;
  place-items: center;
  min-height: 92px;
  position: relative;
}

@media (max-width: 1279.98px) {
  .recognition-tile {
    border-radius: 12px;
    padding: 10px;
    justify-items: center;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    min-height: 88px;
  }

  .recognition-tile::before {
    top: 8px;
    left: 8px;
    width: 40px;
    height: 40px;
  }

  .recognition-tile::after {
    right: 8px;
    bottom: 8px;
    width: 40px;
    height: 40px;
  }
}

.recognition-tile::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 56px;
  height: 56px;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  border-top-left-radius: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  opacity: 0.95;
}

.recognition-tile::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 56px;
  height: 56px;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  border-right: 1px solid rgba(255, 255, 255, 0.65);
  border-bottom-right-radius: 14px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  opacity: 0.95;
}

.recognition-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 6px 10px;
  border-radius: 10px;
  background: transparent;
}

@media (max-width: 1279.98px) {
  .recognition-tile__logo {
    min-height: 80px;
    padding: 6px 10px;
  }
}

.recognition-tile__logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

@media (max-width: 1279.98px) {
  .recognition-tile__logo img {
    max-height: 44px;
    max-width: 100%;
    width: auto;
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1279.98px) {
  .recognition-tile__logo img {
    max-height: 42px;
  }
}

@media (max-width: 575.98px) {
  .recognition-tile__logo img {
    max-height: 38px;
  }
}

/* ≤575px: single horizontal scrolling row */
.recognition-logos-grid--row {
  display: none;
}

@media (max-width: 575.98px) {
  .recognition-logos-grid--lanes {
    display: none !important;
  }

  .recognition-logos-grid--row {
    display: block !important;
    height: 92px;
    overflow: hidden;
  }

  .recognition-lane--row {
    overflow: hidden;
    width: 100%;
  }

  .recognition-track--row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: recognitionScrollLeft 28s linear infinite;
  }

  .recognition-track--row .recognition-tile {
    flex: 0 0 auto;
    width: auto;
    min-width: 5.5rem;
    min-height: 72px;
    margin-inline: 0;
    padding: 8px 10px;
  }

  .recognition-track--row .recognition-tile::before,
  .recognition-track--row .recognition-tile::after {
    opacity: 0.6;
  }

  .recognition-lane--row:hover .recognition-track--row {
    animation-play-state: paused;
  }
}

@keyframes recognitionScrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .recognition-track,
  .recognition-track--down,
  .recognition-track--row {
    animation: none;
    transform: none;
  }
}



/* Industry detail */
.industry-hero { position: relative; padding: 4rem 0 6rem; overflow: hidden; }
.industry-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); text-decoration: none; margin-bottom: 2rem; }
.industry-back:hover { opacity: 0.8; }
.industry-detail-grid { display: grid; gap: 2.5rem; }
@media (min-width: 992px) { .industry-detail-grid { grid-template-columns: 7fr 5fr; } }
.industry-glance { border-radius: 1rem; background: var(--card); border: 1px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-card); }
.industry-glance li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.875rem; padding-bottom: 0.75rem; margin-bottom: 0.75rem; border-bottom: 1px solid rgba(226,232,240,0.6); }
.industry-glance li:last-child { border: 0; margin: 0; padding: 0; }
.challenge-card { border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); padding: 1.25rem; margin-bottom: 1rem; }
.challenge-card__row { display: flex; gap: 0.75rem; align-items: flex-start; }
.challenge-card__icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(59,130,246,0.1); display: grid; place-items: center; color: var(--primary); flex-shrink: 0; }
.other-industries { padding: 4rem 0; border-top: 1px solid var(--border); background: rgba(241,245,249,0.2); }
.other-card { display: block; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); padding: 1.25rem; text-decoration: none; transition: all 0.2s; }
.other-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: var(--shadow-card); }
.other-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .other-grid { grid-template-columns: repeat(3,1fr); } }

/* KPI bar (service pillars) */
.kpi-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9) inset, 0 28px 56px -16px rgba(59, 130, 246, 0.22), 0 12px 32px -8px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  /* border: 1px solid rgba(226, 232, 240, 0.85); */
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .kpi-bar { grid-template-columns: repeat(4, 1fr); }
}
.kpi-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: background 0.25s ease, transform 0.25s ease;
}
.kpi-bar__item:hover {
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 992px) {
  .kpi-bar__item {
    padding: 2rem 1rem;
    border-bottom: 0;
    border-right: 1px solid rgba(226, 232, 240, 0.7);
  }
  .kpi-bar__item:last-child { border-right: 0; }
}
@media (min-width: 576px) and (max-width: 991px) {
  .kpi-bar__item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .kpi-bar {
    grid-template-columns: 1fr;
  }

  .kpi-bar__item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  }

  .kpi-bar__item:last-child {
    border-bottom: 0;
  }
}
.kpi-bar__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(59, 130, 246, 0.14);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}
.kpi-bar__icon .icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.kpi-bar__text {
  min-width: 0;
  flex: 1;
  padding-top: 0.125rem;
}
.kpi-bar__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 0.625rem;
}
@media (min-width: 768px) {
  .kpi-bar__title { font-size: 1.0625rem; }
}
@media (min-width: 1200px) {
  .kpi-bar__title { font-size: 1.125rem; }
}
.kpi-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
.kpi-bar__list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #64748b;
  font-weight: 500;
}
.kpi-bar__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
}
.kpi-bar__tick .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  line-height: 0;
}
.kpi-bar__tick .icon svg,
.kpi-bar__tick .icon-lucide {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2.75;
}

/* AI-enabled engineering */
.ai-engineering-section {
  background: linear-gradient(180deg, #f1f7ff 0%, #f8fbff 28%, #ffffff 50%, #f8fbff 72%, #f1f7ff 100%);
}

.ai-engineering-section .section-head {
  margin-bottom: 2.5rem;
}

.ai-engineering-section__subtitle {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.ai-engineering-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* —— AI workflow timeline —— */
.ai-workflow-section {
  --ai-workflow-icon: 4.5rem;
}

.ai-workflow-section__heading {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  text-align: center;
}

.ai-workflow-card {
  background: #ffffff;
  border: 1px solid rgba(224, 231, 255, 0.95);
  border-radius: 20px;
  padding: 1.5rem 1rem 1.25rem;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(59, 130, 246, 0.08);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .ai-workflow-card {
    padding: 2rem 1.25rem 1.75rem;
  }
}

@media (min-width: 992px) {
  .ai-workflow-card {
    padding: 4rem 1.75rem 4rem;
  }

  .ai-workflow-step__title {
    margin: 0 0 1.5rem;
    font-size: 1rem;
  }
}

.ai-workflow-timeline__desktop {
  display: none;
}

.ai-workflow-timeline__mobile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  align-items: start;
  justify-items: center;
}

.ai-workflow-timeline__mobile .ai-workflow-step:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 11rem;
}

.ai-workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.ai-workflow-step__icon-wrap {
  position: relative;
  width: var(--ai-workflow-icon);
  height: var(--ai-workflow-icon);
  margin: 0 auto 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .ai-workflow-section {
    --ai-workflow-icon: 3.5rem;
  }

  .ai-workflow-step__tag {
    font-size: 0.6875rem;
    padding: 0.18rem 0.45rem;
  }
}

.ai-workflow-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.ai-workflow-step__icon .icon svg,
.ai-workflow-step__icon .icon-lucide {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.75;
}

.ai-workflow-step__icon--violet {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.ai-workflow-step__icon--blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.ai-workflow-step__icon--cyan {
  background: linear-gradient(135deg, #22d3ee, #0891b2);
}

.ai-workflow-step__icon--indigo {
  background: linear-gradient(135deg, #4f46e5, #3730a3);
}

.ai-workflow-step__icon--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.ai-workflow-step__badge {
  position: absolute;
  top: -0.2rem;
  right: -0.45rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  font-size: 0.625rem;
  font-weight: 800;
  color: #64748b;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.ai-workflow-step__title {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
}

.ai-workflow-step__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.ai-workflow-step__tag {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  line-height: 1.3;
  white-space: nowrap;
}

/* Desktop: 5 equal columns — icon, title, tags aligned per step */
@media (min-width: 992px) {
  .ai-workflow-timeline__desktop {
    display: block;
  }

  .ai-workflow-timeline__mobile {
    display: none;
  }

  .ai-workflow-timeline__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0 0.5rem;
    align-items: start;
  }

  .ai-workflow-timeline__line {
    position: absolute;
    top: calc(var(--ai-workflow-icon) / 2);
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    background: linear-gradient(
      90deg,
      #c4b5fd 0%,
      #67e8f9 22%,
      #38bdf8 45%,
      #818cf8 68%,
      #86efac 100%
    );
    border-radius: 2px;
    z-index: 0;
    pointer-events: none;
  }

  .ai-workflow-step-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    padding: 0 0.35rem;
  }

  .ai-workflow-step-col .ai-workflow-step__icon-wrap {
    margin-bottom: 0.85rem;
    z-index: 2;
  }

  /* Chevron centered on the line, in the gap between columns */
  .ai-workflow-step-col:not(:last-child)::after {
    content: "›";
    position: absolute;
    top: calc(var(--ai-workflow-icon) / 2);
    right: 0;
    transform: translate(50%, -50%);
    z-index: 4;
    display: block;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1;
    color: #38bdf8;
    background: #ffffff;
    padding: 0 0.2rem;
    pointer-events: none;
  }
}

/* Business Impact */
.ai-workflow-section--impact {
  padding: 0 0.15rem;
}

.ai-workflow-impact__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .ai-workflow-impact__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .ai-workflow-impact__row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.ai-workflow-impact__card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  min-height: 4.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
  border: 1px solid #bae6fd;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.08);
  text-align: left;
}

.ai-workflow-impact__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.ai-workflow-impact__icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ai-workflow-impact__icon .icon svg,
.ai-workflow-impact__icon .icon-lucide {
  width: 1.125rem;
  height: 1.125rem;
}

.ai-workflow-impact__label {
  flex: 1;
  min-width: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

/* Industries We Serve — pixel network (reference 1362×596) */
.industries-timeline-section {
  --ind-cyan: #16cbe0;
  --ind-blue: #2388f7;
  --ind-purple: #8a36f5;
  --ind-pink: #df347c;
  --ind-coral: #ff6b70;
  --ind-violet: #9a42f4;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(53, 140, 255, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  overflow: hidden;
}

.industries-timeline-section .section-head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.industries-timeline-section .section-badge {
  margin-left: auto;
  margin-right: auto;
}

.industries-timeline-section .section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #0f172a;
}

.industries-timeline-section .section-sub {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: #64748b;
}

.industries-timeline,
.industries-network {
  width: 100%;
  max-width: 1362px;
  margin: 0 auto;
  padding: 0 0 1rem;
}

.ind-net {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

.ind-net__canvas {
  position: relative;
  width: 1362px;
  height: 596px;
  flex: 0 0 1362px;
  max-width: none;
  margin: 0;
  transform-origin: top center;
}

.ind-net__svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 1362px;
  height: 596px;
  z-index: 1;
  pointer-events: none;
}

.ind-net__dot {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ind-net__dot--cyan {
  background: #16cbe0;
  box-shadow: 0 0 8px rgba(22, 203, 224, 0.45);
}
.ind-net__dot--blue {
  background: #2388f7;
  box-shadow: 0 0 8px rgba(35, 136, 247, 0.4);
}
.ind-net__dot--purple,
.ind-net__dot--violet {
  background: #8a36f5;
  box-shadow: 0 0 8px rgba(138, 54, 245, 0.4);
}
.ind-net__dot--pink {
  background: #df347c;
  box-shadow: 0 0 10px rgba(223, 52, 124, 0.4);
}
.ind-net__dot--coral {
  background: #ff6b70;
  box-shadow: 0 0 8px rgba(255, 107, 112, 0.4);
}

.ind-net__node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ind-net__node svg,
.ind-net__node .industry-card-icon {
  width: 42%;
  height: 42%;
  stroke: currentColor !important;
  color: inherit !important;
}

.ind-net__node--cyan {
  color: #16cbe0;
  border: 2px solid rgba(22, 203, 224, 0.65);
  box-shadow: 0 0 0 6px rgba(22, 203, 224, 0.05), 0 6px 16px rgba(22, 203, 224, 0.1);
}
.ind-net__node--blue {
  color: #2388f7;
  border: 2px solid rgba(49, 135, 255, 0.65);
  box-shadow: 0 0 0 7px rgba(64, 144, 255, 0.04), 0 6px 18px rgba(49, 135, 255, 0.08);
}
.ind-net__node--purple {
  color: #8a36f5;
  border: 2px solid rgba(138, 54, 245, 0.6);
  box-shadow: 0 0 0 6px rgba(138, 54, 245, 0.05), 0 6px 16px rgba(138, 54, 245, 0.1);
}
.ind-net__node--pink {
  color: #df347c;
  border: 2px solid rgba(223, 52, 124, 0.6);
  box-shadow: 0 0 0 6px rgba(223, 52, 124, 0.05), 0 6px 16px rgba(223, 52, 124, 0.1);
}
.ind-net__node--coral {
  color: #ff6b70;
  border: 2px solid rgba(255, 107, 112, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 107, 112, 0.05), 0 6px 14px rgba(255, 107, 112, 0.1);
}

.ind-net__node:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.ind-net__card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 64px;
  padding: 4px 14px 4px 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(150, 165, 190, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(70, 90, 130, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}

.ind-net__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 24px rgba(75, 95, 130, 0.09);
}

.ind-net__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.ind-net__icon svg,
.ind-net__icon .industry-card-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor !important;
  color: inherit !important;
}

.ind-net__label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: inherit;
  white-space: normal;
}

.ind-net__card--cyan { color: #16cbe0; }
.ind-net__card--cyan .ind-net__icon {
  background: rgba(22, 203, 224, 0.1);
  border: 1px solid rgba(22, 203, 224, 0.35);
}

.ind-net__card--blue { color: #2388f7; }
.ind-net__card--blue .ind-net__icon {
  background: rgba(35, 136, 247, 0.1);
  border: 1px solid rgba(35, 136, 247, 0.35);
}

.ind-net__card--purple,
.ind-net__card--violet { color: #8a36f5; }
.ind-net__card--purple .ind-net__icon,
.ind-net__card--violet .ind-net__icon {
  background: rgba(138, 54, 245, 0.1);
  border: 1px solid rgba(138, 54, 245, 0.35);
}

.ind-net__card--pink { color: #df347c; }
.ind-net__card--pink .ind-net__icon {
  background: rgba(223, 52, 124, 0.1);
  border: 1px solid rgba(223, 52, 124, 0.35);
}

.ind-net__card--coral { color: #ff6b70; }
.ind-net__card--coral .ind-net__icon {
  background: rgba(255, 107, 112, 0.1);
  border: 1px solid rgba(255, 107, 112, 0.35);
}

.ind-net__mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .ind-net {
    display: none;
  }

  .ind-net__mobile {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 36rem;
    margin: 0 auto;
  }

  .ind-net__card--mobile {
    position: static;
    width: 100% !important;
    height: auto;
    min-height: 64px;
  }
}

.industries-timeline-section:not(.is-inview) .section-head,
.industries-timeline-section:not(.is-inview) .ind-net__card,
.industries-timeline-section:not(.is-inview) .ind-net__node {
  opacity: 0;
  transform: translateY(14px);
}

.industries-timeline-section:not(.is-inview) .ind-net__node {
  transform: translate(-50%, calc(-50% + 10px));
}

.industries-timeline-section.is-inview .section-head {
  animation: techEcoHeadIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.industries-timeline-section.is-inview .ind-net__card {
  animation: industryCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.industries-timeline-section.is-inview .ind-net__node {
  animation: industryHubIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.industries-timeline-section.is-inview .ind-net__card:nth-child(n) {
  animation-delay: 0.08s;
}

@keyframes industryCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes industryHubIn {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 10px)) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .industries-timeline-section:not(.is-inview) .section-head,
  .industries-timeline-section:not(.is-inview) .ind-net__card,
  .industries-timeline-section:not(.is-inview) .ind-net__node {
    opacity: 1;
    transform: none;
  }
  .industries-timeline-section:not(.is-inview) .ind-net__node {
    transform: translate(-50%, -50%);
  }
  .industries-timeline-section.is-inview .section-head,
  .industries-timeline-section.is-inview .ind-net__card,
  .industries-timeline-section.is-inview .ind-net__node {
    animation: none;
  }
}

/* Keep connector utilities for tech-arch panel */
.industries-timeline__connector {
  display: flex;
  align-items: center;
  flex: 0 0 4rem;
  width: 4rem;
  min-width: 7rem;
  max-width: 4.75rem;
  color: var(--hub-accent, #22d3ee);
}

.industries-timeline__connector::before,
.industries-timeline__connector::after {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.industries-timeline__line {
  display: block;
}

/* Layered technology ecosystem — reference architecture view */
.tech-ecosystem-section .section-head,
.tech-ecosystem-section__head {
  margin-bottom: 2.5rem;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.tech-ecosystem-section.section-reveal:not(.is-inview) .tech-ecosystem-section__head {
  opacity: 1 !important;
  transform: none !important;
}

.tech-arch-panel.architecture-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.25rem;
  overflow: visible;
}

@media (min-width: 1350px) {
  .tech-arch-panel.architecture-panel {
    grid-template-columns: 42% 58%;
    gap: 1.25rem 1.5rem;
    padding: 2.75rem 2rem 0rem 1.75rem;
    min-height: 38rem;
  }
}

/* —— Left: 3D layer stack (reference architecture view) —— */
.tech-arch-panel__stack.stack-wrap {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.tech-arch-panel .layer-stack {
  position: relative;
  width: 390px;
  height: 820px;
  transform: scale(0.92);
  margin-right: 40px;
  --stack-b1: #e0f2fe;
  --stack-b2: #bae6fd;
  --stack-b3: #7dd3fc;
  --stack-b4: #38bdf8;
  --stack-b5: #3b82f6;
  --stack-b6: #2563eb;
  --stack-b7: #1d4ed8;
  --stack-b8: #1e40af;
  --stack-b9: #172554;
}

.tech-arch-panel .stack-layer {
  position: absolute;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%) rotateX(62deg) rotateZ(-45deg);
  border-radius: 24px;
  overflow: visible;
}

.tech-arch-panel .stack-layer::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -20px;
  height: 28px;
  border-radius: 0 0 24px 24px;
  background: rgb(15 23 42 / 7%);
  filter: blur(2px);
  z-index: -1;
}

.tech-arch-panel .stack-layer svg {
  position: absolute;
  top: 174px;
  left: 39%;
  width: 22px;
  height: 22px;
  color: #ffffff;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  z-index: 100;
  overflow: visible;
  transform: translate(-50%, -50%) rotateZ(45deg) rotateX(-62deg) scaleX(2) scaleY(7.1);
  transform-origin: center center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.55));
}

.tech-arch-panel .stack-layer svg * {
  vector-effect: non-scaling-stroke;
}

.tech-arch-panel .stack-layer.layer-1 svg {
  top: 156px;
  left: 44%;
}

/* Stack layers: team blue ramp (sky → primary → navy) */
.tech-arch-panel .stack-layer.layer-1 {
  top: -44px;
  background: linear-gradient(135deg, var(--stack-b2) 0%, var(--stack-b3) 100%);
  box-shadow:
    0 14px 28px rgba(56, 189, 248, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 18px rgba(15, 23, 42, 0.06),
    inset 8px 8px 20px rgba(255, 255, 255, 0.12);
  z-index: 7;
}

.tech-arch-panel .stack-layer.layer-2 {
  top: 61px;
  background: linear-gradient(135deg, var(--stack-b3) 0%, var(--stack-b4) 100%);
  box-shadow:
    0 14px 28px rgba(56, 189, 248, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -10px 18px rgba(0, 0, 0, 0.07),
    inset 8px 8px 20px rgba(255, 255, 255, 0.1);
  z-index: 6;
}

.tech-arch-panel .stack-layer.layer-3 {
  top: 166px;
  background: linear-gradient(135deg, var(--stack-b4) 0%, var(--stack-b5) 100%);
  box-shadow:
    0 14px 28px rgba(56, 189, 248, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 18px rgba(0, 0, 0, 0.07),
    inset 8px 8px 20px rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.tech-arch-panel .stack-layer.layer-4 {
  top: 271px;
  background: linear-gradient(135deg, var(--stack-b5) 0%, var(--stack-b6) 100%);
  box-shadow:
    0 14px 28px rgba(59, 130, 246, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -10px 18px rgba(0, 0, 0, 0.08),
    inset 8px 8px 20px rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.tech-arch-panel .stack-layer.layer-5 {
  top: 376px;
  background: linear-gradient(135deg, var(--stack-b6) 0%, var(--stack-b7) 100%);
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -10px 18px rgba(0, 0, 0, 0.08),
    inset 8px 8px 20px rgba(255, 255, 255, 0.07);
  z-index: 3;
}

.tech-arch-panel .stack-layer.layer-6 {
  top: 481px;
  background: linear-gradient(135deg, var(--stack-b7) 0%, var(--stack-b8) 100%);
  box-shadow:
    0 14px 28px rgba(29, 78, 216, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 18px rgba(0, 0, 0, 0.09),
    inset 8px 8px 20px rgba(255, 255, 255, 0.06);
  z-index: 2;
}

.tech-arch-panel .stack-layer.layer-7 {
  top: 586px;
  background: linear-gradient(135deg, var(--stack-b8) 0%, #1e3a8a 100%);
  box-shadow:
    0 14px 28px rgba(23, 37, 84, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -10px 18px rgba(0, 0, 0, 0.1),
    inset 8px 8px 20px rgba(255, 255, 255, 0.05);
  z-index: 1;
}

/* —— Right: layer cards —— */
.tech-arch-panel__cards.cards-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
  min-width: 0;
  justify-content: center;
  overflow: visible;
}

.tech-arch-panel .layer-card {
  position: relative;
  min-height: 63px !important;
  background: #ffffff;
  border: 1px solid #e0e7ff;
  border-radius: 18px;
  display: grid !important;
  grid-template-columns: 30% 70% !important;
  gap: 0;
  align-items: center;
  padding: 16px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  margin: 0;
  overflow: visible;
}

.tech-arch-panel .layer-card__info {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding-right: 10px;
}

.tech-arch-panel .layer-card__body {
  min-width: 0;
}

/* Same connector as Industries timeline (right column: dot + fade line to card) */
.tech-arch-panel .layer-card > .industries-timeline__connector.tech-arch-panel__connector {
  position: absolute;
  right: 100%;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  flex-direction: row;
  margin-right: 0.55rem;
  margin-left: 0;
  pointer-events: none;
  z-index: 3;
}

.tech-arch-panel .layer-card > .industries-timeline__connector.tech-arch-panel__connector::after {
  display: none;
}

.tech-arch-panel .layer-card > .industries-timeline__connector.tech-arch-panel__connector .industries-timeline__line {
  flex: 1 1 auto;
  height: 2px;
  min-width: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    currentColor 0%,
    color-mix(in srgb, currentColor 55%, transparent) 30%,
    color-mix(in srgb, currentColor 18%, transparent) 65%,
    transparent 100%
  );
}

.tech-arch-panel .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e7ff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #2563eb);
}

.tech-arch-panel .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.tech-arch-panel .layer-name {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--accent, #38bdf8), var(--dcube-blue, #2563eb), #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.tech-arch-panel .layer-title {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.25;
}

.tech-arch-panel .tech-box {
  border-left: 1px solid #e0e7ff;
  padding-left: 14px;
  text-align: left;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tech-arch-panel .tech-title {
  font-size: 11px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 7px;
}

.tech-arch-panel .tech-list {
  font-size: 11px;
  line-height: 1.55;
  color: #334155;
  font-weight: 500;
  word-break: break-word;
}

/* Below 1350px: cards only — hide 3D stack */
@media (max-width: 1349.98px) {
  .tech-ecosystem-section .section-head,
  .tech-ecosystem-section__head {
    margin-bottom: 1.75rem;
  }

  .tech-arch-panel.architecture-panel {
    padding: 0;
    gap: 0;
  }

  .tech-arch-panel__stack.stack-wrap {
    display: none !important;
  }

  .tech-arch-panel__cards.cards-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    padding: 0;
    min-height: 0;
  }

  .tech-arch-panel .layer-card > .industries-timeline__connector.tech-arch-panel__connector {
    display: none;
  }

  .tech-arch-panel .layer-card {
    grid-template-columns: 1fr !important;
    gap: 14px;
    align-items: start;
    padding: 1rem 1.125rem !important;
    border-left: 3px solid var(--accent, #3b82f6);
  }

  .tech-arch-panel .layer-card__info {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.75rem;
    padding-right: 0;
    align-items: center;
  }

  .tech-arch-panel .card-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    border-radius: 0.75rem;
    border: none;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--accent, #3b82f6) 82%, #ffffff) 0%,
      var(--accent, #3b82f6) 100%
    );
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent, #3b82f6) 32%, transparent);
    color: #ffffff;
  }

  .tech-arch-panel .card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #ffffff;
    color: #ffffff;
  }

  .tech-arch-panel .tech-box {
    border-left: 0;
    border-top: 1px solid #e0e7ff;
    padding-left: 0;
    padding-top: 12px;
    align-self: stretch;
  }

  .tech-arch-panel .layer-name {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .tech-arch-panel .layer-title {
    font-size: 0.9375rem;
    line-height: 1.3;
  }

  .tech-arch-panel .tech-title {
    font-size: 0.6875rem;
  }

  .tech-arch-panel .tech-list {
    font-size: 11px;
    line-height: 1.55;
    color: #334155;
    font-weight: 500;
    word-break: break-word;
  }
}

@media (max-width: 575.98px) {
  .tech-arch-panel__cards.cards-wrap {
    grid-template-columns: 1fr;
  }

  .tech-arch-panel .layer-card {
    padding: 0.875rem 1rem !important;
  }

  .tech-arch-panel .layer-title {
    font-size: 0.875rem;
  }
}

@media (min-width: 1350px) {
  /* 1350px+ only — full stack + card layout */
  .tech-arch-panel__stack.stack-wrap {
    display: flex !important;
    align-self: start;
    position: sticky;
    top: 5.5rem;
    height: 680px;
  }

  .tech-arch-panel__cards.cards-wrap {
    align-self: center;
    min-height: 34rem;
    gap: 15px;
    padding-left: 0;
  }

  .tech-arch-panel .layer-card > .industries-timeline__connector.tech-arch-panel__connector {
    display: flex;
  }

  .tech-arch-panel .layer-card {
    grid-template-columns: 30% 70% !important;
    gap: 0;
    align-items: center;
    padding: 16px !important;
    border: 1px solid #e0e7ff;
    border-left: 1px solid #e0e7ff;
  }

  .tech-arch-panel .layer-card__info {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding-right: 10px;
  }

  .tech-arch-panel .tech-box {
    border-left: 1px solid #e0e7ff;
    border-top: 0;
    padding-left: 14px;
    padding-top: 0;
    align-self: stretch;
  }

  .tech-arch-panel .layer-name {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .tech-arch-panel .layer-title {
    font-size: 12px;
    line-height: 1.25;
  }

  .tech-arch-panel .tech-title {
    font-size: 11px;
  }

  .tech-arch-panel .tech-list {
    font-size: 12px;
    line-height: 1.55;
  }

  .tech-arch-panel .card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e7ff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    color: var(--accent, #2563eb);
  }

  .tech-arch-panel .card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    color: currentColor;
  }
}
@media (max-width: 767px) {
  .hero-visual-shadow
  {
    transform: translate(0.2rem, .5rem) rotate(4deg);
  }
}
/* Global presence */
.global-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #070b1f;
  color: #fff;
}
.global-section__glow {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 40rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.1);
  filter: blur(48px);
  pointer-events: none;
}
.global-map-wrap { position: relative; aspect-ratio: 2 / 1; width: 100%; }
.global-map-wrap svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.global-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.global-pin__dot {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #67e8f9;
  border: 2px solid #22d3ee;
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.9);
}
.global-pin__label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.75rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.office-cards { display: grid; gap: 1.25rem; margin-top: 3rem; }
@media (min-width: 576px) { .office-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .office-cards { grid-template-columns: repeat(4, 1fr); } }
.office-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
  backdrop-filter: blur(12px);
}
.office-card.is-active,
.office-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.15);
}
.office-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0.75rem 0 0.5rem; color: #fff; }
.office-card p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); line-height: 1.5; margin: 0; }

/* CTA */
.cta-section { padding: 4rem 0 5rem; }
.cta-box {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), var(--card), var(--secondary));
  padding: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-box { padding: 3rem; } }
.cta-box__blob {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background-image: var(--gradient-brand);
  opacity: 0.15;
  filter: blur(48px);
}
.cta-inner { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 768px) { .cta-inner { grid-template-columns: 1fr auto; } }
.cta-inner h3 { font-size: 1.875rem; font-weight: 700; margin: 0 0 0.75rem; }
@media (min-width: 992px) { .cta-inner h3 { font-size: 2.25rem; } }
.cta-inner p { color: var(--muted-foreground); margin: 0; max-width: 36rem; }

/* Inner pages */
.section--pad-sm { padding: 3rem 0 4rem; }
.page-hero { padding: 4rem 0 2rem; }
.page-content { max-width: 48rem; line-height: 1.7; color: var(--foreground); }
.page-content p { color: var(--muted-foreground); }
.page-list { padding-left: 1.25rem; margin: 1rem 0; }
.page-list li { margin-bottom: 0.5rem; color: var(--muted-foreground); }
.page-list a { color: var(--primary); font-weight: 500; }
.partners-page-grid .recognition-tile { min-height: 100px; }
.site-header__phone [data-icon] { display: inline-flex; }

/* Floating Casestudy download FAB — services index */
.casestudy-fab {
  position: fixed;
  right: 1.5rem;
  isolation: isolate;
  bottom: 6.5rem;
  z-index: 1040;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--dcube-cyan, #06b6d4), var(--dcube-blue, #2563eb));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
  overflow: hidden;
  transition: gap 0.3s ease, padding 0.3s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.casestudy-fab__icon {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}

.casestudy-fab__icon-svg {
  width: 1.25rem;
  height: 1.25rem;
}

.casestudy-fab__label {
  order: 1;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: 0;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}

.casestudy-fab:not(:hover):not(:focus-visible) .casestudy-fab__label {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.casestudy-fab:hover,
.casestudy-fab:focus-visible {
  color: #fff;
  width: auto;
  justify-content: flex-end;
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 12px;
  box-shadow: 0 10px 32px rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
}

.casestudy-fab:hover .casestudy-fab__label,
.casestudy-fab:focus-visible .casestudy-fab__label {
  max-width: 11rem;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .casestudy-fab {
    right: 1.25rem;
    bottom: 6.25rem;
    width: 3.25rem;
    min-width: 3.25rem;
    height: 3.25rem;
    font-size: 0.8125rem;
  }

  .casestudy-fab__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .casestudy-fab:hover .casestudy-fab__label,
  .casestudy-fab:focus-visible .casestudy-fab__label {
    max-width: 9.5rem;
  }
}

