﻿/* Theme Tokens */
:root {
  --primary: #0B1C3D;
  --secondary: #1F6BFF;
  --accent: #00E5A8;
  --btn-grad-start: #d4bc00;
  --btn-grad-end: #000000;
  --btn-grad-hover-start: #f1d90a;
  --btn-grad-hover-end: #080808;
  --btn-text: #f8fafc;
  --hero-motion-duration: 1.05s;
  --hero-motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --logo-yellow: #f1d90a;
  --logo-yellow-soft: #fff7bd;
  --logo-navy: #0B1C3D;
  --text-main: #0f172a;
  --text-muted: #475569;
  --surface: #f8fafc;
  --radius-xl: 1.25rem;
}

/* Base Reset And Layout */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 50%, #ffffff 100%);
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

/* Global Serif Typography Override */
body,
body * {
  font-family: serif !important;
}
body.tt-loader-active {
  overflow: hidden;
}

/* One-time site loader (from provided Uiverse animation). */
.site-loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(241, 217, 10, 0.2), transparent 48%),
    linear-gradient(140deg, #08142f 0%, #0b1c3d 58%, #050d1f 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
}

/* From Uiverse.io by dexter-st */
.site-loader-overlay .loader-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  width: auto;
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.72em;
  font-weight: 600;
  user-select: none;
  color: #fff;
  scale: 2.25;
}

.site-loader-overlay .loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-color: transparent;
  mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 6px,
    black 7px,
    black 8px
  );
}

.site-loader-overlay .loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 50% 50%, #ff0 0%, transparent 50%),
    radial-gradient(circle at 45% 45%, #f00 0%, transparent 45%),
    radial-gradient(circle at 55% 55%, #0ff 0%, transparent 45%),
    radial-gradient(circle at 45% 55%, #0f0 0%, transparent 45%),
    radial-gradient(circle at 55% 45%, #00f 0%, transparent 45%);
  mask: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    transparent 10%,
    black 25%
  );
  animation:
    transform-animation 2s infinite alternate,
    opacity-animation 4s infinite;
  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
}

@keyframes transform-animation {
  0% {
    transform: translate(-55%);
  }
  100% {
    transform: translate(55%);
  }
}

@keyframes opacity-animation {
  0%,
  100% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
}

.site-loader-overlay .loader-letter {
  display: inline-block;
  opacity: 0;
  animation: loader-letter-anim 4s infinite linear;
  z-index: 2;
}

.site-loader-overlay .loader-letter:nth-child(1) {
  animation-delay: 0.1s;
}
.site-loader-overlay .loader-letter:nth-child(2) {
  animation-delay: 0.205s;
}
.site-loader-overlay .loader-letter:nth-child(3) {
  animation-delay: 0.31s;
}
.site-loader-overlay .loader-letter:nth-child(4) {
  animation-delay: 0.415s;
}
.site-loader-overlay .loader-letter:nth-child(5) {
  animation-delay: 0.521s;
}
.site-loader-overlay .loader-letter:nth-child(6) {
  animation-delay: 0.626s;
}
.site-loader-overlay .loader-letter:nth-child(7) {
  animation-delay: 0.731s;
}
.site-loader-overlay .loader-letter:nth-child(8) {
  animation-delay: 0.837s;
}
.site-loader-overlay .loader-letter:nth-child(9) {
  animation-delay: 0.942s;
}
.site-loader-overlay .loader-letter:nth-child(10) {
  animation-delay: 1.047s;
}

@keyframes loader-letter-anim {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 4px #fff;
    transform: scale(1.1) translateY(-2px);
  }
  20% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .site-loader-overlay .loader-wrapper {
    scale: 1.55;
    font-size: 1.25em;
  }

  /* Prevent horizontal scroll on small screens caused by full-bleed sections. */
  .hero-tech-full-width,
  .services-orbit-shell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

main {
  overflow-x: hidden;
  overflow-x: clip;
}

.home-hero-section,
.hero-rotator-full {
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: 'Poppins', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.brand-logo {
  letter-spacing: 0.06em;
}

.nav-link,
.top-link {
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after,
.top-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.top-link:hover::after,
.nav-link.is-active::after,
.top-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.is-active,
.top-link.is-active {
  color: var(--primary);
}

/* Header And Navigation */
.site-header {
  background:
    radial-gradient(900px 220px at 6% -30%, rgba(11, 28, 61, 0.24) 0%, rgba(11, 28, 61, 0) 70%),
    linear-gradient(110deg, #fffef8 0%, #fff9de 34%, #ecd96a 68%, #fff3c4 100%);
  border-bottom-color: rgba(11, 28, 61, 0.35);
  box-shadow: 0 10px 24px rgba(11, 28, 61, 0.12);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

/* About/Services/Contact: keep rounded navbar shell, remove outer header background */
body[data-page='about'] .site-header,
body[data-page='services'] .site-header,
body[data-page='contact'] .site-header {
  background: transparent;
  box-shadow: none;
  border-bottom: 0;
}

.zebra-header-wrap {
  max-width: 1860px;
}

.top-utility .top-link {
  color: var(--logo-navy);
  font: normal 500 14px/22px 'Inter', sans-serif;
  text-decoration: none;
}

.top-utility .top-link::after {
  display: none;
}

.top-utility .top-link.is-active {
  color: var(--logo-navy);
  font-weight: 500;
}

.top-utility .top-link:hover {
  color: var(--logo-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-utility {
  min-height: 25px;
}

.utility-sep {
  color: rgba(17, 24, 39, 0.45);
  font-size: 14px;
  line-height: 22px;
}

.zebra-shell {
  align-items: center;
  background: rgba(255, 254, 244, 0.88);
  border: 1px solid rgba(11, 28, 61, 0.18);
  border-radius: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 22px rgba(11, 28, 61, 0.12);
  backdrop-filter: blur(6px);
  min-height: 82px;
}

.zebra-header-main {
  min-height: 82px;
}

.zebra-logo-icon {
  width: 60px;
  height: 60px;
}

.zebra-brand-link {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.zebra-brand-image {
  display: block;
  height: 66px;
  width: auto;
  object-fit: contain;
}

.zebra-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

.zebra-shell .nav-link {
  color: var(--logo-navy);
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.zebra-shell .nav-link::after,
#mobileMenu .nav-link::after {
  display: none;
}

.zebra-shell .nav-link.is-active,
#mobileMenu .nav-link.is-active {
  color: var(--logo-navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.zebra-shell .nav-link:hover,
#mobileMenu .nav-link:hover {
  color: var(--logo-navy);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.zebra-search {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  min-height: 40px;
  padding-left: 0.95rem;
  padding-right: 0.5rem;
}

.zebra-search input {
  border: 0;
  background: transparent;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  outline: 0;
}

.zebra-search input::placeholder {
  color: #565656;
  opacity: 1;
}

.zebra-search-btn {
  border-radius: 999px;
  color: #5c5f66;
  height: 36px;
  transition: background-color 0.2s ease;
  width: 36px;
}

.zebra-search-btn:hover {
  background: transparent;
  color: #111827;
}

.zebra-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  border: 1px solid rgba(70, 61, 0, 0.68);
  border-radius: 3rem;
  color: var(--btn-text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  min-height: 40px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.2s ease;
}

.zebra-cta:hover {
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.42);
}

.zebra-cta svg,
.zebra-cta i {
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-quick-quote {
  min-height: 36px;
  padding: 0.45rem 0.95rem;
  font-size: 0.74rem;
  line-height: 1.15;
}

@media (max-width: 420px) {
  .mobile-quick-quote {
    min-height: 34px;
    padding: 0.4rem 0.75rem;
    font-size: 0.68rem;
  }
}

.zebra-mobile-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.14) 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(12px) saturate(135%);
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  overflow-x: hidden;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 28, 61, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  z-index: 40;
  border: 0;
  padding: 0;
  margin: 0;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-top-links a {
  color: #475569;
  text-decoration: none;
}

#mobileMenu #mobileServicesPanel {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-top-links a:hover {
  color: #1e293b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Home Header And Hero Overrides */
body[data-page='home'] .home-hero-section {
  margin-top: -132px;
  padding-top: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

body[data-page='home'] .hero-rotator,
body[data-page='home'] .hero-slide-inner {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

body[data-page='home'] .hero-slide-inner {
  padding: 5.1rem 2.8rem 2.8rem;
}

body[data-page='home'] .site-header:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-header-wrap {
  background: transparent;
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-shell {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-shell .nav-link {
  color: #ffffff;
  font-weight: 700;
}

body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenu .nav-link {
  color: var(--logo-navy);
  font-weight: 600;
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-shell .nav-link.is-active,
body[data-page='home'] .site-header:not(.is-scrolled) .zebra-shell .nav-link:hover {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenu .nav-link.is-active,
body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenu .nav-link:hover {
  color: var(--logo-navy);
  text-decoration-color: rgba(11, 28, 61, 0.92);
}

body[data-page='home'] .site-header:not(.is-scrolled) .top-utility .top-link {
  color: #ffffff;
  font-weight: 700;
}

body[data-page='home'] .site-header:not(.is-scrolled) .utility-sep {
  color: rgba(255, 255, 255, 0.82);
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-cta {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--btn-text);
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.34);
}

body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenu .zebra-cta {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  border-color: rgba(70, 61, 0, 0.68);
  color: var(--btn-text);
  font-weight: 600;
}

body[data-page='home'] .site-header:not(.is-scrolled) .zebra-cta:hover {
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  color: #ffffff;
}

body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenu .zebra-cta:hover {
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  color: #ffffff;
}

body[data-page='home'] .site-header:not(.is-scrolled) #mobileMenuButton {
  background: transparent;
  border-color: rgba(11, 28, 61, 0.45);
  color: var(--logo-navy);
}

body[data-page='home'] .site-header.is-scrolled {
  background:
    radial-gradient(900px 220px at 6% -30%, rgba(11, 28, 61, 0.24) 0%, rgba(11, 28, 61, 0) 70%),
    linear-gradient(110deg, #fffef8 0%, #fff9de 34%, #ecd96a 68%, #fff3c4 100%);
  border-bottom-color: rgba(11, 28, 61, 0.35);
  box-shadow: 0 10px 24px rgba(11, 28, 61, 0.12);
}

body[data-page='home'] .site-header.is-scrolled .zebra-shell {
  background: rgba(255, 254, 244, 0.88);
  border-color: rgba(11, 28, 61, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 22px rgba(11, 28, 61, 0.12);
  backdrop-filter: blur(6px);
}

body[data-page='home'] .site-header.is-scrolled .zebra-shell .nav-link,
body[data-page='home'] .site-header.is-scrolled .top-utility .top-link {
  color: var(--logo-navy);
  font-weight: 600;
}

body[data-page='home'] .site-header.is-scrolled .zebra-cta {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  border-color: rgba(70, 61, 0, 0.68);
  color: var(--btn-text);
  font-weight: 600;
}

/* Shared Buttons, Cards, And Section Helpers */
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(70, 61, 0, 0.68);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  color: var(--btn-text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.primary-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.44);
}

.primary-btn.is-loading,
.secondary-btn.is-loading {
  cursor: not-allowed;
  transform: none;
}

.primary-btn.is-loading:hover,
.secondary-btn.is-loading:hover {
  transform: none;
}

.tt-btn-spinner {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #ffffff;
  display: inline-block;
  flex-shrink: 0;
  animation: tt-btn-spin 0.75s linear infinite;
}

@keyframes tt-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.secondary-btn {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  color: var(--btn-text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.secondary-btn:hover {
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
}

.card-surface {
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 30px rgba(11, 28, 61, 0.08);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(11, 28, 61, 0.14);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.18);
  background: rgba(31, 107, 255, 0.09);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.85rem;
  text-transform: uppercase;
}

/* Home Why Choose Us - Card Color Only */
body[data-page='home'] #why-totaltech .card-surface {
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.08) 0%, rgba(241, 217, 10, 0.14) 100%);
  border: 1px solid rgba(31, 107, 255, 0.2);
  box-shadow: 0 14px 30px rgba(11, 28, 61, 0.1);
}

body[data-page='home'] #why-totaltech .why-choose-cards > .card-surface {
  position: relative;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center;
  will-change: transform, filter;
}

@media (hover: hover) and (pointer: fine) {
  body[data-page='home'] #why-totaltech .why-choose-cards:has(.card-surface:hover) > .card-surface:not(:hover) {
    filter: blur(8px);
    transform: scale(0.92);
    opacity: 0.76;
  }

  body[data-page='home'] #why-totaltech .why-choose-cards:has(.card-surface:hover) > .card-surface:hover {
    transform: scale(1.08);
    z-index: 3;
  }
}

/* Hero Technologies Bridge */
.hero-tech-bridge-section {
  position: relative;
  margin-top: -2.8rem;
  margin-bottom: -1.8rem;
  z-index: 6;
}

.hero-tech-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.hero-tech-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.38rem 0;
}

.hero-tech-marquee::before,
.hero-tech-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  pointer-events: none;
}

.hero-tech-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.96) 12%, rgba(248, 251, 255, 0) 100%);
}

.hero-tech-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 251, 255, 0.96) 12%, rgba(248, 251, 255, 0) 100%);
}

.hero-tech-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  animation: heroTechFlowLtr 32s linear infinite;
}

.hero-tech-set {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  padding-right: 0.78rem;
}

.hero-tech-circle {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.36);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 20px rgba(11, 28, 61, 0.16);
  display: grid;
  place-items: center;
}

.hero-tech-circle i {
  font-size: 1.62rem;
  line-height: 1;
  font-family: 'devicon' !important;
}

.hero-tech-circle .devicon-express-original {
  color: #111827;
}

@keyframes heroTechFlowLtr {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Preserve icon rendering against global font override */
i[class^='devicon-'],
i[class*=' devicon-'] {
  font-family: 'devicon' !important;
}

/* Services Overview Section */
.services-overview-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
}

.services-overview-section > .mx-auto {
  position: relative;
  z-index: 2;
}

#services-overview .services-stars-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  --services-stars-sm:
    504px 176px #fff,
    1154px 445px #fff,
    751px 51px #fff,
    894px 236px #fff,
    1747px 1989px #fff,
    1706px 999px #fff,
    1284px 1722px #fff,
    1192px 181px #fff,
    280px 1900px #fff,
    1849px 1778px #fff,
    1101px 361px #fff,
    1100px 517px #fff,
    1886px 1643px #fff,
    310px 1658px #fff,
    933px 121px #fff,
    44px 1074px #fff,
    1659px 1690px #fff,
    1361px 761px #fff,
    1171px 1392px #fff,
    1422px 1437px #fff,
    1980px 899px #fff,
    195px 383px #fff,
    894px 254px #fff,
    1537px 1187px #fff,
    1609px 778px #fff,
    431px 544px #fff,
    38px 555px #fff,
    667px 1765px #fff,
    1911px 385px #fff,
    1742px 1164px #fff,
    673px 628px #fff,
    258px 1959px #fff,
    205px 1843px #fff,
    1611px 865px #fff,
    1420px 613px #fff,
    237px 1018px #fff,
    234px 487px #fff,
    1208px 1395px #fff,
    981px 419px #fff,
    454px 1388px #fff,
    1763px 1633px #fff,
    1394px 1678px #fff,
    803px 306px #fff,
    252px 1079px #fff,
    1303px 1975px #fff,
    851px 1494px #fff,
    860px 91px #fff,
    154px 1651px #fff,
    1957px 1599px #fff,
    337px 773px #fff,
    566px 979px #fff,
    1681px 1827px #fff,
    395px 632px #fff,
    1060px 528px #fff,
    807px 24px #fff,
    1295px 733px #fff,
    948px 509px #fff,
    1186px 1401px #fff,
    1105px 1207px #fff,
    463px 759px #fff,
    836px 1871px #fff,
    470px 1841px #fff,
    1899px 1142px #fff,
    1849px 50px #fff,
    510px 1082px #fff,
    1004px 1904px #fff,
    1959px 1415px #fff,
    1632px 617px #fff,
    1128px 1370px #fff,
    99px 678px #fff,
    919px 1532px #fff,
    1944px 76px #fff,
    1151px 606px #fff,
    1290px 1335px #fff,
    935px 509px #fff,
    1442px 1012px #fff,
    68px 1688px #fff,
    1462px 1808px #fff,
    1477px 1073px #fff,
    1992px 1965px #fff,
    1242px 1569px #fff,
    109px 1087px #fff,
    1231px 499px #fff,
    1494px 48px #fff,
    1880px 896px #fff,
    705px 1150px #fff,
    1141px 61px #fff,
    815px 1179px #fff,
    139px 281px #fff,
    215px 512px #fff,
    564px 1121px #fff,
    860px 1949px #fff,
    1337px 1197px #fff,
    722px 1400px #fff,
    559px 1831px #fff,
    1764px 1110px #fff,
    1310px 1497px #fff,
    1179px 554px #fff,
    294px 466px #fff,
    206px 684px #fff,
    882px 1556px #fff,
    1288px 1654px #fff,
    583px 1385px #fff,
    852px 708px #fff,
    1461px 1046px #fff,
    1507px 1368px #fff,
    546px 1605px #fff,
    1921px 1590px #fff,
    1761px 323px #fff,
    1176px 1032px #fff,
    1395px 16px #fff,
    874px 104px #fff,
    1656px 455px #fff,
    773px 1947px #fff,
    1341px 1210px #fff,
    237px 999px #fff,
    1143px 1857px #fff,
    289px 307px #fff,
    1632px 1935px #fff,
    1534px 237px #fff,
    447px 1571px #fff,
    1738px 1747px #fff,
    1714px 182px #fff,
    1359px 1860px #fff,
    1243px 1152px #fff,
    1781px 1523px #fff,
    1513px 890px #fff,
    1566px 476px #fff,
    999px 1191px #fff,
    481px 311px #fff,
    847px 277px #fff,
    1587px 1370px #fff,
    453px 460px #fff,
    182px 1630px #fff,
    1960px 799px #fff,
    867px 246px #fff,
    210px 1682px #fff,
    516px 897px #fff,
    1185px 729px #fff,
    1441px 591px #fff,
    463px 1921px #fff,
    1526px 99px #fff,
    1725px 367px #fff,
    614px 657px #fff,
    1842px 1609px #fff,
    924px 98px #fff,
    1568px 873px #fff,
    1787px 81px #fff,
    1386px 182px #fff,
    1471px 554px #fff,
    517px 1719px #fff,
    1392px 121px #fff,
    1642px 359px #fff,
    476px 1474px #fff,
    354px 776px #fff,
    1963px 1519px #fff,
    885px 1027px #fff,
    1430px 392px #fff,
    123px 1019px #fff,
    1322px 1986px #fff,
    468px 768px #fff,
    1756px 1168px #fff,
    542px 1858px #fff,
    1900px 1324px #fff,
    1295px 1998px #fff,
    691px 412px #fff,
    1537px 1096px #fff,
    179px 155px #fff,
    1417px 1742px #fff,
    1288px 1539px #fff,
    900px 1514px #fff,
    254px 288px #fff,
    753px 1022px #fff,
    545px 440px #fff,
    80px 73px #fff,
    1526px 710px #fff,
    943px 885px #fff,
    1660px 784px #fff,
    1088px 1748px #fff,
    521px 1195px #fff,
    316px 1037px #fff,
    409px 948px #fff,
    532px 1986px #fff,
    830px 1544px #fff,
    1990px 1123px #fff,
    1650px 562px #fff,
    782px 1788px #fff,
    1173px 449px #fff,
    1093px 615px #fff,
    1952px 687px #fff,
    251px 1413px #fff,
    1594px 1980px #fff,
    1112px 1331px #fff,
    350px 1619px #fff,
    804px 717px #fff,
    1775px 1698px #fff,
    1364px 586px #fff,
    1222px 308px #fff,
    299px 100px #fff,
    1477px 395px #fff,
    1598px 955px #fff,
    1293px 1415px #fff,
    241px 97px #fff,
    1112px 1458px #fff,
    1711px 668px #fff,
    766px 1986px #fff,
    570px 1581px #fff,
    424px 1852px #fff,
    601px 636px #fff,
    574px 1749px #fff,
    1573px 594px #fff,
    1317px 741px #fff,
    138px 88px #fff,
    1760px 1046px #fff,
    913px 1807px #fff,
    786px 1718px #fff,
    259px 842px #fff,
    979px 381px #fff,
    1797px 601px #fff,
    1992px 677px #fff;
  --services-stars-md:
    1978px 1365px #fff,
    171px 1384px #fff,
    1514px 1440px #fff,
    1013px 676px #fff,
    1890px 1086px #fff,
    1585px 1288px #fff,
    726px 1915px #fff,
    1776px 1048px #fff,
    963px 1252px #fff,
    603px 1582px #fff,
    1441px 572px #fff,
    65px 811px #fff,
    1126px 389px #fff,
    1906px 365px #fff,
    143px 633px #fff,
    707px 183px #fff,
    1274px 46px #fff,
    1206px 1085px #fff,
    75px 627px #fff,
    244px 595px #fff,
    263px 1650px #fff,
    267px 1797px #fff,
    1543px 304px #fff,
    1761px 1506px #fff,
    1516px 470px #fff,
    549px 538px #fff,
    1836px 1670px #fff,
    346px 1348px #fff,
    1265px 724px #fff,
    1478px 836px #fff,
    782px 1145px #fff,
    1174px 588px #fff,
    412px 1796px #fff,
    1338px 1336px #fff,
    1919px 850px #fff,
    208px 923px #fff,
    23px 1582px #fff,
    795px 1553px #fff,
    1301px 1015px #fff,
    1537px 596px #fff,
    431px 968px #fff,
    1037px 1752px #fff,
    1920px 1518px #fff,
    1330px 1833px #fff,
    1987px 1426px #fff,
    547px 954px #fff,
    1756px 541px #fff,
    419px 417px #fff,
    1410px 1732px #fff,
    496px 1061px #fff,
    1459px 358px #fff,
    1506px 1372px #fff,
    1788px 1822px #fff,
    760px 1114px #fff,
    1640px 242px #fff,
    994px 785px #fff,
    181px 1756px #fff,
    572px 1666px #fff,
    1808px 506px #fff,
    1446px 1743px #fff,
    865px 1823px #fff,
    1783px 1293px #fff,
    909px 1655px #fff,
    664px 404px #fff,
    193px 1757px #fff,
    761px 1219px #fff,
    1513px 680px #fff,
    1399px 184px #fff,
    1086px 1091px #fff,
    910px 70px #fff,
    1607px 459px #fff,
    1682px 74px #fff,
    1143px 626px #fff,
    1815px 753px #fff,
    23px 302px #fff,
    1781px 1087px #fff,
    379px 1027px #fff,
    1010px 1460px #fff,
    1490px 1602px #fff,
    1783px 816px #fff,
    593px 552px #fff,
    373px 798px #fff,
    1309px 626px #fff,
    1801px 132px #fff,
    351px 1892px #fff,
    1147px 1043px #fff,
    1653px 423px #fff,
    804px 1996px #fff,
    1602px 149px #fff,
    1583px 1516px #fff,
    1495px 1860px #fff,
    80px 403px #fff,
    1915px 1932px #fff,
    1210px 90px #fff,
    154px 1780px #fff,
    1311px 1450px #fff,
    346px 1579px #fff,
    1728px 818px #fff,
    478px 290px #fff,
    1284px 521px #fff,
    920px 507px #fff,
    532px 1686px #fff,
    1638px 1171px #fff,
    1222px 1611px #fff,
    1748px 1679px #fff,
    851px 492px #fff,
    1558px 1411px #fff,
    742px 763px #fff,
    1766px 1211px #fff,
    521px 853px #fff,
    963px 1865px #fff,
    435px 1634px #fff,
    1097px 1084px #fff,
    1379px 329px #fff,
    1058px 1044px #fff,
    1075px 1189px #fff,
    1039px 1001px #fff,
    1281px 681px #fff,
    826px 21px #fff,
    1451px 1516px #fff,
    1679px 1353px #fff,
    749px 247px #fff,
    1954px 469px #fff,
    822px 1767px #fff,
    1130px 1319px #fff,
    238px 448px #fff,
    1385px 1818px #fff,
    0px 227px #fff,
    396px 92px #fff,
    33px 415px #fff,
    1495px 1543px #fff,
    1060px 501px #fff,
    1861px 1221px #fff,
    766px 1745px #fff,
    1889px 574px #fff,
    1665px 1834px #fff,
    1397px 85px #fff,
    563px 1379px #fff,
    831px 1829px #fff,
    33px 1550px #fff;
  --services-stars-lg:
    1167px 203px #fff,
    1399px 1505px #fff,
    1147px 742px #fff,
    556px 1334px #fff,
    1050px 1381px #fff,
    264px 1720px #fff,
    1700px 1131px #fff,
    1182px 494px #fff,
    621px 363px #fff,
    1866px 952px #fff,
    635px 357px #fff,
    825px 1749px #fff,
    0px 1779px #fff,
    1684px 247px #fff,
    365px 1747px #fff,
    998px 1218px #fff,
    1318px 1648px #fff,
    730px 1306px #fff,
    808px 343px #fff,
    1942px 146px #fff,
    1230px 1938px #fff,
    716px 1573px #fff,
    1448px 1764px #fff,
    1846px 791px #fff,
    1537px 730px #fff,
    333px 1940px #fff,
    1529px 695px #fff,
    1196px 948px #fff,
    1942px 27px #fff,
    664px 1079px #fff,
    372px 1000px #fff,
    245px 1091px #fff,
    932px 1179px #fff,
    1722px 397px #fff,
    1816px 1463px #fff,
    1612px 145px #fff,
    777px 1930px #fff,
    102px 1622px #fff,
    784px 1146px #fff,
    7px 1881px #fff,
    662px 1095px #fff,
    1775px 1008px #fff,
    1973px 381px #fff,
    1075px 1930px #fff,
    1940px 864px #fff,
    1993px 165px #fff,
    674px 1383px #fff,
    1372px 1434px #fff,
    1511px 724px #fff,
    326px 1521px #fff,
    1711px 488px #fff,
    1459px 1313px #fff,
    1326px 1013px #fff,
    820px 399px #fff,
    506px 14px #fff,
    127px 1159px #fff,
    17px 91px #fff,
    1286px 1727px #fff,
    273px 1755px #fff,
    1746px 755px #fff,
    646px 1147px #fff,
    1708px 1367px #fff,
    1335px 86px #fff,
    734px 222px #fff,
    592px 619px #fff,
    1775px 79px #fff,
    563px 710px #fff,
    1157px 787px #fff,
    1548px 249px #fff,
    1548px 93px #fff,
    942px 1014px #fff,
    1451px 177px #fff,
    1652px 756px #fff,
    1239px 324px #fff,
    1265px 62px #fff,
    272px 639px #fff,
    1745px 1140px #fff,
    126px 202px #fff,
    1949px 207px #fff,
    1464px 1585px #fff,
    1741px 1604px #fff,
    583px 125px #fff,
    974px 327px #fff,
    161px 862px #fff,
    1140px 105px #fff,
    1244px 549px #fff,
    1952px 693px #fff,
    5px 644px #fff,
    1651px 536px #fff,
    1289px 1685px #fff;
}

#services-overview #stars,
#services-overview #stars2,
#services-overview #stars3 {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}

#services-overview #stars {
  width: 1px;
  height: 1px;
  box-shadow: var(--services-stars-sm);
  animation: servicesAnimStar 50s linear infinite;
}

#services-overview #stars::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow: var(--services-stars-sm);
}

#services-overview #stars2 {
  width: 2px;
  height: 2px;
  box-shadow: var(--services-stars-md);
  animation: servicesAnimStar 100s linear infinite;
}

#services-overview #stars2::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow: var(--services-stars-md);
}

#services-overview #stars3 {
  width: 3px;
  height: 3px;
  box-shadow: var(--services-stars-lg);
  animation: servicesAnimStar 150s linear infinite;
}

#services-overview #stars3::after {
  content: '';
  position: absolute;
  top: 2000px;
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow: var(--services-stars-lg);
}

@keyframes servicesAnimStar {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-2000px);
  }
}

@media (prefers-reduced-motion: reduce) {
  #services-overview #stars,
  #services-overview #stars2,
  #services-overview #stars3 {
    animation: none;
  }
}

.services-overview-head {
  display: grid;
  gap: 1.15rem;
}

.services-overview-section .section-tag {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.services-overview-section .services-overview-head h2 {
  color: #f8fafc !important;
}

.services-overview-lead {
  color: rgba(226, 236, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: none;
}

.services-orbit-shell {
  position: relative;
  isolation: isolate;
  --services-parallax-y: 0px;
  display: grid;
  grid-template-columns: minmax(268px, 356px) minmax(210px, 250px) minmax(268px, 356px);
  grid-template-rows: auto auto auto;
  grid-template-areas:
    'top-left top-center top-right'
    'left-middle center right-middle'
    'bottom-left bottom-center bottom-right';
  gap: 0.92rem 1.08rem;
  align-items: center;
  justify-content: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0.55rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 26px rgba(2, 9, 24, 0.14);
}

.services-orbit-parallax-bg {
  position: absolute;
  inset: -58px -14px;
  overflow: hidden;
  background:
    radial-gradient(540px 220px at 10% 16%, rgba(241, 217, 10, 0.18) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(420px 220px at 88% 82%, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(138deg, #0a1d41 0%, #16366f 52%, #2556ae 100%);
  transform: translate3d(0, 0, 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
  filter: saturate(1.05) brightness(1.02);
  box-shadow:
    inset 0 0 44px rgba(0, 0, 0, 0.13),
    inset 0 -36px 62px rgba(3, 8, 20, 0.18);
  z-index: 0;
}

.services-orbit-parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(8, 18, 38, 0.22) 0%, rgba(8, 18, 38, 0.1) 52%, rgba(8, 18, 38, 0.3) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 30px);
  z-index: 1;
}

.services-orbit-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(340px 180px at 20% 16%, rgba(31, 107, 255, 0.06) 0%, rgba(31, 107, 255, 0) 72%),
    radial-gradient(320px 160px at 80% 84%, rgba(241, 217, 10, 0.07) 0%, rgba(241, 217, 10, 0) 72%);
  pointer-events: none;
  z-index: 1;
}

.services-orbit-shell::after {
  content: none;
}

.services-orbit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.services-orbit-center {
  grid-area: center;
  justify-self: center;
  align-self: center;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.32rem;
  padding: 0.35rem;
  z-index: 2;
  box-shadow: 0 18px 34px rgba(2, 8, 22, 0.35);
}

.services-orbit-logo {
  width: 108px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.services-orbit-brand {
  margin: 0;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.service-orbit-card {
  position: static;
  width: 100%;
  z-index: 2;
  --service-card-accent: transparent;
}

.service-overview-card {
  position: relative;
  border-radius: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 16px 30px rgba(2, 9, 24, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.96rem 1rem 0.92rem;
  min-height: 216px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
  will-change: transform, filter;
}

.service-overview-card::before {
  content: none;
}

.service-overview-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.17) 58%, rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 0 22px 36px rgba(2, 8, 20, 0.34);
  border-color: rgba(255, 255, 255, 0.46);
}

@media (hover: hover) and (pointer: fine) {
  #services-overview .services-orbit-shell:has(.service-overview-card:hover) > .service-overview-card:not(:hover) {
    filter: blur(8px);
    transform: scale(0.92);
    opacity: 0.76;
  }

  #services-overview .services-orbit-shell:has(.service-overview-card:hover) > .service-overview-card:hover {
    transform: scale(1.08);
    z-index: 3;
  }
}

.service-overview-card::after {
  content: none;
}

.service-overview-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #f6f9ff;
  background: linear-gradient(135deg, rgba(241, 217, 10, 0.42) 0%, rgba(255, 255, 255, 0.16) 100%);
  box-shadow: 0 8px 16px rgba(2, 8, 20, 0.24);
}

.service-overview-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}

.service-overview-title {
  margin: 0.62rem 0 0.34rem;
  color: #f7faff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.32;
}

.service-overview-text {
  margin: 0;
  color: #d7e4f8;
  font-size: 0.8rem;
  line-height: 1.56;
}

.service-overview-link {
  margin-top: auto;
  padding-top: 0.64rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #f8fbff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-overview-link::after {
  content: '>';
  line-height: 1;
  transition: transform 0.2s ease;
}

.service-overview-card:hover .service-overview-link::after {
  transform: translateX(3px);
}

.service-orbit-card--top-left {
  grid-area: top-left;
  --service-card-accent: rgba(31, 107, 255, 0.22);
}

.service-orbit-card--top-center {
  grid-area: top-center;
  --service-card-accent: rgba(31, 107, 255, 0.2);
}

.service-orbit-card--top-right {
  grid-area: top-right;
  --service-card-accent: rgba(31, 107, 255, 0.22);
}

.service-orbit-card--left-middle {
  grid-area: left-middle;
  --service-card-accent: rgba(241, 217, 10, 0.2);
}

.service-orbit-card--right-middle {
  grid-area: right-middle;
  --service-card-accent: rgba(241, 217, 10, 0.2);
}

.service-orbit-card--bottom-left {
  grid-area: bottom-left;
  --service-card-accent: rgba(11, 28, 61, 0.14);
}

.service-orbit-card--bottom-center {
  grid-area: bottom-center;
  --service-card-accent: rgba(11, 28, 61, 0.14);
}

.service-orbit-card--bottom-right {
  grid-area: bottom-right;
  --service-card-accent: rgba(11, 28, 61, 0.14);
}

@media (min-width: 1280px) {
  .services-overview-lead {
    white-space: nowrap;
    font-size: 1.01rem;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
}

@media (min-width: 1024px) {
  .services-overview-head {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1199px) {
  .services-orbit-shell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'center center'
      'top-left top-center'
      'top-right left-middle'
      'right-middle bottom-left'
      'bottom-center bottom-right';
    gap: 0.78rem;
  }

  .services-orbit-center {
    justify-self: center;
    align-self: center;
    width: 170px;
    height: 170px;
    margin: 0.2rem auto 0.25rem;
  }

  .service-orbit-card {
    width: 100%;
  }

  .service-overview-card {
    min-height: 186px;
  }
}

@media (max-width: 767px) {
  .hero-tech-bridge-section {
    margin-top: -2.2rem;
    margin-bottom: -1.5rem;
  }

  .hero-tech-full-width {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .hero-tech-marquee {
    padding: 0.3rem 0;
  }

  .hero-tech-marquee::before,
  .hero-tech-marquee::after {
    width: 28px;
  }

  .hero-tech-track,
  .hero-tech-set {
    gap: 0.5rem;
  }

  .hero-tech-circle {
    width: 2.62rem;
    height: 2.62rem;
  }

  .hero-tech-circle i {
    font-size: 1.24rem;
  }

  .services-orbit-shell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      'top-left top-center'
      'top-right left-middle'
      'center center'
      'right-middle bottom-left'
      'bottom-center bottom-right';
    gap: 0.55rem;
  }

  .service-orbit-card {
    min-width: 0;
  }

  .services-orbit-center {
    justify-self: center;
    align-self: center;
    gap: 0.24rem;
    width: 142px;
    height: 142px;
    margin: 0.08rem auto;
  }

  .services-orbit-logo {
    width: 86px;
  }

  .services-orbit-brand {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }

  .service-overview-card {
    min-height: 158px;
    padding: 0.76rem 0.78rem 0.74rem;
  }

  .service-overview-icon {
    width: 1.86rem;
    height: 1.86rem;
    border-radius: 0.62rem;
  }

  .service-overview-icon svg {
    width: 0.78rem;
    height: 0.78rem;
  }

  .service-overview-title {
    font-size: 0.92rem;
    margin: 0.5rem 0 0.3rem;
    line-height: 1.24;
  }

  .service-overview-text {
    font-size: 0.74rem;
    line-height: 1.46;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-overview-link {
    font-size: 0.67rem;
    padding-top: 0.56rem;
  }
}

.home-growth-stats {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.home-growth-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(31, 107, 255, 0.24);
  background: linear-gradient(135deg, #0b1c3d 0%, #16386f 52%, #0f2d61 100%);
  box-shadow: 0 24px 52px rgba(11, 28, 61, 0.24);
  padding: clamp(1.1rem, 2.4vw, 2rem);
}

.home-growth-shell::before,
.home-growth-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.home-growth-shell::before {
  width: 280px;
  height: 280px;
  left: -130px;
  top: -160px;
  background: rgba(241, 217, 10, 0.18);
}

.home-growth-shell::after {
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -150px;
  background: rgba(31, 107, 255, 0.3);
}

.home-growth-head {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.home-growth-kicker {
  display: inline-flex;
  margin: 0;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.71rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-growth-title {
  margin: 0.72rem 0 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
}

.home-growth-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.home-growth-card {
  border-radius: 1rem;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 249, 255, 0.92) 100%);
  padding: 0.95rem 1rem;
  box-shadow: 0 12px 22px rgba(5, 16, 38, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(5, 16, 38, 0.28);
  border-color: rgba(31, 107, 255, 0.35);
}

.home-growth-value {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #0b1c3d;
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
}

.home-growth-label {
  margin: 0.34rem 0 0;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 991px) {
  .home-growth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .services-orbit-shell {
    gap: 0.48rem;
    padding-left: 0.34rem;
    padding-right: 0.34rem;
  }

  .services-orbit-center {
    width: 130px;
    height: 130px;
  }

  .services-orbit-logo {
    width: 78px;
  }

  .services-orbit-brand {
    font-size: 0.5rem;
  }

  .service-overview-card {
    min-height: 148px;
    padding: 0.64rem 0.64rem 0.62rem;
  }

  .service-overview-title {
    font-size: 0.84rem;
  }

  .service-overview-text {
    font-size: 0.68rem;
    line-height: 1.42;
    -webkit-line-clamp: 3;
  }

  .service-overview-link {
    font-size: 0.62rem;
    padding-top: 0.48rem;
  }

  .home-growth-card {
    padding: 0.82rem 0.88rem;
  }

  .home-growth-label {
    font-size: 0.82rem;
  }
}

.hero-grid {
  position: relative;
  overflow: hidden;
}

.hero-grid::before,
.hero-grid::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  z-index: 0;
}

.hero-grid::before {
  width: 340px;
  height: 340px;
  right: -110px;
  top: -120px;
  background: rgba(0, 229, 168, 0.22);
}

.hero-grid::after {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -220px;
  background: rgba(31, 107, 255, 0.2);
}

.hero-grid > * {
  position: relative;
  z-index: 1;
}

/* Hero Rotator */
.hero-rotator {
  position: relative;
  min-height: 628px;
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--primary);
  border: 1px solid rgba(11, 28, 61, 0.2);
  box-shadow: 0 28px 54px rgba(11, 28, 61, 0.24);
}

.hero-rotator-full {
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(11, 28, 61, 0.96) 8%, rgba(11, 28, 61, 0.8) 52%, rgba(11, 28, 61, 0.45) 100%),
    var(--hero-bg) center/cover no-repeat;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(241, 217, 10, 0.25) 0, rgba(241, 217, 10, 0) 44%),
    radial-gradient(circle at 16% 80%, rgba(241, 217, 10, 0.18) 0, rgba(241, 217, 10, 0) 42%);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.enter-from-left,
.hero-slide.enter-from-right,
.hero-slide.enter-from-top,
.hero-slide.enter-from-bottom,
.hero-slide.exit-to-left,
.hero-slide.exit-to-right,
.hero-slide.exit-to-bottom,
.hero-slide.exit-to-top {
  opacity: 1;
  pointer-events: none;
}

.hero-slide.enter-from-left {
  animation: heroEnterFromLeft var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 3;
}

.hero-slide.enter-from-right {
  animation: heroEnterFromRight var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 3;
}

.hero-slide.enter-from-top {
  animation: heroEnterFromTop var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 3;
}

.hero-slide.enter-from-bottom {
  animation: heroEnterFromBottom var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 3;
}

.hero-slide.exit-to-left {
  animation: heroExitToLeft var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 2;
}

.hero-slide.exit-to-right {
  animation: heroExitToRight var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 2;
}

.hero-slide.exit-to-bottom {
  animation: heroExitToBottom var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 2;
}

.hero-slide.exit-to-top {
  animation: heroExitToTop var(--hero-motion-duration) var(--hero-motion-ease) both;
  z-index: 2;
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  min-height: 628px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
  padding: 2.8rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 28, 61, 0.3);
  background: var(--logo-yellow);
  color: var(--logo-navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.85rem;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

.hero-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(241, 217, 10, 0.5);
  background: rgba(11, 28, 61, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem;
}

.hero-panel h2 {
  color: #ffffff;
}

.hero-panel p {
  color: rgba(241, 245, 249, 0.95);
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.hero-point-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  margin-top: 0.34rem;
  background: var(--logo-yellow);
  box-shadow: 0 0 0 6px rgba(241, 217, 10, 0.22);
  flex: 0 0 auto;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 2.8rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dot {
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--logo-yellow);
}

.hero-primary-btn {
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  color: var(--btn-text);
  border-color: rgba(70, 61, 0, 0.72);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-primary-btn:hover {
  background: linear-gradient(135deg, var(--btn-grad-hover-start) 0%, var(--btn-grad-hover-end) 100%);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.48);
}

.hero-secondary-btn {
  border-color: rgba(241, 217, 10, 0.42);
  color: var(--btn-text);
  background: linear-gradient(135deg, rgba(212, 188, 0, 0.86) 0%, rgba(0, 0, 0, 0.9) 100%);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.hero-secondary-btn:hover {
  background: linear-gradient(135deg, rgba(241, 217, 10, 0.92) 0%, rgba(8, 8, 8, 0.92) 100%);
}

@keyframes heroEnterFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0.94;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroEnterFromRight {
  from {
    transform: translateX(100%);
    opacity: 0.94;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroEnterFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0.94;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroEnterFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0.94;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroExitToLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-100%);
    opacity: 0.94;
  }
}

@keyframes heroExitToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0.94;
  }
}

@keyframes heroExitToBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(100%);
    opacity: 0.94;
  }
}

@keyframes heroExitToTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-100%);
    opacity: 0.94;
  }
}

/* Desktop Services Mega Menu */
.mega-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
}

.mega-parent:hover .mega-panel,
.mega-parent:focus-within .mega-panel,
.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-surface {
  border-radius: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
  overflow: hidden;
  background:
    radial-gradient(580px 220px at 2% -15%, rgba(31, 107, 255, 0.16) 0%, rgba(31, 107, 255, 0) 70%),
    #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.2);
}

.mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1rem;
}

.mega-content {
  grid-column: 1 / span 2;
  padding: 1.7rem 1.85rem;
  padding-right: 0.9rem;
}

.mega-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.22);
  background: rgba(31, 107, 255, 0.08);
  color: #1f6bff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.8rem;
  padding: 0.36rem 0.75rem;
  text-transform: uppercase;
}

.mega-title {
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.mega-subtitle {
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0.5rem 0 0.9rem;
}

.mega-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.mega-category {
  align-items: center;
  border: 1px solid #dbe5f4;
  border-radius: 0.82rem;
  color: #0b1c3d;
  display: flex;
  gap: 0.62rem;
  padding: 0.55rem 0.64rem;
  text-decoration: none;
  transition: border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.mega-category:hover,
.mega-category:focus-visible {
  background: rgba(31, 107, 255, 0.06);
  border-color: rgba(31, 107, 255, 0.42);
  box-shadow: 0 9px 20px rgba(15, 23, 42, 0.08);
  transform: translateX(2px);
  outline: none;
}

.mega-category.is-active {
  background: rgba(31, 107, 255, 0.09);
  border-color: rgba(31, 107, 255, 0.52);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.mega-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(16, 42, 87, 0.12) 0%, rgba(16, 42, 87, 0.02) 100%);
  border: 1px solid rgba(12, 30, 64, 0.18);
  border-radius: 0.58rem;
  color: #0b1c3d;
  display: inline-flex;
  flex-shrink: 0;
  height: 1.72rem;
  justify-content: center;
  width: 1.72rem;
}

.mega-icon svg {
  height: 0.8rem;
  width: 0.8rem;
}

.mega-icon i {
  font-size: 0.82rem;
  line-height: 1;
}

.mega-copy {
  display: grid;
  gap: 0.12rem;
}

.mega-name {
  color: #0b1c3d;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
}

.mega-desc {
  color: #64748b;
  font-size: 0.71rem;
  line-height: 1.28;
}

.mega-preview {
  grid-column: 3;
  background:
    radial-gradient(370px 200px at 94% 10%, rgba(31, 107, 255, 0.28) 0%, rgba(31, 107, 255, 0) 70%),
    linear-gradient(150deg, #0f2a58 0%, #07142f 58%, #000000 100%);
  color: #e7efff;
  display: grid;
  align-content: start;
  gap: 0.62rem;
  padding: 1.35rem;
  height: 100%;
}

.mega-preview-media {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  height: 168px;
  overflow: hidden;
}

.mega-preview-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s ease;
  width: 100%;
}

.mega-preview-kicker {
  color: rgba(230, 238, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0.2rem 0 0;
  text-transform: uppercase;
}

.mega-preview-title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.mega-preview-caption {
  color: rgba(230, 238, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.58;
  margin: 0;
}

.process-step {
  position: relative;
}

/* Process Section */
.process-redesign-section {
  position: relative;
  background:
    radial-gradient(520px 220px at 8% -6%, rgba(241, 217, 10, 0.18) 0%, rgba(241, 217, 10, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.process-redesign-head {
  display: grid;
  gap: 1.2rem;
}

.process-redesign-lead {
  color: #475569;
  font-size: 1rem;
  line-height: 1.68;
  max-width: 56rem;
}

.process-redesign-summary {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(11, 28, 61, 0.1);
  padding: 1rem 1.1rem;
}

.process-summary-title {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.process-summary-list {
  margin-top: 0.65rem;
  display: grid;
  gap: 0.48rem;
}

.process-summary-list p {
  margin: 0;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.45;
}

.process-summary-list span {
  color: #0b1c3d;
  font-weight: 700;
}

.process-redesign-grid {
  position: relative;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-left: 1.35rem;
}

.process-redesign-grid::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(31, 107, 255, 0.5) 0%, rgba(241, 217, 10, 0.56) 100%);
}

.process-stage-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 28, 61, 0.08);
  padding: 1rem 1rem 0.95rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.process-stage-card::before {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1d90a 0%, #0b1c3d 100%);
}

.process-stage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 107, 255, 0.34);
  box-shadow: 0 18px 34px rgba(11, 28, 61, 0.14);
}

.process-stage-card::after {
  content: '';
  position: absolute;
  left: -1.05rem;
  top: 1.42rem;
  width: 0.95rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 107, 255, 0.68) 0%, rgba(241, 217, 10, 0.76) 100%);
}

.process-stage-card:nth-child(2n) {
  background: #ffffff;
}

.process-stage-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(241, 217, 10, 0.28) 0%, rgba(11, 28, 61, 0.1) 100%);
  color: #0b1c3d;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.process-stage-title {
  margin: 0.7rem 0 0.4rem;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.3;
}

.process-stage-text {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.58;
}

.process-stage-meta {
  margin: 0.8rem 0 0;
  color: #1e3a8a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Industries Section */
.industries-redesign-section {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(620px 240px at 2% -4%, rgba(241, 217, 10, 0.2) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(500px 240px at 96% 4%, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(145deg, #0b1c3d 0%, #0a1a38 58%, #000000 100%);
}

body[data-page='home'] {
  --va-sticky-top: clamp(5.8rem, 9vh, 7.4rem);
  --va-pin-space: clamp(22rem, 60vh, 40rem);
  --va-overlap-head: clamp(2rem, 4.5vh, 3rem);
  --va-overlap-pull: clamp(4rem, 8vh, 6rem);
  --va-overlap-delay: clamp(42rem, 78vh, 54rem);
}

body[data-page='home'] #home-virtual-assistance {
  position: relative;
  z-index: 2;
}

body[data-page='home'] #home-virtual-assistance .home-va-sticky-wrap {
  position: relative;
}

body[data-page='home'] #home-virtual-assistance .home-va-sticky-track {
  position: sticky;
  top: var(--va-sticky-top);
  z-index: 2;
}

body[data-page='home'] #home-virtual-assistance .home-va-sticky-card {
  position: relative;
  z-index: 2;
}

body[data-page='home'] #home-virtual-assistance .home-va-scroll-spacer {
  height: calc(var(--va-pin-space) + var(--va-overlap-delay));
}

body[data-page='home'] #industries {
  margin-top: calc(-1 * (var(--va-pin-space) - var(--va-overlap-head) + var(--va-overlap-pull)));
  position: relative;
  z-index: 8;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
  box-shadow: 0 -18px 38px rgba(11, 28, 61, 0.26), 0 26px 50px rgba(2, 8, 20, 0.24);
}

body[data-page='home'] #industries::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 24%);
}

body[data-page='home'] #industries > .mx-auto {
  position: relative;
  z-index: 1;
}

body[data-page='home'].tt-scroll-effects-ready #home-virtual-assistance .home-va-sticky-card {
  opacity: 1;
  transform: none !important;
  animation: none !important;
}

.industries-redesign-head {
  display: grid;
  gap: 1rem;
}

.industries-redesign-lead {
  color: rgba(226, 236, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.68;
  max-width: 46rem;
}

.industries-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.industries-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.3);
  background: rgba(241, 217, 10, 0.14);
  color: #fff6cc;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.72rem;
  text-transform: uppercase;
}

.industries-redesign-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.industry-focus-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(15, 32, 66, 0.72) 0%, rgba(3, 8, 18, 0.86) 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
  padding: 1rem 1rem 0.92rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.industry-focus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 217, 10, 0.45);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.34);
}

.industry-focus-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
}

.industry-focus-card p {
  margin: 0.52rem 0 0;
  color: rgba(225, 234, 250, 0.84);
  font-size: 0.86rem;
  line-height: 1.55;
}

.industry-focus-card span {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.24);
  background: rgba(241, 217, 10, 0.12);
  color: #fff2b7;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.64rem;
  text-transform: uppercase;
}

body[data-page='industries'] .industry-domain-section,
body[data-page='industries'] .industry-why-choose-section,
body[data-page='industries'] .industry-outcomes-section,
body[data-page='industries'] .industry-page-cta-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body[data-page='industries'] .industry-domain-head,
body[data-page='industries'] .industry-why-choose-head {
  display: grid;
  gap: 0.4rem;
}

body[data-page='industries'] .industry-domain-lead,
body[data-page='industries'] .industry-why-choose-lead,
body[data-page='industries'] .industry-outcomes-lead {
  margin: 0;
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.68;
  max-width: 48rem;
}

body[data-page='industries'] .industry-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

body[data-page='industries'] .industry-domain-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  background:
    radial-gradient(320px 140px at 104% -16%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(150deg, #ffffff 0%, #f9fcff 100%);
  box-shadow: 0 14px 28px rgba(11, 28, 61, 0.1);
  padding: 1rem;
}

body[data-page='industries'] .industry-domain-kicker {
  margin: 0;
  color: #1f6bff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body[data-page='industries'] .industry-domain-title {
  margin: 0.5rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.35;
}

body[data-page='industries'] .industry-domain-copy {
  margin: 0.56rem 0 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.6;
}

body[data-page='industries'] .industry-why-choose-shell,
body[data-page='industries'] .industry-outcomes-shell {
  border-radius: 1.24rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(11, 28, 61, 0.11);
  padding: 1.2rem;
}

body[data-page='industries'] .industry-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

body[data-page='industries'] .industry-why-choose-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(31, 107, 255, 0.2);
  border-left: 3px solid #1f6bff;
  background: linear-gradient(145deg, #f8fbff 0%, #ffffff 100%);
  padding: 0.9rem;
}

body[data-page='industries'] .industry-why-choose-item h3 {
  margin: 0;
  color: #0b1c3d;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.42;
}

body[data-page='industries'] .industry-why-choose-item p {
  margin: 0.34rem 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.5;
}

body[data-page='industries'] .industry-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

body[data-page='industries'] .industry-outcome-card {
  border-radius: 0.88rem;
  border: 1px solid rgba(31, 107, 255, 0.18);
  background:
    radial-gradient(220px 120px at 50% -20%, rgba(31, 107, 255, 0.1) 0%, rgba(31, 107, 255, 0) 70%),
    linear-gradient(155deg, #ffffff 0%, #f8fbff 100%);
  text-align: center;
  padding: 0.9rem 0.7rem;
}

body[data-page='industries'] .industry-outcome-value {
  margin: 0;
  color: #1f6bff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
}

body[data-page='industries'] .industry-outcome-label {
  margin: 0.2rem 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.45;
}

body[data-page='industries'] .industry-page-cta-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 1.1rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(380px 200px at 10% -20%, rgba(241, 217, 10, 0.22) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(440px 220px at 95% 120%, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 74%),
    linear-gradient(145deg, #0f2b5a 0%, #0b1c3d 62%, #07122b 100%);
  box-shadow: 0 28px 56px rgba(11, 28, 61, 0.34);
  padding: 1.3rem 1.2rem;
}

body[data-page='industries'] .industry-page-cta-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.24;
}

body[data-page='industries'] .industry-page-cta-copy {
  margin: 0;
  color: rgba(226, 236, 255, 0.9);
  font-size: 0.93rem;
  line-height: 1.66;
  max-width: 42rem;
}

body[data-page='industries'] .industry-page-cta-actions {
  display: grid;
  gap: 0.62rem;
  justify-items: stretch;
}

body[data-page='industries'] .industry-page-cta-actions .primary-btn,
body[data-page='industries'] .industry-page-cta-actions .secondary-btn {
  width: 100%;
  text-align: center;
}

/* Blog Section */
.blog-insights-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blog-section-head {
  max-width: 680px;
  margin-bottom: 1rem;
}

.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 107, 255, 0.18);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(11, 28, 61, 0.14);
}

.blog-feature-media {
  position: relative;
  min-height: 320px;
  background: #0b1c3d;
}

.blog-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}

.blog-feature-content {
  padding: clamp(1.1rem, 2.7vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
}

.blog-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.22);
  background: rgba(31, 107, 255, 0.08);
  color: #1f6bff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.3rem 0.62rem;
}

.blog-feature-title {
  margin: 0.76rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  line-height: 1.24;
}

.blog-feature-text {
  margin: 0.66rem 0 0;
  color: #475569;
  max-width: 56ch;
  font-size: 0.94rem;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.blog-post-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
}

.blog-post-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-post-card:hover .blog-post-media img {
  transform: scale(1.05);
}

.blog-post-content {
  padding: 0.92rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-post-title {
  margin: 0.68rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.06rem;
  line-height: 1.34;
}

.blog-post-text {
  margin: 0.52rem 0 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.62;
}

.blog-read-link {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  color: #1f6bff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.blog-read-link::after {
  content: '>';
  line-height: 1;
  transition: transform 0.2s ease;
}

.blog-read-link:hover::after {
  transform: translateX(3px);
}

/* Careers Section */
body[data-page='careers'] .careers-parallax-banner {
  background: #0b1c3d;
  box-shadow: 0 26px 72px rgba(8, 24, 54, 0.44);
}

body[data-page='careers'] .careers-parallax-banner::before,
body[data-page='careers'] .careers-parallax-banner::after {
  display: none;
}

body[data-page='careers'] .career-hero-image {
  object-fit: cover;
  object-position: center center;
}

body[data-page='careers'] .careers-parallax-heading,
body[data-page='careers'] .careers-parallax-copy {
  text-shadow: 0 8px 26px rgba(2, 6, 23, 0.62);
}

@media (max-width: 1023px) {
  body[data-page='careers'] .career-hero-image {
    object-position: center bottom;
  }
}

body[data-page='careers'] .career-culture-section {
  background: #f8fbff;
}

body[data-page='careers'] .career-culture-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

body[data-page='careers'] .career-culture-head-copy {
  margin: 0.72rem auto 0;
  max-width: 560px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}

body[data-page='careers'] .career-culture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body[data-page='careers'] .career-culture-card,
body[data-page='careers'] .career-benefits-card {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1rem;
  background: #ffffff;
  padding: 1.2rem;
  display: grid;
  align-content: start;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

body[data-page='careers'] .career-culture-intro,
body[data-page='careers'] .career-benefits-intro {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
}

body[data-page='careers'] .career-simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

body[data-page='careers'] .career-simple-list li {
  position: relative;
  margin: 0;
  padding-left: 1rem;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.55;
}

body[data-page='careers'] .career-simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #1f6bff;
}

body[data-page='careers'] .career-benefits-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.9rem;
}

body[data-page='careers'] .career-final-cta-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body[data-page='careers'] .career-final-cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background:
    radial-gradient(360px 210px at 10% -20%, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(460px 240px at 90% 120%, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 74%),
    linear-gradient(145deg, #0f2b5a 0%, #0b1c3d 62%, #07122b 100%);
  box-shadow: 0 28px 58px rgba(11, 28, 61, 0.34);
  text-align: center;
  padding: 1.6rem 1.2rem;
}

body[data-page='careers'] .career-final-cta-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(240px 100px at 50% 100%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

body[data-page='careers'] .career-final-cta-shell > * {
  position: relative;
  z-index: 1;
}

body[data-page='careers'] .career-final-cta-shell .primary-btn {
  min-width: 166px;
}

.career-openings-section {
  position: relative;
  background:
    radial-gradient(560px 240px at 104% -20%, rgba(31, 107, 255, 0.14) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.career-openings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.career-role-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  padding: 1.1rem;
  display: grid;
  gap: 0.68rem;
}

.career-role-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.career-role-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.34);
  background: rgba(241, 217, 10, 0.12);
  color: #9a7100;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.3rem 0.62rem;
}

.career-role-title {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.14rem;
  line-height: 1.3;
}

.career-role-text {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.62;
}

.career-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.career-role-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.2);
  background: rgba(31, 107, 255, 0.08);
  color: #1f6bff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.28rem 0.56rem;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .blog-feature-card {
    grid-template-columns: 1fr;
  }

  .blog-feature-media {
    min-height: 270px;
  }

  body[data-page='industries'] .industry-domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='industries'] .industry-why-choose-shell {
    padding: 1.05rem;
  }

  body[data-page='industries'] .industry-outcomes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='industries'] .industry-page-cta-shell {
    grid-template-columns: 1fr;
    padding: 1.15rem 1rem;
  }

  body[data-page='industries'] .industry-page-cta-actions {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page='careers'] .career-culture-head {
    text-align: left;
  }

  body[data-page='careers'] .career-culture-head-copy {
    margin-left: 0;
    margin-right: 0;
  }

  body[data-page='careers'] .career-culture-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='careers'] .career-final-cta-shell {
    padding: 1.4rem 1rem;
  }

  .career-openings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-feature-media {
    min-height: 220px;
  }

  .blog-feature-content {
    padding: 1rem;
  }

  body[data-page='industries'] .industry-domain-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='industries'] .industry-why-choose-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='industries'] .industry-outcomes-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='industries'] .industry-page-cta-actions {
    grid-template-columns: 1fr;
  }

  body[data-page='careers'] .career-benefits-list {
    grid-template-columns: 1fr;
  }

  body[data-page='careers'] .career-final-cta-shell {
    padding: 1.25rem 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-feature-title {
    font-size: 1.24rem;
  }
}

/* Free Consultation Section */
.consultation-section {
  position: relative;
  background:
    radial-gradient(560px 240px at 4% 0%, rgba(31, 107, 255, 0.16) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.consultation-shell {
  display: grid;
  gap: 0.95rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.09);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(11, 28, 61, 0.12);
  padding: 0.9rem;
}

.consultation-copy {
  border-radius: 1.15rem;
  border: 1px solid rgba(241, 217, 10, 0.22);
  background:
    radial-gradient(360px 200px at -4% -16%, rgba(241, 217, 10, 0.22) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(150deg, #0f2b5a 0%, #0b1c3d 56%, #050d20 100%);
  color: #ffffff;
  padding: 1.1rem;
}

.consultation-kicker {
  margin: 0;
  color: rgba(241, 217, 10, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consultation-title {
  margin: 0.62rem 0 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.24;
}

.consultation-text {
  margin: 0.72rem 0 0;
  color: rgba(219, 231, 248, 0.88);
  font-size: 0.9rem;
  line-height: 1.62;
}

.consultation-points {
  margin-top: 0.92rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.consultation-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.3);
  background: rgba(241, 217, 10, 0.1);
  color: #fff4cb;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.62rem;
}

.consultation-quick-contact {
  margin-top: 1rem;
  max-width: 23rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(7, 19, 45, 0.28) 100%);
  box-shadow: 0 10px 20px rgba(2, 8, 20, 0.22);
  padding: 0.72rem 0.8rem;
  display: grid;
  gap: 0.38rem;
}

.consultation-quick-title {
  margin: 0;
  color: #f7df43;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consultation-quick-contact a {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(236, 244, 255, 0.92);
  font-size: 0.8rem;
  line-height: 1.45;
  text-decoration: none;
}

.consultation-quick-contact a span {
  color: rgba(247, 223, 67, 0.96);
  font-weight: 700;
  min-width: 2.8rem;
}

.consultation-quick-contact a:hover {
  color: #ffffff;
}

.consultation-form {
  border-radius: 1.15rem;
  border: 1px solid rgba(31, 107, 255, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 1rem;
  display: grid;
  gap: 0.72rem;
}

.consultation-field-grid {
  display: grid;
  gap: 0.62rem;
}

.consultation-form label {
  display: grid;
  gap: 0.38rem;
  color: #0b1c3d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  border-radius: 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.83rem;
  line-height: 1.45;
  padding: 0.66rem 0.72rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #8ea0b8;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: rgba(31, 107, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.16);
}

.consultation-form textarea {
  resize: vertical;
  min-height: 94px;
}

.consultation-actions {
  display: grid;
  gap: 0.5rem;
}

.consultation-actions .primary-btn {
  width: 100%;
}

.consultation-actions p {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Project Inquiry + Direct Contact Theme */
.contact-inquiry-section {
  position: relative;
  background:
    radial-gradient(620px 260px at 2% 0%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.contact-inquiry-panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 30px rgba(11, 28, 61, 0.12);
}

.contact-inquiry-panel .section-tag {
  border-color: rgba(31, 107, 255, 0.25);
  background: rgba(31, 107, 255, 0.09);
  color: #1f6bff;
}

.contact-inquiry-form-surface {
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 24px rgba(7, 18, 40, 0.22);
  padding: 1rem;
}

.contact-inquiry-form-surface label {
  color: #0b1c3d;
  font-weight: 600;
}

.contact-inquiry-form-surface input,
.contact-inquiry-form-surface select,
.contact-inquiry-form-surface textarea {
  border-color: rgba(148, 163, 184, 0.5);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-inquiry-form-surface input:focus,
.contact-inquiry-form-surface select:focus,
.contact-inquiry-form-surface textarea:focus {
  border-color: rgba(31, 107, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.16);
}

.contact-direct-shell {
  border-radius: 1.25rem;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background:
    radial-gradient(360px 220px at -4% -8%, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(145deg, #0f2b5a 0%, #0b1c3d 58%, #06112a 100%);
  box-shadow: 0 20px 38px rgba(11, 28, 61, 0.2);
  padding: 1rem;
  align-self: start;
}

.contact-direct-shell > .section-tag {
  border-color: rgba(241, 217, 10, 0.34);
  background: rgba(241, 217, 10, 0.14);
  color: #fff4cc;
}

.contact-direct-card {
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: 0 12px 24px rgba(7, 18, 40, 0.22);
}

.contact-direct-card > div:first-child {
  border-bottom-color: rgba(148, 163, 184, 0.28);
  background: linear-gradient(135deg, #fff8d8 0%, #eef4ff 100%) !important;
}

.contact-direct-shell .contact-direct-item {
  border-color: rgba(148, 163, 184, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.contact-direct-shell .contact-direct-icon {
  border: 1px solid rgba(241, 217, 10, 0.34) !important;
  background:
    linear-gradient(145deg, rgba(241, 217, 10, 0.22) 0%, rgba(241, 217, 10, 0.08) 100%),
    linear-gradient(145deg, #ffffff 0%, #f6f8fc 100%) !important;
  color: #0b1c3d !important;
}

.contact-direct-shell .contact-direct-item a:hover {
  color: #1f6bff;
}

.contact-direct-map {
  border-color: rgba(241, 217, 10, 0.32);
  box-shadow: 0 12px 24px rgba(7, 18, 40, 0.22);
}

.contact-direct-map iframe {
  display: block;
}

/* Why Contact Us Section */
.contact-why-section {
  position: relative;
  background:
    radial-gradient(620px 240px at 4% 0%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.contact-why-shell {
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(11, 28, 61, 0.12);
  display: grid;
  gap: 0.95rem;
  padding: 0.95rem;
}

.contact-why-intro {
  border-radius: 1.2rem;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background:
    radial-gradient(360px 220px at -4% -8%, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(145deg, #0f2b5a 0%, #0b1c3d 58%, #06112a 100%);
  padding: 1.2rem;
}

.contact-why-intro .section-tag {
  border-color: rgba(241, 217, 10, 0.34);
  background: rgba(241, 217, 10, 0.14);
  color: #fff4c8;
}

.contact-why-intro-text {
  margin: 0.75rem 0 0;
  color: rgba(219, 231, 248, 0.9);
  font-size: 0.92rem;
  line-height: 1.62;
}

.contact-why-pills {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.contact-why-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.34);
  background: rgba(241, 217, 10, 0.14);
  color: #fff4cc;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.66rem;
  text-transform: uppercase;
}

.contact-why-grid {
  display: grid;
  gap: 0.75rem;
}

.contact-why-card {
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.72rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 0.95rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 255, 0.34);
  box-shadow: 0 16px 30px rgba(11, 28, 61, 0.14);
}

.contact-why-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(241, 217, 10, 0.36);
  background:
    linear-gradient(145deg, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0.08) 100%),
    linear-gradient(145deg, #ffffff 0%, #f6f8fc 100%);
  color: #0b1c3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-why-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

/* Call To Action Section */
.cta-redesign-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.cta-redesign-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background:
    radial-gradient(440px 220px at -6% -16%, rgba(241, 217, 10, 0.28) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(520px 260px at 102% 16%, rgba(31, 107, 255, 0.26) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(135deg, #0f2a58 0%, #0b1c3d 52%, #000000 100%);
  box-shadow: 0 24px 40px rgba(11, 28, 61, 0.26);
  padding: 1.65rem;
  display: grid;
  gap: 1.2rem;
}

.cta-redesign-kicker {
  margin: 0;
  color: rgba(241, 217, 10, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-redesign-text {
  color: rgba(221, 234, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.68;
}

.cta-redesign-points {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cta-redesign-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.3);
  background: rgba(241, 217, 10, 0.12);
  color: #fff3c4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.34rem 0.68rem;
  text-transform: uppercase;
}

.cta-redesign-actions {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.cta-redesign-note {
  margin: 0.25rem 0 0;
  color: rgba(211, 223, 246, 0.78);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .consultation-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inquiry-form-surface {
    padding: 1.1rem;
  }

  .contact-direct-shell {
    padding: 1.1rem;
  }

  .contact-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-redesign-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .industries-redesign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .consultation-shell {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: stretch;
    padding: 1rem;
  }

  .consultation-copy {
    padding: 1.35rem 1.3rem;
  }

  .consultation-quick-contact {
    margin-top: 1.1rem;
  }

  .consultation-form {
    padding: 1.1rem;
  }

  .contact-direct-shell {
    padding: 1.15rem;
  }

  .contact-why-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    padding: 1rem;
  }

  .contact-why-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.4rem;
  }

  .contact-why-card {
    padding: 1.08rem;
  }

  .process-redesign-head {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    align-items: end;
  }

  .process-redesign-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 4.8rem;
    row-gap: 1.15rem;
    padding-left: 0;
  }

  .process-redesign-grid::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
  }

  .process-stage-card {
    width: 100%;
    max-width: 460px;
  }

  .process-stage-card:nth-child(odd) {
    justify-self: end;
  }

  .process-stage-card:nth-child(even) {
    justify-self: start;
  }

  .process-stage-card:nth-child(odd)::after {
    left: auto;
    right: -2.4rem;
    width: 2.4rem;
  }

  .process-stage-card:nth-child(even)::after {
    left: -2.4rem;
    width: 2.4rem;
  }

  .industries-redesign-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
  }

  .industries-redesign-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-redesign-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    align-items: center;
    padding: 2rem 2.15rem;
  }
}

.process-step::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -1.2rem;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(0, 229, 168, 0.18);
}

.process-line {
  border-left: 1px dashed rgba(15, 23, 42, 0.25);
}

/* Portfolio Page */
.portfolio-hero-section {
  position: relative;
  background:
    radial-gradient(620px 260px at 2% 0%, rgba(31, 107, 255, 0.16) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.portfolio-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  border: 1px solid rgba(241, 217, 10, 0.22);
  background:
    radial-gradient(460px 220px at 90% 12%, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 72%),
    radial-gradient(360px 220px at 8% 88%, rgba(241, 217, 10, 0.18) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(145deg, #07142f 0%, #0b1c3d 48%, #02060d 100%);
  box-shadow: 0 28px 56px rgba(11, 28, 61, 0.26);
  display: grid;
  gap: 1.3rem;
  padding: 1.4rem;
}

.portfolio-hero-shell::before,
.portfolio-hero-shell::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.portfolio-hero-shell::before {
  inset: 1rem auto auto 1rem;
  width: 120px;
  height: 120px;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.portfolio-hero-shell::after {
  inset: auto -60px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 217, 10, 0.2) 0%, rgba(241, 217, 10, 0) 70%);
}

.portfolio-hero-copy,
.portfolio-hero-panel,
.portfolio-cta-copy,
.portfolio-cta-side {
  position: relative;
  z-index: 1;
}

.portfolio-hero-title {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.9vw, 4.5rem);
  line-height: 1.02;
  margin: 0;
  max-width: 12ch;
}

.portfolio-hero-lead {
  color: rgba(225, 234, 250, 0.88);
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 1.1rem 0 0;
  max-width: 42rem;
}

.portfolio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.portfolio-hero-stats {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 1.55rem;
}

.portfolio-hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1rem 0.95rem;
}

.portfolio-hero-stat-value {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.portfolio-hero-stat-label {
  color: rgba(225, 234, 250, 0.82);
  font-size: 0.8rem;
  line-height: 1.45;
  margin: 0.48rem 0 0;
}

.portfolio-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(11, 28, 61, 0.18) 100%);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.portfolio-panel-kicker {
  color: rgba(241, 217, 10, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.portfolio-panel-title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.32;
  margin: 0;
}

.portfolio-signal-grid {
  display: grid;
  gap: 0.75rem;
}

.portfolio-signal-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.95rem;
}

.portfolio-signal-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.portfolio-signal-copy {
  color: rgba(225, 234, 250, 0.82);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0.38rem 0 0;
}

.portfolio-stack-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.portfolio-stack-strip span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background: rgba(241, 217, 10, 0.12);
  color: #fff3c4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.36rem 0.68rem;
  text-transform: uppercase;
}

.portfolio-showcase-section {
  position: relative;
  background:
    radial-gradient(540px 220px at 98% 0%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.portfolio-section-head {
  display: grid;
  gap: 1.15rem;
}

.portfolio-section-lead {
  color: #475569;
  font-size: 1rem;
  line-height: 1.72;
  max-width: 54rem;
}

.portfolio-section-note {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1.05rem;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(11, 28, 61, 0.08);
  padding: 1rem 1.05rem;
}

.portfolio-section-note-title {
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  margin: 0;
}

.portfolio-section-note-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.portfolio-section-note-list p {
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0;
}

.portfolio-section-note-list span {
  color: #0b1c3d;
  font-weight: 700;
}

.portfolio-showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.portfolio-project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1.3rem;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(11, 28, 61, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.portfolio-project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.18) 0%, rgba(11, 28, 61, 0.08) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.portfolio-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(11, 28, 61, 0.14);
  border-color: rgba(31, 107, 255, 0.34);
}

.portfolio-project-card:hover::before {
  opacity: 1;
}

.portfolio-project-card:hover .portfolio-project-media img {
  transform: scale(1.05);
}

.portfolio-project-media {
  height: 220px;
  overflow: hidden;
}

.portfolio-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.portfolio-project-body {
  display: grid;
  gap: 0.95rem;
  padding: 1.25rem;
}

.portfolio-project-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.portfolio-project-badge,
.portfolio-project-duration {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.34rem 0.68rem;
  text-transform: uppercase;
}

.portfolio-project-badge {
  border: 1px solid rgba(31, 107, 255, 0.22);
  background: rgba(31, 107, 255, 0.1);
  color: #1f6bff;
}

.portfolio-project-duration {
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: #f8fafc;
  color: #475569;
}

.portfolio-project-title {
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.portfolio-project-text {
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.66;
  margin: 0;
}

.portfolio-project-results {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.portfolio-result-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.95rem;
  background: #f8fbff;
  padding: 0.85rem 0.9rem;
}

.portfolio-result-value {
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.portfolio-result-label {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0.35rem 0 0;
}

.portfolio-stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.portfolio-stack-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef4ff;
  color: #0b1c3d;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.34rem 0.68rem;
}

.portfolio-project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.portfolio-project-footer-note {
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.45;
  margin: 0;
}

.portfolio-project-link {
  color: #17396f;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
}

.portfolio-project-link::after {
  content: '>';
  line-height: 1;
  transition: transform 0.2s ease;
}

.portfolio-project-link:hover::after {
  transform: translateX(3px);
}

.portfolio-capabilities-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.portfolio-capability-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.portfolio-capability-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 1.1rem;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(11, 28, 61, 0.08);
  padding: 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.portfolio-capability-card::before {
  content: '';
  position: absolute;
  inset: auto 1.2rem 0 1.2rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1d90a 0%, #0b1c3d 100%);
}

.portfolio-capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 107, 255, 0.34);
  box-shadow: 0 22px 36px rgba(11, 28, 61, 0.12);
}

.portfolio-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  background: linear-gradient(140deg, #17396f 0%, #02060d 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.portfolio-capability-title {
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.34;
  margin: 0.95rem 0 0.45rem;
}

.portfolio-capability-text {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.62;
  margin: 0;
}

.portfolio-capability-meta {
  color: #17396f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0.95rem 0 0;
  text-transform: uppercase;
}

.portfolio-cta-section {
  position: relative;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.portfolio-cta-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 217, 10, 0.24);
  border-radius: 1.45rem;
  background:
    radial-gradient(460px 220px at -6% 8%, rgba(241, 217, 10, 0.22) 0%, rgba(241, 217, 10, 0) 72%),
    radial-gradient(560px 260px at 102% 0%, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(145deg, #07142f 0%, #0b1c3d 52%, #000000 100%);
  box-shadow: 0 24px 40px rgba(11, 28, 61, 0.24);
  display: grid;
  gap: 1.2rem;
  padding: 1.55rem;
}

.portfolio-cta-shell::before {
  content: '';
  position: absolute;
  inset: auto -80px -100px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 255, 0.24) 0%, rgba(31, 107, 255, 0) 72%);
  pointer-events: none;
}

.portfolio-cta-kicker {
  color: rgba(241, 217, 10, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.portfolio-cta-text {
  color: rgba(221, 234, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0.9rem 0 0;
}

.portfolio-cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.portfolio-cta-points span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.28);
  background: rgba(241, 217, 10, 0.12);
  color: #fff3c4;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.36rem 0.7rem;
  text-transform: uppercase;
}

.portfolio-cta-side {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.portfolio-cta-metric {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.portfolio-cta-metric strong {
  display: block;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.portfolio-cta-metric span {
  display: block;
  color: rgba(221, 234, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}

.portfolio-cta-actions {
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .portfolio-hero-stats,
  .portfolio-project-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-signal-grid,
  .portfolio-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .portfolio-hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: stretch;
    padding: 2.2rem;
  }

  .portfolio-section-head {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
  }

  .portfolio-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-project-card.is-featured {
    grid-column: span 2;
  }

  .portfolio-project-card.is-featured .portfolio-project-media {
    height: 260px;
  }

  .portfolio-capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .portfolio-cta-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    padding: 1.9rem 2rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #d8e6ff;
  background:
    radial-gradient(640px 280px at 4% -8%, rgba(241, 217, 10, 0.22) 0%, rgba(241, 217, 10, 0) 70%),
    radial-gradient(520px 260px at 96% 2%, rgba(31, 107, 255, 0.2) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(145deg, #0b1c3d 0%, #081329 52%, #000000 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.site-footer > .mx-auto {
  position: relative;
  z-index: 1;
  padding-top: 2.35rem !important;
  padding-bottom: 2rem !important;
}

.site-footer-glow {
  position: absolute;
  inset: auto auto -120px -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 217, 10, 0.26) 0%, rgba(241, 217, 10, 0) 72%);
  pointer-events: none;
}

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border: 1px solid rgba(241, 217, 10, 0.22);
  background: linear-gradient(120deg, rgba(8, 19, 41, 0.88) 0%, rgba(0, 0, 0, 0.56) 100%);
  border-radius: 1.2rem;
  padding: 1rem 1.15rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
}

.footer-kicker {
  margin: 0 0 0.45rem;
  color: rgba(241, 217, 10, 0.94);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-hero-title {
  margin: 0;
  color: #f8fbff;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  line-height: 1.35;
  max-width: 760px;
  white-space: normal;
}

.footer-hero-btn {
  white-space: nowrap;
}

.footer-main-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
}

.footer-brand {
  padding-right: 1.2rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 108px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.24));
}

.footer-logo-assist {
  margin: 0.12rem 0 0;
  width: 108px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #f9e5ab 50%, #e1a114 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-brand-text {
  margin: 0.9rem 0 0;
  color: rgba(221, 234, 255, 0.84);
  font-size: 0.93rem;
  line-height: 1.72;
}

.footer-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.24);
  background: rgba(241, 217, 10, 0.11);
  color: #f9f2c9;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.36rem 0.7rem;
  text-transform: uppercase;
}

.footer-heading {
  margin: 0 0 0.8rem;
  color: #f7fbff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.48rem;
}

.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.footer-services-grid .footer-link {
  line-height: 1.4;
}

.footer-link {
  color: rgba(221, 234, 255, 0.86);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact-list {
  display: grid;
  gap: 0.4rem;
}

.footer-contact-list p {
  margin: 0;
  color: rgba(221, 234, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact-list span {
  color: rgba(241, 217, 10, 0.98);
  font-weight: 700;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  word-break: break-word;
}

.footer-contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(241, 217, 10, 0.9);
  text-underline-offset: 2px;
}

.footer-contact-btn {
  margin-top: 0.85rem;
}

.footer-social {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
}

.footer-social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 10, 0.3);
  background: rgba(241, 217, 10, 0.09);
  color: #f9f2c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  background: rgba(241, 217, 10, 0.2);
  border-color: rgba(241, 217, 10, 0.65);
  color: #ffffff;
}

.footer-social-link svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: currentColor;
}

.footer-social-link i {
  font-size: 0.92rem;
  line-height: 1;
}

.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
  padding-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(203, 217, 240, 0.76);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-bottom-links a {
  color: rgba(203, 217, 240, 0.78);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  right: 0.52rem;
  top: clamp(6rem, 15vh, 8.4rem);
  bottom: 1rem;
  width: 2.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.48rem;
  z-index: 70;
  pointer-events: auto;
}

.scroll-progress-track {
  position: relative;
  width: 0.48rem;
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(241, 245, 249, 0.84);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 8px 16px rgba(11, 28, 61, 0.16);
}

.scroll-progress-track,
.scroll-progress-value {
  pointer-events: none;
}

.scroll-progress-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-origin: top;
  transform: scaleY(0);
  background: linear-gradient(180deg, #f9e5ab 0%, #f1d90a 45%, #1f6bff 100%);
  transition: transform 0.14s ease-out;
}

.scroll-progress-value {
  min-width: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 28, 61, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: #0b1c3d;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  padding: 0.24rem 0.34rem;
  box-shadow: 0 7px 16px rgba(11, 28, 61, 0.18);
}

.scroll-progress-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 28, 61, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #0b1c3d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(11, 28, 61, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  pointer-events: auto;
  cursor: pointer;
}

.scroll-progress-arrow:hover {
  transform: translateY(-2px);
  background: rgba(11, 28, 61, 0.94);
  color: #ffffff;
}

.scroll-progress-arrow svg {
  width: 0.86rem;
  height: 0.86rem;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.scroll-progress-arrow:not(.is-up) svg {
  animation: scrollArrowNudge 1.5s ease-in-out infinite;
}

.scroll-progress-arrow.is-up svg {
  animation: none;
  transform: rotate(180deg);
}

@keyframes scrollArrowNudge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

.scroll-progress.is-complete .scroll-progress-value {
  border-color: rgba(241, 217, 10, 0.6);
  background: rgba(241, 217, 10, 0.16);
}

@media (min-width: 1024px) {
  .footer-hero-title {
    white-space: nowrap;
  }
}

@media (max-width: 1023px) {
  .footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    padding-right: 0;
    grid-column: 1 / -1;
  }

  .footer-services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .footer-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-services-grid {
    grid-template-columns: 1fr;
  }

  .scroll-progress {
    right: 0.34rem;
    top: 5.5rem;
    bottom: 0.7rem;
    width: 1.8rem;
    gap: 0.4rem;
  }

  .scroll-progress-track {
    width: 0.4rem;
  }

  .scroll-progress-value {
    min-width: 1.7rem;
    font-size: 0.58rem;
    padding: 0.2rem 0.24rem;
  }

  .scroll-progress-arrow {
    width: 1.72rem;
    height: 1.72rem;
  }
}

/* Reveal Animation Helpers */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 0.7s ease forwards;
}

body.tt-scroll-effects-ready .reveal,
body.tt-scroll-effects-ready .tt-auto-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  animation: none !important;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

body.tt-scroll-effects-ready .reveal.tt-inview,
body.tt-scroll-effects-ready .tt-auto-reveal.tt-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.tt-scroll-effects-ready .reveal.delay-1,
body.tt-scroll-effects-ready .tt-auto-reveal.delay-1 {
  transition-delay: 0.08s;
}

body.tt-scroll-effects-ready .reveal.delay-2,
body.tt-scroll-effects-ready .tt-auto-reveal.delay-2 {
  transition-delay: 0.16s;
}

body.tt-scroll-effects-ready .reveal.delay-3,
body.tt-scroll-effects-ready .tt-auto-reveal.delay-3 {
  transition-delay: 0.24s;
}

body.tt-scroll-effects-ready .reveal[data-tt-anim='fade-in'],
body.tt-scroll-effects-ready .tt-auto-reveal[data-tt-anim='fade-in'] {
  transform: translate3d(0, 0, 0) scale(0.98);
}

body.tt-scroll-effects-ready .reveal[data-tt-anim='slide-up'],
body.tt-scroll-effects-ready .tt-auto-reveal[data-tt-anim='slide-up'] {
  transform: translate3d(0, 34px, 0);
}

body.tt-scroll-effects-ready .reveal[data-tt-anim='slide-left'],
body.tt-scroll-effects-ready .tt-auto-reveal[data-tt-anim='slide-left'] {
  transform: translate3d(36px, 0, 0);
}

body.tt-scroll-effects-ready .reveal[data-tt-anim='slide-right'],
body.tt-scroll-effects-ready .tt-auto-reveal[data-tt-anim='slide-right'] {
  transform: translate3d(-36px, 0, 0);
}

body.tt-scroll-effects-ready .reveal.tt-inview[data-tt-anim='fade-in'],
body.tt-scroll-effects-ready .tt-auto-reveal.tt-inview[data-tt-anim='fade-in'] {
  transform: translate3d(0, 0, 0) scale(1);
}

body.tt-scroll-effects-ready .reveal.tt-inview[data-tt-anim='slide-up'],
body.tt-scroll-effects-ready .tt-auto-reveal.tt-inview[data-tt-anim='slide-up'],
body.tt-scroll-effects-ready .reveal.tt-inview[data-tt-anim='slide-left'],
body.tt-scroll-effects-ready .tt-auto-reveal.tt-inview[data-tt-anim='slide-left'],
body.tt-scroll-effects-ready .reveal.tt-inview[data-tt-anim='slide-right'],
body.tt-scroll-effects-ready .tt-auto-reveal.tt-inview[data-tt-anim='slide-right'] {
  transform: translate3d(0, 0, 0);
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.16s;
}

.reveal.delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tt-scroll-top-btn {
  --scroll-progress: 0;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: #f8fbff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.95);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, background 0.24s ease;
}

.tt-scroll-top-btn::before,
.tt-scroll-top-btn::after {
  content: '';
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.tt-scroll-top-btn::before {
  inset: 0;
  background: conic-gradient(
    from -90deg,
    rgba(241, 217, 10, 0.98) calc(var(--scroll-progress) * 1%),
    rgba(241, 217, 10, 0.26) 0
  );
  box-shadow: 0 14px 32px rgba(11, 28, 61, 0.34);
}

.tt-scroll-top-btn::after {
  inset: 2px;
  background: linear-gradient(160deg, rgba(11, 28, 61, 0.94) 0%, rgba(7, 18, 38, 0.94) 100%);
}

.tt-scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.tt-scroll-top-btn:hover::after {
  background: linear-gradient(160deg, rgba(31, 107, 255, 0.96) 0%, rgba(11, 28, 61, 0.96) 100%);
}

.tt-scroll-top-btn svg {
  position: relative;
  z-index: 1;
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.tt-whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 92;
  height: 3.2rem;
  padding: 0 0.92rem 0 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.38);
  background: linear-gradient(160deg, #1faa59 0%, #128c49 100%);
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 16px 34px rgba(16, 100, 54, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tt-whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16, 100, 54, 0.36);
}

.tt-whatsapp-float svg {
  width: 1.26rem;
  height: 1.26rem;
  fill: currentColor;
}

.tt-whatsapp-float span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.tt-modal-open {
  overflow: hidden;
}

.career-apply-modal[hidden] {
  display: none;
}

.career-apply-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 8, 20, 0.58);
  backdrop-filter: blur(4px);
}

.career-apply-dialog {
  position: relative;
  width: min(94vw, 620px);
  max-height: min(88vh, 680px);
  overflow-y: auto;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(320px 120px at 8% 0%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 74%),
    linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 44px rgba(2, 8, 20, 0.32);
  padding: 0.88rem 0.88rem 0.98rem;
  animation: ttPopupFadeIn 0.2s ease;
}

.career-apply-close {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  color: #0f172a;
  font-size: 1.08rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.career-apply-close:hover {
  background: #f1f5f9;
}

.career-apply-subtext {
  margin: 0;
  color: #475569;
  font-size: 0.86rem;
  line-height: 1.5;
}

.career-apply-role {
  margin: 0;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 600;
}

.career-apply-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.career-apply-label {
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
}

.career-apply-input {
  width: 100%;
  margin-top: 0.26rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 0.68rem;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.86rem;
  padding: 0.6rem 0.72rem;
}

.career-apply-input:focus {
  outline: none;
  border-color: #1f6bff;
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.14);
}

.career-apply-textarea {
  min-height: 88px;
  resize: vertical;
}

.career-apply-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.career-apply-actions .primary-btn {
  min-width: 152px;
  padding-top: 0.58rem;
  padding-bottom: 0.58rem;
  font-size: 0.84rem;
}

.tt-form-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 8, 20, 0.55);
  backdrop-filter: blur(2px);
  animation: ttPopupFadeIn 0.18s ease;
}

.tt-form-popup-overlay.is-hiding {
  opacity: 0;
  transition: opacity 0.18s ease;
}

.tt-form-popup-card {
  width: min(92vw, 430px);
  border-radius: 1rem;
  border: 1px solid rgba(241, 217, 10, 0.32);
  background:
    radial-gradient(280px 120px at 8% 0%, rgba(241, 217, 10, 0.18) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(145deg, #0f2a58 0%, #0b1c3d 58%, #050d20 100%);
  box-shadow: 0 20px 38px rgba(2, 8, 20, 0.35);
  padding: 1.2rem 1.2rem 1rem;
  color: #e4edff;
}

.tt-form-popup-card h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
}

.tt-form-popup-card p {
  margin: 0.58rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(225, 236, 255, 0.9);
}

.tt-form-popup-btn {
  margin-top: 0.95rem;
  border: 1px solid rgba(241, 217, 10, 0.38);
  border-radius: 999px;
  background: linear-gradient(90deg, #d4bc00 0%, #161001 100%);
  color: #f8fafc;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.6rem 1.05rem;
  cursor: pointer;
}

.tt-form-popup-btn:hover {
  filter: brightness(1.06);
}

.tt-form-popup-btn:focus-visible {
  outline: 2px solid rgba(241, 217, 10, 0.85);
  outline-offset: 2px;
}

@keyframes ttPopupFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.tt-has-whatsapp-float .tt-scroll-top-btn {
  bottom: 5rem;
}

@media (max-width: 1023px) {
  .career-apply-dialog {
    width: min(95vw, 620px);
  }

  .tt-whatsapp-float span {
    display: none;
  }

  .tt-whatsapp-float {
    width: 3.1rem;
    height: 3.1rem;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .career-apply-dialog {
    padding: 0.82rem 0.78rem 0.9rem;
    border-radius: 0.9rem;
  }

  .career-apply-grid {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .career-apply-actions .primary-btn {
    min-width: 0;
    width: 100%;
  }

  .tt-has-whatsapp-float .tt-scroll-top-btn {
    bottom: 4.8rem;
  }
}

/* About Technology Stack Orbit + Grid Hybrid */
body[data-page='about'] .about-who-copy p:not(.section-tag),
body[data-page='about'] .about-story-copy p:not(.section-tag) {
  text-align: justify;
  text-justify: inter-word;
}

/* About Our Story Video Section */
.about-story-video-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.about-story-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(540px 220px at -10% 6%, rgba(241, 217, 10, 0.16) 0%, rgba(241, 217, 10, 0) 70%),
    linear-gradient(108deg, rgba(2, 8, 23, 0.9) 10%, rgba(11, 28, 61, 0.78) 52%, rgba(2, 8, 23, 0.88) 100%);
}

.about-story-shell {
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  box-shadow: 0 20px 36px rgba(2, 8, 23, 0.24);
  backdrop-filter: blur(4px);
  padding: 1.2rem;
}

.about-story-content-card p {
  color: rgba(226, 232, 240, 0.96);
}

.about-story-phase {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.22);
  padding: 0.92rem;
  backdrop-filter: blur(2px);
}

.about-story-phase-kicker {
  margin: 0;
  color: #f1d90a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-phase-text {
  margin: 0.32rem 0 0;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.83rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-story-shell {
    padding: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .about-story-shell {
    padding: 1.5rem;
  }
}

/* About What We Do Redesign */
.about-services-redesign {
  background:
    radial-gradient(600px 260px at 100% -14%, rgba(31, 107, 255, 0.11) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-services-shell {
  border-radius: 1.5rem;
  border: 1px solid rgba(11, 28, 61, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 38px rgba(11, 28, 61, 0.12);
  padding: 1.2rem;
}

.about-services-head {
  display: grid;
  gap: 1rem;
}

.about-services-chips {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-services-chips span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(31, 107, 255, 0.22);
  background: rgba(31, 107, 255, 0.08);
  color: #1f6bff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.34rem 0.64rem;
}

.about-services-spotlight {
  border-radius: 1.2rem;
  border: 1px solid rgba(241, 217, 10, 0.22);
  background:
    radial-gradient(320px 160px at 4% -18%, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0) 70%),
    linear-gradient(145deg, #0f2a58 0%, #0b1c3d 52%, #000000 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 28px rgba(11, 28, 61, 0.22);
  padding: 0.9rem;
}

.about-services-spotlight-media {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.about-services-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 28, 61, 0.82) 0%, rgba(11, 28, 61, 0.24) 100%);
}

.about-services-spotlight-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  right: 0.75rem;
  margin: 0;
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1.5;
  font-weight: 700;
}

.about-services-spotlight-text {
  margin: 0.82rem 0 0;
  color: rgba(223, 234, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.62;
}

.about-services-spotlight-btn {
  margin-top: 0.82rem;
  width: 100%;
}

.about-services-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.about-service-card {
  border-radius: 1rem;
  border: 1px solid rgba(31, 107, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 255, 0.9) 100%);
  box-shadow: 0 12px 22px rgba(11, 28, 61, 0.11);
  padding: 0.9rem 0.92rem 0.96rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 255, 0.35);
  box-shadow: 0 16px 28px rgba(11, 28, 61, 0.15);
}

.about-service-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.78rem;
  border: 1px solid rgba(31, 107, 255, 0.24);
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.14) 0%, rgba(241, 217, 10, 0.2) 100%);
  color: #0b1c3d;
}

.about-service-icon svg {
  width: 1.02rem;
  height: 1.02rem;
}

.about-service-title {
  margin: 0.66rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.about-service-text {
  margin: 0.32rem 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.58;
}

@media (min-width: 768px) {
  .about-services-shell {
    padding: 1.35rem;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-service-card--wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .about-services-shell {
    padding: 1.5rem;
  }

  .about-services-head {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: stretch;
    gap: 1.2rem;
  }

  .about-services-spotlight {
    padding: 1rem;
  }

  .about-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
  }

  .about-service-card--wide {
    grid-column: span 3;
  }
}

/* About Why Choose Us Redesign */
.about-why-redesign {
  background:
    radial-gradient(640px 260px at 6% -16%, rgba(31, 107, 255, 0.12) 0%, rgba(31, 107, 255, 0) 72%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-why-redesign-shell {
  border-radius: 1.45rem;
  border: 1px solid rgba(11, 28, 61, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 36px rgba(11, 28, 61, 0.12);
  padding: 1.2rem;
}

.about-why-redesign-head {
  display: grid;
  gap: 1rem;
}

.about-why-highlight {
  border-radius: 1.2rem;
  border: 1px solid rgba(241, 217, 10, 0.22);
  background:
    radial-gradient(320px 160px at 0% -18%, rgba(241, 217, 10, 0.24) 0%, rgba(241, 217, 10, 0) 72%),
    linear-gradient(145deg, #0f2a58 0%, #0b1c3d 52%, #000000 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 14px 28px rgba(11, 28, 61, 0.24);
  padding: 1rem 1rem 1.05rem;
}

.about-why-highlight-kicker {
  margin: 0;
  color: rgba(241, 217, 10, 0.96);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-why-highlight-list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.about-why-highlight-list li {
  color: rgba(223, 234, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.55;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.48rem;
}

.about-why-highlight-list li::before {
  content: '';
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #f1d90a;
  box-shadow: 0 0 0 4px rgba(241, 217, 10, 0.18);
  margin-top: 0.36rem;
}

.about-why-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.about-why-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(31, 107, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(244, 248, 255, 0.92) 100%);
  box-shadow: 0 12px 22px rgba(11, 28, 61, 0.11);
  padding: 0.95rem 0.95rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-why-card::before {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  top: 0.72rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 107, 255, 0.18) 0%, rgba(241, 217, 10, 0.42) 48%, rgba(31, 107, 255, 0.18) 100%);
}

.about-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 107, 255, 0.38);
  box-shadow: 0 16px 28px rgba(11, 28, 61, 0.16);
}

.about-why-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.78rem;
  border: 1px solid rgba(31, 107, 255, 0.26);
  background: linear-gradient(135deg, rgba(31, 107, 255, 0.14) 0%, rgba(241, 217, 10, 0.24) 100%);
  color: #0b1c3d;
}

.about-why-card-icon svg {
  width: 1.08rem;
  height: 1.08rem;
}

.about-why-card-title {
  margin: 0.72rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.03rem;
  line-height: 1.35;
}

.about-why-card-text {
  margin: 0.38rem 0 0;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.62;
}

@media (min-width: 768px) {
  .about-why-redesign-shell {
    padding: 1.35rem;
  }

  .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-why-redesign-shell {
    padding: 1.5rem;
  }

  .about-why-redesign-head {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: stretch;
    gap: 1.2rem;
  }

  .about-why-highlight {
    padding: 1.15rem 1.15rem 1.2rem;
  }

  .about-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.about-stack-visual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 1.55rem;
  border: 1px solid rgba(51, 92, 170, 0.44);
  box-shadow: 0 24px 48px rgba(8, 15, 35, 0.34);
  background: #0f172a;
}

.about-stack-visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.about-stack-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(167, 139, 250, 0.23), transparent 36%),
    radial-gradient(circle at 16% 86%, rgba(59, 130, 246, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(17, 24, 39, 0.87) 56%, rgba(30, 41, 59, 0.9) 100%);
}

/* Home page only: remove left Technology Stack visual card background */
body[data-page='home'] .about-tech-stack-hybrid .about-stack-visual {
  overflow: visible;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body[data-page='home'] .about-tech-stack-hybrid .about-stack-visual-bg {
  opacity: 0;
}

body[data-page='home'] .about-tech-stack-hybrid .about-stack-visual-overlay {
  display: none;
}

/* Home page only: replace orbit icons with original brand logos */
body[data-page='home'] #home-technology-stack .about-stack-orbit-icon {
  position: relative;
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-icon svg {
  display: none;
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-icon::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 2px 2px rgba(2, 8, 23, 0.25));
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(1) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/react/61DAFB');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(2) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/nodedotjs/5FA04E');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(3) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/mongodb/47A248');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(4) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/mysql/4479A1');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(5) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/php/777BB4');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(6) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/html5/E34F26');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(7) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/tailwindcss/06B6D4');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(8) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/javascript/F7DF1E');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(9) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/bootstrap/7952B3');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(10) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/vercel/000000');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(11) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/typescript/3178C6');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--outer .about-stack-orbit-node:nth-child(12) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/nextdotjs/000000');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(1) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/angular/DD0031');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(2) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/vuedotjs/4FC08D');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(3) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/css/1572B6');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(4) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/postgresql/4169E1');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(5) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/netlify/00C7B7');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(6) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/hostinger/673DE6');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(7) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/express/000000');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(8) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/godaddy/97C93D');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(9) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/wordpress/21759B');
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-ring--inner .about-stack-orbit-node:nth-child(10) .about-stack-orbit-icon::before {
  background-image: url('https://cdn.simpleicons.org/googlesearchconsole/4285F4');
}

body[data-page='home'] #home-technology-stack .about-stack-more-btn {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.62rem 1.05rem;
  min-height: 2.4rem;
  font-size: 0.8rem;
}

body[data-page='home'] #home-technology-stack .about-stack-more-btn svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Home page only: glass blur only on the 4 right-side cards */
body[data-page='home'] #home-technology-stack .about-stack-grid-card {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    rgba(148, 163, 184, 0.44);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.42), 0 0 20px rgba(255, 255, 255, 0.2);
  color: #0f172a;
}

body[data-page='home'] #home-technology-stack .about-stack-grid-icon {
  border-color: rgba(70, 61, 0, 0.68);
  background: linear-gradient(135deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  color: var(--btn-text);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}

body[data-page='home'] #home-technology-stack .about-stack-grid-kicker {
  color: #7a5b00;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

body[data-page='home'] #home-technology-stack .about-stack-chip {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  color: #0f172a;
}

body[data-page='home'] #home-technology-stack .about-stack-grid-card:hover {
  border-color: rgba(255, 255, 255, 0.84);
  box-shadow: 0 15px 28px rgba(2, 8, 23, 0.48), 0 0 22px rgba(255, 255, 255, 0.36);
}

/* Home page only: keep orbit circles neutral white instead of bluish */
body[data-page='home'] #home-technology-stack .about-stack-orbit-ring {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.2);
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-node-core {
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-node:hover .about-stack-orbit-node-core,
body[data-page='home'] #home-technology-stack .about-stack-orbit-node:focus-visible .about-stack-orbit-node-core {
  border: 0;
  box-shadow: none;
}

body[data-page='home'] #home-technology-stack .about-stack-orbit-center {
  border-color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12)),
    rgba(148, 163, 184, 0.52);
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.46), 0 0 24px rgba(255, 255, 255, 0.34);
}

body[data-page='home'] #home-technology-stack .about-stack-center-title {
  color: #0b1c3d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.36);
}

body[data-page='home'] #home-technology-stack .about-stack-center-subtitle {
  color: #7a5b00;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

body[data-page='about'] #about-technology-stack .about-stack-orbit-node,
body[data-page='services'] #services-technology-stack .about-stack-orbit-node {
  color: #0f172a;
}

@media (min-width: 1024px) {
  body[data-page='home'] #home-technology-stack .mt-10.grid {
    align-items: start;
  }

  body[data-page='home'] #home-technology-stack .about-stack-visual {
    position: sticky;
    top: 124px;
  }

  body[data-page='home'] #home-technology-stack .about-stack-grid-panel {
    display: grid;
    gap: 0.95rem;
  }

  body[data-page='home'] #home-technology-stack .about-stack-options-panel {
    gap: 0.78rem;
  }
}

/* About page only: compact left stack visual and balance right 4 cards */
@media (min-width: 1024px) {
  body[data-page='about'] #about-technology-stack .mt-10.grid {
    align-items: stretch;
  }

  body[data-page='about'] #about-technology-stack .about-stack-visual {
    min-height: 520px;
  }

  body[data-page='about'] #about-technology-stack .about-stack-orbit-stage {
    width: min(100%, 455px);
    height: 398px;
  }

  body[data-page='about'] #about-technology-stack .about-stack-grid-panel {
    height: 520px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.8rem;
  }

  body[data-page='about'] #about-technology-stack .about-stack-grid {
    height: 100%;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-content: stretch;
  }

  body[data-page='about'] #about-technology-stack .about-stack-grid-card {
    height: 100%;
  }
}

.about-stack-visual-head {
  position: relative;
  z-index: 3;
  padding: 1.35rem 1.35rem 0.1rem;
}

.about-stack-orbit-stage {
  position: relative;
  z-index: 2;
  margin: 0.45rem auto 1.4rem;
  width: min(100%, 500px);
  height: 455px;
}

.about-stack-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1px dashed rgba(147, 197, 253, 0.34);
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: aboutStackOrbitRotate 20s linear infinite;
  box-shadow: inset 0 0 18px rgba(59, 130, 246, 0.14);
}

.about-stack-orbit-ring--outer {
  width: 375px;
  height: 375px;
  animation-duration: 22s;
}

.about-stack-orbit-ring--inner {
  width: 292px;
  height: 292px;
  animation-duration: 17s;
  animation-direction: reverse;
}

.about-stack-orbit-node {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--orbit-distance));
  transform-origin: center;
}

.about-stack-orbit-node-core {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, filter 0.28s ease;
}

.about-stack-orbit-node:hover .about-stack-orbit-node-core,
.about-stack-orbit-node:focus-visible .about-stack-orbit-node-core {
  border-color: rgba(167, 139, 250, 0.82);
  box-shadow: 0 16px 28px rgba(2, 8, 23, 0.62), 0 0 24px rgba(99, 102, 241, 0.45);
  filter: brightness(1.07);
}

.about-stack-orbit-node:focus-visible {
  outline: none;
}

.about-stack-orbit-icon {
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-stack-orbit-icon svg {
  width: 100%;
  height: 100%;
}

.about-stack-orbit-icon i {
  font-size: 1.52rem;
  line-height: 1;
}

.about-stack-orbit-name {
  display: none;
}

.about-stack-orbit-tooltip {
  position: absolute;
  left: 50%;
  top: -0.65rem;
  transform: translate(-50%, -100%);
  min-width: max-content;
  padding: 0.35rem 0.52rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(165, 180, 252, 0.5);
  background: rgba(15, 23, 42, 0.92);
  color: #e2e8f0;
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  box-shadow: 0 8px 16px rgba(2, 8, 23, 0.44);
  white-space: nowrap;
}

.about-stack-orbit-node:hover .about-stack-orbit-tooltip,
.about-stack-orbit-node:focus-visible .about-stack-orbit-tooltip {
  opacity: 1;
}

.about-stack-orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 30px rgba(2, 8, 23, 0.56), 0 0 28px rgba(59, 130, 246, 0.24);
  z-index: 4;
}

.about-stack-center-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.about-stack-center-title {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-stack-center-subtitle {
  margin: 0.2rem 0 0;
  color: #cbd5e1;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-stack-grid-panel {
  display: grid;
  gap: 0.9rem;
}

.about-stack-grid-head h3 {
  margin: 0;
}

.about-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-stack-grid-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 107, 255, 0.23);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.84) 100%);
  box-shadow: 0 14px 24px rgba(5, 16, 38, 0.26);
  padding: 1.1rem 1.15rem 1.2rem;
  backdrop-filter: blur(4px);
}

.about-stack-grid-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #bfdbfe;
}

.about-stack-grid-icon svg {
  width: 1rem;
  height: 1rem;
}

.about-stack-grid-kicker {
  margin: 0.62rem 0 0;
  color: #93c5fd;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-stack-chip-wrap {
  margin-top: 0.66rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.about-stack-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.34rem 0.58rem;
}

.about-stack-options-panel {
  display: grid;
  gap: 0.95rem;
}

.about-stack-options-head {
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: linear-gradient(142deg, rgba(247, 250, 255, 0.96) 0%, rgba(237, 244, 255, 0.88) 100%);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  padding: 1rem 1.05rem 1.05rem;
}

.about-stack-options-tag {
  margin: 0;
  color: #1d4ed8;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stack-options-intro {
  margin: 0.62rem 0 0;
  color: #475569;
  font-size: 0.84rem;
  line-height: 1.58;
}

.about-stack-options-grid {
  display: grid;
  gap: 0.78rem;
}

.about-stack-option-card {
  border-radius: 1.1rem;
  border: 1px solid rgba(31, 107, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 247, 255, 0.9) 100%);
  box-shadow: 0 11px 20px rgba(15, 23, 42, 0.09);
  padding: 0.95rem 1rem 1rem;
  display: grid;
  gap: 0.52rem;
}

.about-stack-option-rank {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.2);
  background: rgba(191, 219, 254, 0.44);
  color: #1d4ed8;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.52rem;
}

.about-stack-option-title {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  line-height: 1.38;
}

.about-stack-option-block {
  border-top: 1px dashed rgba(148, 163, 184, 0.42);
  padding-top: 0.48rem;
}

.about-stack-option-label {
  margin: 0;
  color: #1e3a8a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-stack-option-list {
  list-style: none;
  margin: 0.38rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.24rem;
}

.about-stack-option-list li {
  position: relative;
  padding-left: 0.84rem;
  color: #334155;
  font-size: 0.79rem;
  line-height: 1.56;
}

.about-stack-option-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.49rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #1f6bff;
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.14);
}

.about-stack-choice-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(31, 107, 255, 0.22);
  background: linear-gradient(145deg, rgba(11, 28, 61, 0.95) 0%, rgba(30, 58, 138, 0.92) 100%);
  box-shadow: 0 16px 30px rgba(11, 28, 61, 0.2);
  padding: 1rem 1.08rem 1.15rem;
}

.about-stack-choice-tag {
  margin: 0;
  color: rgba(191, 219, 254, 0.96);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-stack-choice-title {
  margin: 0.5rem 0 0;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.42;
}

.about-stack-choice-text {
  margin: 0.52rem 0 0;
  color: rgba(219, 234, 254, 0.94);
  font-size: 0.82rem;
  line-height: 1.62;
}

.services-va-shell {
  display: grid;
  gap: 0.82rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(140deg, rgba(250, 252, 255, 0.98) 0%, rgba(241, 246, 255, 0.96) 52%, rgba(252, 252, 250, 0.97) 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
  padding: 0.75rem;
}

.services-va-media {
  position: relative;
  min-height: 234px;
  border-radius: 1.06rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.services-va-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-va-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(11, 28, 61, 0.12) 0%, rgba(11, 28, 61, 0.54) 100%);
}

.services-va-badge {
  position: absolute;
  left: 0.82rem;
  bottom: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(10, 20, 44, 0.72);
  color: #f8fafc;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.32rem 0.68rem 0.32rem 0.46rem;
  backdrop-filter: blur(4px);
}

.services-va-media-points {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  display: grid;
  gap: 0.3rem;
}

.services-va-media-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  justify-self: end;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(15, 23, 42, 0.66);
  color: #f8fafc;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0.28rem 0.52rem;
  backdrop-filter: blur(4px);
}

.services-va-badge-icon {
  width: 1.18rem;
  height: 1.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
  box-shadow: 0 5px 14px rgba(17, 24, 39, 0.36);
}

.services-va-badge-icon svg {
  width: 100%;
  height: 100%;
}

.services-va-badge-icon i {
  font-size: 0.7rem;
  line-height: 1;
}

.services-va-content {
  border-radius: 1.06rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 255, 0.92) 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  padding: 0.86rem;
}

.services-va-lead {
  margin-top: 0.6rem;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.54;
}

.services-va-grid {
  margin-top: 0.78rem;
  display: grid;
  gap: 0.56rem;
}

.services-va-card {
  border-radius: 0.82rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 247, 255, 0.84) 100%);
  padding: 0.62rem 0.68rem 0.66rem;
}

.services-va-icon {
  width: 1.58rem;
  height: 1.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.58);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.3);
}

.services-va-icon svg {
  width: 0.86rem;
  height: 0.86rem;
}

.services-va-icon i {
  font-size: 0.84rem;
  line-height: 1;
}

.services-va-card h3 {
  margin: 0.44rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
}

.services-va-card p {
  margin: 0.28rem 0 0;
  color: #475569;
  font-size: 0.72rem;
  line-height: 1.46;
}

/* Services page: unified service catalog */
.services-category-brief {
  margin-top: 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.32rem;
}

.services-category-brief p {
  margin: 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.55;
}

.services-catalog-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}

.services-catalog-card {
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 255, 0.96) 100%);
  box-shadow: 0 10px 16px rgba(15, 23, 42, 0.08);
  padding: 0.9rem 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-catalog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.12);
}

.services-catalog-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.2);
}

.services-catalog-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.services-catalog-icon i {
  font-size: 0.95rem;
  line-height: 1;
}

.services-catalog-card h3 {
  margin: 0.56rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  line-height: 1.34;
}

.services-catalog-card p {
  margin: 0.34rem 0 0;
  color: #475569;
  font-size: 0.76rem;
  line-height: 1.52;
}

/* Services process + core features redesign */
.services-process-list {
  display: grid;
  gap: 0.62rem;
}

.services-process-item {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  border-radius: 0.98rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
  box-shadow: 0 10px 16px rgba(15, 23, 42, 0.08);
  padding: 0.78rem 0.86rem;
}

.services-process-icon,
.services-feature-icon {
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
  box-shadow: 0 8px 14px rgba(15, 23, 42, 0.2);
}

.services-process-icon svg,
.services-feature-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}

.services-process-icon i,
.services-feature-icon i {
  font-size: 0.92rem;
  line-height: 1;
}

.services-feature-icon i {
  font-size: 1.08rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(15, 23, 42, 0.6);
}

.services-process-item p {
  margin: 0.08rem 0 0;
  color: #475569;
  font-size: 0.8rem;
  line-height: 1.5;
}

.services-process-item strong {
  color: #0b1c3d;
}

.services-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.services-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
  border-radius: 0.98rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.96) 100%);
  box-shadow: 0 10px 16px rgba(15, 23, 42, 0.08);
  padding: 0.84rem 0.92rem;
}

.services-feature-copy h3 {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.96rem;
  line-height: 1.32;
}

.services-feature-copy p {
  margin: 0.26rem 0 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.48;
}

/* Services comparison */
.services-compare-usp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.86rem;
}

.services-compare-panel,
.services-usp-panel {
  border-radius: 1.1rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.95) 100%);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  padding: 0.95rem 1rem;
}

.services-compare-usp-title {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  line-height: 1.3;
}

.services-compare-usp-subtitle {
  margin: 0.28rem 0 0;
  color: #64748b;
  font-size: 0.76rem;
  line-height: 1.45;
}

.services-compare-wrap {
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.services-compare-table {
  width: 100%;
  border-collapse: collapse;
}

.services-compare-table thead tr {
  background: linear-gradient(125deg, #0b1c3d 0%, #1f3d7a 100%);
}

.services-compare-table th {
  color: #f8fafc;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 0.86rem 0.95rem;
}

.services-compare-table th.is-center,
.services-compare-table td.is-center {
  text-align: center;
}

.services-compare-th {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.services-compare-th-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.services-compare-th-icon.is-us {
  border-color: rgba(134, 239, 172, 0.7);
  background: rgba(34, 197, 94, 0.2);
}

.services-compare-th-icon.is-others {
  border-color: rgba(252, 165, 165, 0.7);
  background: rgba(239, 68, 68, 0.2);
}

.services-compare-th-icon svg {
  width: 0.64rem;
  height: 0.64rem;
}

.services-compare-th-icon i {
  font-size: 0.64rem;
  line-height: 1;
}

.services-compare-table td {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  color: #0f172a;
  font-size: 0.82rem;
  padding: 0.76rem 0.95rem;
}

.services-compare-status {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  justify-content: center;
  border-radius: 999px;
  padding: 0.16rem 0.54rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.services-compare-status svg {
  width: 0.7rem;
  height: 0.7rem;
}

.services-compare-status i {
  font-size: 0.72rem;
  line-height: 1;
}

.services-compare-status.is-yes {
  background: rgba(34, 197, 94, 0.16);
  color: #166534;
}

.services-compare-status.is-no {
  background: rgba(239, 68, 68, 0.16);
  color: #991b1b;
}

.services-compare-status.is-muted {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

/* Services USP */
.services-usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.66rem;
}

.services-usp-card {
  border-radius: 0.95rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  padding: 0.85rem 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
}

.services-usp-icon {
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
}

.services-usp-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}

.services-usp-icon i {
  font-size: 0.94rem;
  line-height: 1;
}

.services-usp-card h3 {
  margin: 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  line-height: 1.3;
}

.services-usp-copy {
  display: grid;
  gap: 0.18rem;
}

.services-usp-copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Services offer cards */
.services-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.72rem;
}

.services-offer-card {
  border-radius: 1rem;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 250, 255, 0.95) 100%);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
  padding: 0.95rem 1rem;
}

.services-offer-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #f8fafc;
}

.services-offer-icon svg {
  width: 0.98rem;
  height: 0.98rem;
}

.services-offer-icon i {
  font-size: 0.98rem;
  line-height: 1;
}

.services-offer-card h3 {
  margin: 0.58rem 0 0;
  color: #0b1c3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  line-height: 1.35;
}

.services-offer-card p {
  margin: 0.34rem 0 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.54;
}

/* Future more details + final CTA */
.services-future-link-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.7rem;
}

.services-future-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.62);
  background: linear-gradient(135deg, rgba(244, 211, 94, 0.98) 0%, rgba(194, 151, 45, 0.95) 44%, rgba(17, 24, 39, 0.99) 100%);
  color: #ffffff;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.38rem 0.8rem;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.2);
}

.services-future-more-btn svg {
  width: 0.86rem;
  height: 0.86rem;
}

.services-future-more-btn i {
  font-size: 0.86rem;
  line-height: 1;
}

.services-final-cta {
  border-radius: 1.4rem;
  border: 1px solid rgba(212, 175, 55, 0.44);
  background: linear-gradient(125deg, rgba(11, 28, 61, 0.98) 0%, rgba(20, 45, 92, 0.96) 58%, rgba(17, 24, 39, 0.98) 100%);
  box-shadow: 0 20px 32px rgba(11, 28, 61, 0.3);
  padding: 1.1rem 1.2rem;
}

.services-final-cta-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.68rem;
}

.services-final-cta-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

/* Services page only: rectangular cards across sections */
body[data-page='services'] main .services-va-shell,
body[data-page='services'] main .services-va-media,
body[data-page='services'] main .services-va-content,
body[data-page='services'] main .services-va-card,
body[data-page='services'] main .services-category-brief,
body[data-page='services'] main .services-catalog-card,
body[data-page='services'] main .services-process-item,
body[data-page='services'] main .services-feature-card,
body[data-page='services'] main .services-compare-panel,
body[data-page='services'] main .services-usp-panel,
body[data-page='services'] main .services-compare-wrap,
body[data-page='services'] main .services-usp-card,
body[data-page='services'] main .services-offer-card,
body[data-page='services'] main .services-final-cta,
body[data-page='services'] main .about-stack-options-head,
body[data-page='services'] main .about-stack-option-card,
body[data-page='services'] main .about-stack-choice-card,
body[data-page='services'] main .rounded-xl,
body[data-page='services'] main .rounded-3xl {
  border-radius: 0;
}

/* Keep only services hero banner in previous rounded style */
body[data-page='services'] main .hero-grid,
body[data-page='services'] main .card-surface {
  border-radius: 1.5rem;
}

body[data-page='services'] #services-technology-stack .about-stack-visual {
  min-height: 640px;
  overflow: visible;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

body[data-page='services'] #services-technology-stack .about-stack-visual-bg {
  opacity: 0;
  transform: none;
}

body[data-page='services'] #services-technology-stack .about-stack-visual-overlay {
  display: none;
}

body[data-page='services'] #services-technology-stack .about-stack-visual-head {
  padding-top: 1.15rem;
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-stage {
  margin-top: 0.25rem;
  width: min(100%, 525px);
  height: 485px;
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-ring--outer {
  width: 390px;
  height: 390px;
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-ring--inner {
  width: 304px;
  height: 304px;
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-ring {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.22);
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-node-core {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.14)),
    rgba(148, 163, 184, 0.5);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.32), 0 0 14px rgba(255, 255, 255, 0.2);
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-node:hover .about-stack-orbit-node-core,
body[data-page='services'] #services-technology-stack .about-stack-orbit-node:focus-visible .about-stack-orbit-node-core {
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.38), 0 0 16px rgba(255, 255, 255, 0.28);
}

body[data-page='services'] #services-technology-stack .about-stack-orbit-center {
  width: 162px;
  height: 162px;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.18)),
    rgba(148, 163, 184, 0.58);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.34), 0 0 18px rgba(255, 255, 255, 0.25);
}

body[data-page='services'] #services-technology-stack .about-stack-center-title {
  color: #0b1c3d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

body[data-page='services'] #services-technology-stack .about-stack-center-subtitle {
  color: #7a5b00;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

@keyframes aboutStackOrbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1279px) {
  .about-stack-orbit-stage {
    width: min(100%, 460px);
    height: 420px;
  }

  .about-stack-orbit-ring--outer {
    width: 332px;
    height: 332px;
  }

  .about-stack-orbit-ring--inner {
    width: 264px;
    height: 264px;
  }

  .about-stack-orbit-node-core {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 1023px) {
  .about-stack-visual {
    min-height: 540px;
  }

  .about-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stack-options-head,
  .about-stack-option-card,
  .about-stack-choice-card {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .services-va-shell {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: 0.9rem;
    padding: 0.86rem;
  }

  .services-va-media {
    min-height: 100%;
  }

  .services-va-content {
    padding: 0.88rem 0.9rem 0.96rem;
  }

  .services-va-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page='services'] #services-technology-stack .about-stack-visual {
    position: sticky;
    top: 124px;
  }
}

@media (min-width: 1280px) {
  .services-va-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .about-stack-visual {
    min-height: 500px;
  }

  .about-stack-visual-head {
    padding: 1rem 1rem 0;
  }

  .about-stack-orbit-stage {
    width: min(100%, 360px);
    height: 348px;
    margin-top: 0.35rem;
  }

  .about-stack-orbit-ring--outer {
    width: 286px;
    height: 286px;
  }

  .about-stack-orbit-ring--inner {
    width: 228px;
    height: 228px;
  }

  .about-stack-orbit-node {
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(calc(var(--orbit-distance) * 0.82));
  }

  .about-stack-orbit-node-core {
    width: 62px;
    height: 62px;
    gap: 0.22rem;
  }

  .about-stack-orbit-icon {
    width: 1.35rem;
    height: 1.35rem;
  }

  .about-stack-orbit-name {
    font-size: 0.58rem;
  }

  .about-stack-orbit-tooltip {
    display: none;
  }

  .about-stack-orbit-center {
    width: 122px;
    height: 122px;
  }

  .about-stack-center-logo {
    width: 46px;
    height: 46px;
  }

  .about-stack-center-title {
    font-size: 0.68rem;
  }

  .about-stack-center-subtitle {
    font-size: 0.57rem;
  }

  .about-stack-grid {
    grid-template-columns: 1fr;
  }

  body[data-page='home'] #home-technology-stack .about-stack-options-panel {
    display: none;
  }

  body[data-page='home'] #home-technology-stack .about-stack-more-btn {
    margin-top: 0.75rem;
  }

  .services-va-shell {
    padding: 0.64rem;
  }

  .services-va-media {
    min-height: 216px;
  }

  .services-va-content {
    padding: 0.76rem;
  }

  .services-va-grid {
    margin-top: 0.76rem;
  }

  .services-va-media-points {
    right: 0.72rem;
    bottom: 0.72rem;
  }

  .services-va-media-points span {
    font-size: 0.58rem;
  }

  .services-category-brief {
    padding: 0.78rem 0.84rem;
  }

  .services-catalog-card {
    padding: 0.8rem 0.84rem;
  }

  .services-process-item,
  .services-feature-card {
    padding: 0.72rem 0.78rem;
  }

  .services-compare-table th,
  .services-compare-table td {
    padding: 0.66rem 0.7rem;
    font-size: 0.75rem;
  }

  .services-compare-status {
    font-size: 0.66rem;
    padding: 0.14rem 0.46rem;
  }

  .services-compare-th {
    gap: 0.26rem;
  }

  .services-compare-th-icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .services-compare-panel,
  .services-usp-panel {
    padding: 0.8rem 0.84rem;
  }

  .services-future-link-wrap {
    justify-content: flex-start;
  }

  .services-final-cta {
    padding: 0.92rem 0.95rem;
  }

  body[data-page='services'] #services-technology-stack .about-stack-visual {
    min-height: 520px;
  }

  body[data-page='services'] #services-technology-stack .about-stack-orbit-stage {
    width: min(100%, 370px);
    height: 350px;
  }

  body[data-page='services'] #services-technology-stack .about-stack-orbit-ring--outer {
    width: 290px;
    height: 290px;
  }

  body[data-page='services'] #services-technology-stack .about-stack-orbit-ring--inner {
    width: 232px;
    height: 232px;
  }

  body[data-page='services'] #services-technology-stack .about-stack-orbit-node-core {
    width: 64px;
    height: 64px;
  }

  body[data-page='services'] #services-technology-stack .about-stack-orbit-center {
    width: 126px;
    height: 126px;
  }
}

@media (min-width: 640px) {
  .services-catalog-grid,
  .services-usp-grid,
  .services-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .services-compare-usp-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .services-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-usp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-usp-grid.services-usp-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-stack-orbit-ring {
    animation: none;
  }

  .about-stack-orbit-node-core {
    transition: none;
  }
}

/* Tablet Layout Adjustments */
@media (max-width: 1023px) {
  .mega-panel {
    display: none;
  }

  #mobileMenu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    z-index: 60;
  }

  .zebra-mobile-panel {
    max-height: calc(100vh - 7.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .zebra-shell {
    min-height: 74px;
  }

  .zebra-header-main {
    min-height: 74px;
  }

  .zebra-logo-icon {
    width: 50px;
    height: 50px;
  }

  .zebra-brand-image {
    height: 56px;
  }

  .zebra-brand-link {
    padding: 0;
  }

  .zebra-logo-text {
    font-size: 1.6rem;
  }

  body[data-page='home'] .home-hero-section {
    margin-top: -114px;
    padding-top: 0;
  }

  .hero-rotator,
  .hero-slide-inner {
    min-height: 570px;
  }

  .hero-rotator-full {
    border-radius: 0;
  }

  .hero-slide-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2rem;
  }

  body[data-page='home'] .hero-slide-inner {
    padding: 4.3rem 2rem 2rem;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-dots {
    left: 2rem;
    bottom: 1.2rem;
  }

  .process-step::before {
    left: -0.95rem;
  }

  body[data-page='home'] {
    --va-sticky-top: clamp(5.1rem, 8vh, 6rem);
    --va-pin-space: clamp(14rem, 34vh, 22rem);
    --va-overlap-head: clamp(1.6rem, 3.8vh, 2.4rem);
    --va-overlap-pull: clamp(2.4rem, 5vh, 3.8rem);
    --va-overlap-delay: clamp(22rem, 40vh, 30rem);
  }

  body[data-page='home'] #industries {
    border-radius: 1.6rem 1.6rem 0 0;
  }
}

/* Mobile Layout Adjustments */
@media (max-width: 767px) {
  .services-overview-lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .zebra-shell {
    min-height: 70px;
  }

  .zebra-header-main {
    min-height: 70px;
  }

  body[data-page='home'] {
    --va-sticky-top: clamp(4.8rem, 8vh, 5.6rem);
    --va-pin-space: clamp(10rem, 25vh, 16rem);
    --va-overlap-head: clamp(1rem, 2.6vh, 1.8rem);
    --va-overlap-pull: clamp(1.2rem, 3.4vh, 2.2rem);
    --va-overlap-delay: clamp(12rem, 24vh, 16rem);
  }

  body[data-page='home'] #industries {
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .zebra-brand-image {
    height: 48px;
  }

  body[data-page='home'] .home-hero-section {
    margin-top: -74px;
    padding-top: 0;
  }

  .hero-rotator,
  .hero-slide-inner {
    min-height: 540px;
  }

  .hero-rotator-full {
    border-radius: 0;
  }

  .hero-slide-inner {
    padding: 1.25rem;
  }

  body[data-page='home'] .hero-slide-inner {
    gap: 0.85rem;
    padding: 4.5rem 1rem 1.25rem;
  }

  body[data-page='home'] .hero-panel {
    display: none;
  }

  body[data-page='home'] .hero-kicker {
    font-size: 0.68rem;
    padding: 0.35rem 0.65rem;
  }

  body[data-page='home'] .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.12;
  }

  body[data-page='home'] .hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.45;
  }

  .zebra-mobile-panel {
    max-height: calc(100vh - 6.5rem);
  }

  .hero-dots {
    left: 1.25rem;
    bottom: 1rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}

/* Desktop-Only Overlay Behavior */
@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none;
  }
}




