/* ===== ZEDWP DESIGN SYSTEM & STYLES (MATCHING ZEDWEB.VERCEL.APP) ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-warm-rgb: 200 174 128;
  --bg: #000000;
  --bg-soft: #09090b;
  --bg-card: rgba(24, 24, 27, 0.3);
  --bg-card-hover: rgba(24, 24, 27, 0.6);
  --primary: #0040c1;
  --primary-light: #3b82f6;
  --primary-glow: rgba(0, 64, 193, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --text: #ffffff;
  --text-2: #d4d4d8;
  --text-3: #a1a1aa;
  --text-zinc-500: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(59, 130, 246, 0.4);
  --nav-bg: rgba(0, 0, 0, 0.85);
  --nav-border: rgba(255, 255, 255, 0.08);
  --ease-framer: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

html.light {
  --brand-warm-rgb: 200 174 128;
  --bg: #ffffff;
  --bg-soft: #f4f4f5;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(244, 244, 245, 1);
  --primary: #0040c1;
  --primary-light: #2563eb;
  --primary-glow: rgba(37, 99, 235, 0.2);
  --text: #09090b;
  --text-2: #52525b;
  --text-3: #a1a1aa;
  --text-zinc-500: #71717a;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(37, 99, 235, 0.3);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-border: rgba(0, 0, 0, 0.08);
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* UTILITIES */
.text-zinc-500 { color: var(--text-zinc-500) !important; }
.text-primary { color: var(--primary-light) !important; }
.italic { font-style: italic; }
.font-display { font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', system-ui, sans-serif; letter-spacing: 0.01em; }
.font-serif { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; }

/* ===== LAYOUT & CONTAINERS ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section { padding: 100px 0; }

/* ===== NAVIGATION HEADER ===== */
.nav-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: calc(100% - 32px);
  max-width: 1280px;
  padding: 12px 24px;
  border-radius: 100px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--nav-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.nav-header.scrolled {
  background: var(--nav-bg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 1;
  justify-self: start;
}

.brand-name {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 56%, #60a5fa 56%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-brand-logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-brand-logo svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.nav-brand:hover .nav-brand-logo {
  transform: scale(1.08);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.brand-dot {
  color: rgb(var(--brand-warm-rgb));
}

.nav-center {
  display: flex;
  align-items: center;
  justify-self: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-2);
  position: relative;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

html.light .nav-link:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-link.active {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-weight: 800;
}

/* ===== FLYWP STYLE FULL-WIDTH MEGA MENU DROPDOWN ===== */
.nav-item-dropdown {
  position: static;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: calc(100% - 32px);
  max-width: 1280px;
  padding-top: 12px;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.25s ease;
  z-index: 999;
}

/* Invisible Hover Bridge to guarantee continuous hover connection */
.mega-menu-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
}

.nav-item-dropdown:hover .mega-menu-dropdown,
.nav-item-dropdown:focus-within .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  background: rgba(8, 11, 19, 0.99);
  border: 1px solid rgba(59, 130, 246, 0.32);
  border-radius: 28px;
  padding: 24px 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 50px rgba(59, 130, 246, 0.25);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  width: 100%;
}

/* Services Subpage Grid System */
.services-subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .services-subpage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-subpage-grid {
    grid-template-columns: 1fr;
  }
}

html.light .mega-menu-inner {
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(0, 64, 193, 0.22);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.12);
}

/* Left Sidebar Panel */
.mega-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
  padding-right: 22px;
}

.mega-nav-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-2);
  background: transparent;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
}

.mega-tab-btn:hover,
.mega-tab-btn.active {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.12);
  font-weight: 800;
}

.mega-tab-btn .tab-arrow {
  font-size: 15px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mega-tab-btn:hover .tab-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Promo Card in Left Sidebar */
.mega-promo-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14) 0%, rgba(0, 64, 193, 0.08) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 18px;
  padding: 16px;
  margin-top: 16px;
}

.mega-promo-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.mega-promo-desc {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.4;
  margin-bottom: 12px;
}

.mega-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: var(--gradient-primary);
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  transition: transform 0.2s ease;
}

.mega-promo-btn:hover {
  transform: translateY(-2px);
}

/* Right Content — Tab Panels (active one shows, toggled by mega tabs JS) */
.mega-content-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.mega-tab-panel {
  display: none;
}

.mega-tab-panel.active {
  display: block;
  animation: megaPanelIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes megaPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.mega-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mega-view-all {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

.mega-view-all .tab-arrow {
  font-size: 14px;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mega-view-all:hover .tab-arrow {
  opacity: 1;
  transform: translateX(3px);
}

.mega-card-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

html.light .mega-card-item {
  background: rgba(0, 64, 193, 0.03);
  border-color: rgba(0, 64, 193, 0.08);
}

.mega-card-item:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.mega-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-card-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.mega-card-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--primary-light);
  transition: stroke 0.25s ease;
}

.mega-card-item:hover .mega-card-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.mega-card-item:hover .mega-card-icon svg {
  stroke: #ffffff;
}

.mega-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
}

.mega-card-arrow {
  font-size: 14px;
  color: var(--text-3);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}

.mega-card-item:hover .mega-card-arrow {
  opacity: 1;
  color: var(--primary-light);
  transform: translateX(0);
}

.mega-card-desc {
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.45;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 10px;
  border-right: 1px solid var(--border);
  margin-right: 4px;
}

.nav-socials a {
  color: var(--text-3);
  display: flex;
  align-items: center;
  transition: color 0.3s, transform 0.3s;
}

.nav-socials a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.nav-socials svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .nav-socials { display: none; }
}

.btn-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-theme-toggle:hover {
  border-color: var(--border-hover);
  transform: scale(1.05);
}

.btn-theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
}

.icon-moon { display: none; }
html.light .icon-sun { display: none; }
html.light .icon-moon { display: block; }

.btn-primary-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: var(--primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 10px 25px -5px var(--primary-glow);
  overflow: hidden;
  will-change: transform, box-shadow;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-pill::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(25deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.btn-primary-pill:hover::after {
  opacity: 1;
  animation: framerShimmerSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes framerShimmerSweep {
  0% { left: -75%; }
  100% { left: 150%; }
}

.btn-primary-pill:hover {
  background: var(--primary-light);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 32px -4px rgba(59, 130, 246, 0.45);
}

.btn-primary-pill:active {
  transform: translate3d(0, 0, 0);
}

.btn-primary-pill svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-pill:hover svg {
  transform: translate3d(4px, 0, 0);
}

.btn-outline-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  will-change: transform, box-shadow;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--border-hover);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 10px 24px -6px rgba(59, 130, 246, 0.2);
}

.btn-outline-pill:active {
  transform: translate3d(0, 0, 0);
}

.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
  stroke-width: 2;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: max(24px, env(safe-area-inset-top)) 28px max(32px, env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.drawer-glow-bg {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 64, 193, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.drawer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  color: var(--text);
}

.mobile-drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: rotate(90deg);
}

.mobile-drawer-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--text);
}

.drawer-body {
  margin: 32px 0;
  position: relative;
  z-index: 2;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: rgba(0, 64, 193, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(6px);
}

.link-num {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 700;
  margin-right: 16px;
}

.link-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--text);
  flex-grow: 1;
}

.link-arrow {
  font-size: 20px;
  color: var(--text-3);
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-drawer-links a:hover .link-arrow,
.mobile-drawer-links a.active .link-arrow {
  color: var(--primary-light);
  transform: translateX(4px);
}

.drawer-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0, 64, 193, 0.4);
  transition: all 0.3s ease;
}

.drawer-cta-btn svg {
  width: 18px;
  height: 18px;
}

.drawer-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-2);
}

.drawer-contact-info a {
  color: var(--text-2);
  transition: color 0.3s ease;
}

.drawer-contact-info a:hover {
  color: var(--primary-light);
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .nav-header { top: max(20px, calc(env(safe-area-inset-top) - 12px)); }
}

@media (max-width: 640px) {
  .nav-header { padding: 8px 12px; }
  .nav-header .btn-primary-pill { display: none; }
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 20px 80px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 64, 193, 0.18), transparent 70%);
}

.hero-glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 64, 193, 0.25) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
}

/* ===== HERO GLOWING ANIMATION RINGS ===== */
.hero-rings-canvas-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-rings-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 30px rgba(0, 64, 193, 0.3), inset 0 0 20px rgba(0, 64, 193, 0.2);
  animation: ringPulse 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  opacity: 0;
}

html.light .hero-ring {
  border-color: rgba(0, 64, 193, 0.3);
  box-shadow: 0 0 25px rgba(0, 64, 193, 0.15);
}

.hero-ring:nth-child(1) { width: 320px; height: 320px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 540px; height: 540px; animation-delay: 1.6s; }
.hero-ring:nth-child(3) { width: 760px; height: 760px; animation-delay: 3.2s; }
.hero-ring:nth-child(4) { width: 980px; height: 980px; animation-delay: 4.8s; }
.hero-ring:nth-child(5) { width: 1200px; height: 1200px; animation-delay: 6.4s; }

@keyframes ringPulse {
  0% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0;
    border-color: rgba(59, 130, 246, 0.7);
  }
  25% {
    opacity: 0.85;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.7) rotate(180deg);
    opacity: 0;
    border-color: rgba(0, 64, 193, 0);
  }
}

.hero-container {
  max-width: 900px;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(12px);
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  position: relative;
  display: inline-block;
}

.status-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #10b981;
  animation: statusRadarPulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes statusRadarPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== LASER BORDER ACCENT ON CARD HOVER ===== */
.why-card,
.engage-card,
.value-card,
.methodology-card,
.engagement-card,
.contact-channel-card,
.stat-glow-card,
.work-card-inner,
.b2b-market-card {
  position: relative;
  overflow: hidden;
}

.why-card::before,
.engage-card::before,
.value-card::before,
.methodology-card::before,
.engagement-card::before,
.contact-channel-card::before,
.b2b-market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.why-card:hover::before,
.engage-card:hover::before,
.value-card:hover::before,
.methodology-card:hover::before,
.engagement-card:hover::before,
.contact-channel-card:hover::before,
.b2b-market-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.hero-title-main {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(58px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  letter-spacing: 0.015em;
  transition: all 0.4s ease;
}

html.light .hero-title-outline {
  -webkit-text-stroke: 1.5px var(--text);
  color: transparent;
}

.hero-subtitle-main {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-specs {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.hero-specs-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--text-3);
  margin-bottom: 20px;
}

.hero-specs-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.05em;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.spec-item:hover {
  opacity: 1;
  color: var(--text);
}

.spec-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-light);
  stroke-width: 2;
}

.hero-scroll-down {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-3);
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
}

.hero-scroll-down:hover { opacity: 1; }

.scroll-pill {
  width: 20px;
  height: 32px;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 100px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 56px; }

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

@media (max-width: 768px) {
  .section-header-flex { flex-direction: column; align-items: flex-start; }
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: monospace;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.section-title .italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

/* ===== BUTTON EXPLORE PILL ===== */
.btn-explore-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 24px;
  background: var(--text);
  color: var(--bg);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-explore-pill:hover { transform: scale(1.04); }

.explore-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.btn-explore-pill:hover .explore-icon-circle { transform: rotate(-45deg); }

.explore-icon-circle svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ===== WHO WE ARE & STATS ===== */
.about-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-text p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 24px;
}

.stats-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card-modern {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.stat-card-modern:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stat-num-large {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}

.stat-label-modern {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-zinc-500);
}

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--bg); }

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .services-grid-4 { grid-template-columns: 1fr; }
}

.service-card-modern {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px var(--primary-glow);
}

.service-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.3s;
}

.service-card-modern:hover .service-icon-circle {
  background: var(--primary-light);
  color: #ffffff;
  transform: scale(1.1);
}

.service-icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s;
}

.service-card-modern:hover .service-icon-circle svg { stroke: #ffffff; }

.service-title-modern {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-desc-modern {
  font-size: 14px;
  color: var(--text-zinc-500);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.process-pipeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-pipeline-line {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 44px;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
  opacity: 0.3;
  z-index: 1;
}

.process-step-card-pro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 36px;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.process-step-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-step-card-pro:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateX(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 64, 193, 0.15);
}

.process-step-card-pro:hover::before {
  opacity: 1;
}

.process-step-num-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 64, 193, 0.15);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-light);
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 64, 193, 0.2);
  transition: all 0.3s ease;
}

.process-step-card-pro:hover .process-step-num-badge {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary-light);
  transform: scale(1.08);
}

.process-step-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.process-step-info p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-step-tags span {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .process-pipeline-line { left: 24px; }
  .process-step-card-pro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }
  .process-step-num-badge {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

/* ===== WORKS SECTION ===== */
.works-section { background: var(--bg); }

.works-carousel {
  position: relative;
  overflow: hidden;
}

.works-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .work-slide { flex-basis: 100%; }
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  border-color: var(--border-hover);
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.work-card-modern {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.work-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.work-card-modern:hover .work-card-img {
  transform: scale(1.08);
}

.work-card-modern:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.work-preview-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.9) 100%);
  opacity: 0.75;
  z-index: 1;
  transition: opacity 0.4s;
}

.work-card-modern:hover .work-preview-gradient { opacity: 0.95; }

.work-overlay-content {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
}

.work-tag-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.work-title-text {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.work-desc-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  transition: color 0.3s;
}

.faq-btn:hover { color: var(--primary-light); }

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform 0.3s ease;
}

.faq-toggle-icon::before {
  width: 100%; height: 2px;
  top: 50%; left: 0;
  transform: translateY(-50%);
}

.faq-toggle-icon::after {
  width: 2px; height: 100%;
  left: 50%; top: 0;
  transform: translateX(-50%);
}

.faq-accordion-item.active .faq-toggle-icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-panel {
  max-height: 240px;
}

.faq-panel p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg);
  text-align: center;
  padding: 160px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(var(--brand-warm-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(var(--primary-light), 0.06) 0%, transparent 50%),
    linear-gradient(rgba(var(--border), 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--border), 0.3) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 100%, black 20%, transparent 70%);
}

.cta-glow-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--brand-warm-rgb), 0.25) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--brand-warm-rgb), 0.12) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.cta-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--primary-light), 0.1) 0%, transparent 70%);
  top: 30%;
  right: -3%;
  animation-delay: -3s;
}

.cta-orb-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(var(--brand-warm-rgb), 0.08) 0%, transparent 70%);
  bottom: 20%;
  left: 15%;
  animation-delay: -5s;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.cta-headline {
  position: relative;
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-headline-outline {
  position: relative;
  display: block;
  -webkit-text-stroke: 2px rgba(var(--brand-warm-rgb), 0.5);
  -webkit-text-fill-color: transparent;
  background: none;
  background-clip: padding-box;
}

html.light .cta-headline-outline {
  -webkit-text-stroke: 2px var(--text);
}

.cta-subtext {
  position: relative;
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-form-box {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 48px;
  flex-wrap: wrap;
}

.cta-form-glass {
  position: relative;
  display: flex;
  background: rgba(var(--bg-card), 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--border), 0.8);
  border-radius: 100px;
  padding: 6px;
  transition: all 0.3s ease;
}

.cta-form-glass:focus-within {
  border-color: rgba(var(--brand-warm-rgb), 0.5);
  box-shadow: 0 0 40px rgba(var(--brand-warm-rgb), 0.15);
}

.cta-input-field {
  flex: 1;
  min-width: 200px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: color 0.3s;
}

.cta-input-field::placeholder { color: var(--text-3); }

.cta-submit-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, rgb(var(--brand-warm-rgb)) 0%, rgba(var(--brand-warm-rgb), 0.7) 100%);
  border: none;
  border-radius: 100px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-submit-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(var(--brand-warm-rgb), 0.4);
}

.cta-trust {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-3);
}

.cta-trust-item svg {
  width: 16px;
  height: 16px;
  color: rgb(var(--brand-warm-rgb));
}

/* ===== FOOTER ===== */
.footer-main {
  background: var(--bg);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.4) 50%, transparent 100%);
}

/* ===== FOOTER CTA SECTION (PRO ZEDWEB STYLE) ===== */
/* ===== FOOTER CTA SECTION (ULTRA PRO ANIMATED STYLING) ===== */
.footer-cta-section {
  text-align: center;
  padding: 110px 20px 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle Breathing Radial Glow Backdrop */
.footer-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 750px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 64, 193, 0.25) 0%, rgba(59, 130, 246, 0.12) 45%, transparent 75%);
  filter: blur(80px);
  pointer-events: none;
  animation: zhCtaBreathe 12s ease-in-out infinite alternate;
}

/* Subtle Translucent Dot-Grid Texture Backdrop */
.footer-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
  pointer-events: none;
  opacity: 0.65;
  animation: zhGridPan 30s linear infinite;
}

@keyframes zhCtaBreathe {
  0% {
    transform: translate(-50%, -50%) scale(0.95) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-48%, -52%) scale(1.22) rotate(6deg);
    opacity: 1;
  }
  100% {
    transform: translate(-52%, -48%) scale(1.08) rotate(-6deg);
    opacity: 0.85;
  }
}

@keyframes zhGridPan {
  0% { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

.footer-cta-link {
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.footer-cta-title {
  font-family: 'Plus Jakarta Sans', 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 6.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-cta-link:hover .footer-cta-title {
  color: #ffffff;
  text-shadow: 0 0 45px rgba(59, 130, 246, 0.4);
}

.footer-cta-title .cta-italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-cta-link:hover .cta-italic {
  color: #e2e8f0;
}

.footer-cta-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(48px, 7vw, 96px);
  height: clamp(48px, 7vw, 96px);
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px var(--primary-glow), 0 0 20px rgba(59, 130, 246, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  overflow: hidden;
}

/* Light Sheen Overlay for Pill */
.footer-cta-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: zhPillSheen 3.5s infinite;
}

@keyframes zhPillSheen {
  0%, 70% { left: -100%; }
  100% { left: 100%; }
}

.footer-cta-link:hover .footer-cta-pill {
  transform: scale(1.15) rotate(4deg);
  box-shadow: 0 18px 45px rgba(0, 64, 193, 0.6), 0 0 35px rgba(59, 130, 246, 0.5);
}

.footer-cta-pill svg {
  width: clamp(24px, 3.5vw, 46px);
  height: clamp(24px, 3.5vw, 46px);
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-cta-link:hover .footer-cta-pill svg {
  transform: translate(4px, -4px) scale(1.1);
}

.footer-cta-sub {
  margin-top: 22px;
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Footer Inner Grid */
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* wide services/solutions column: spans 2 grid tracks, split into 2 link columns */
.footer-top .footer-nav-wide { grid-column: span 2; }
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top .footer-nav-wide { grid-column: auto; }
}

@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-cols { grid-template-columns: 1fr; gap: 0; }
}

.footer-brand {
  max-width: 340px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--primary-light);
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand-name .brand-dot {
  color: var(--primary-light);
}

.footer-brand-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Newsletter Form */
.footer-newsletter-box {
  margin-top: 20px;
  max-width: 320px;
}

.footer-newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-newsletter-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 11px 46px 11px 18px;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-btn {
  position: absolute;
  right: 5px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-newsletter-btn:hover {
  transform: scale(1.1);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-nav-list a {
  font-size: 13.5px;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-info-item {
  margin-bottom: 18px;
}

.footer-info-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-info-text {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

.footer-info-text a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-info-text a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-credit {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-credit a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

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

@media (max-width: 640px) {
  .footer-inner { padding: 0 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== CONTACT HERO GLOW (MISSING) ===== */
.contact-hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 64, 193, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ===== NEWSLETTER FORM (MISSING) ===== */
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.newsletter-form .form-input {
  min-width: 240px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

html.light .newsletter-form .form-input {
  background: #ffffff;
}

.newsletter-form .form-input:focus {
  outline: none;
  border-color: var(--primary-light);
}

.newsletter-form .form-input::placeholder {
  color: var(--text-3);
}

/* ===== BLOG GRID 3 COLS (MISSING) ===== */
.blog-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .blog-grid-3 { grid-template-columns: 1fr; gap: 20px; }
}

/* ===== BLOG CARD WITH THUMB (MISSING) ===== */
.blog-card-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: -28px -28px 0 -28px;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-thumb {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 14px;
}

.blog-card-meta .dot {
  color: var(--text-3);
  font-size: 10px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.2s;
}

.blog-card:hover .blog-card-title {
  color: var(--primary-light);
}

.blog-card-snippet {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ===== BLOG SEARCH BAR (MISSING) ===== */
.blog-search-bar {
  margin-top: 40px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card .blog-author-role {
  font-size: 11px;
  color: var(--text-3);
  font-family: monospace;
  margin-top: 2px;
}

.blog-card .blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #0040c1 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 64, 193, 0.3);
}

.blog-card .blog-author-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

/* ===== FEATURED ARTICLE CARD BODY (MISSING) ===== */
.featured-article-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 12px;
}

.featured-article-meta .dot {
  font-size: 10px;
}

@media (max-width: 900px) {
  .blog-search-bar { margin-top: 24px; }
}

/* ===== WORKS DETAIL GRID CARD LINK (MISSING) ===== */
.work-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.work-card-lg:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4);
}

.work-card-lg .work-card-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s ease;
}

.work-card-lg:hover .work-card-thumb {
  transform: scale(1.04);
}

.work-card-lg .work-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card-lg .work-client-tag {
  font-size: 11px;
  font-family: monospace;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.work-card-lg .work-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}

.work-card-lg .work-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.work-card-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  transition: gap 0.25s, color 0.2s;
  margin-top: auto;
}

.work-card-view-btn:hover {
  gap: 12px;
  color: var(--primary-light);
}

.work-card-view-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.work-card-lg:hover .work-card-view-btn svg {
  transform: translateX(3px);
}

/* ===== VALUE CARD NUMBER IMPROVED ===== */
.value-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 64, 193, 0.15);
}

.value-card:hover::after {
  opacity: 1;
}

.value-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 10px;
}

/* ===== ABOUT STORY GRID STATS IMPROVED ===== */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== FAQ CARD (contact page) IMPROVED ===== */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.faq-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

/* ===== CTA SECTION FORM (index.html) IMPROVED ===== */
.cta-form-box {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
}

.cta-input-field {
  flex: 1;
  min-width: 250px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-input-field:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.cta-input-field::placeholder {
  color: var(--text-3);
}

.cta-input-field.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  animation: inputShake 0.4s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.cta-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  color: #10b981;
  font-size: 15px;
  font-weight: 700;
  animation: successFadeIn 0.4s ease;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.cta-form-success svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ===== SUBPAGE HERO GLOW ===== */
.subpage-hero .hero-title-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  letter-spacing: 0.015em;
  transition: all 0.4s ease;
}

html.light .subpage-hero .hero-title-outline {
  -webkit-text-stroke: 1.5px var(--text);
}

/* ===== FILTER PILLS BAR (works page) — top spacing fix ===== */
.works-filter-bar {
  margin-bottom: 36px;
  margin-top: 0;
}

/* ===== ABOUT SECTION DIVIDER ===== */
.about-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, transparent 100%);
  border-radius: 100px;
  margin: 32px 0;
}

/* ===== TEAM CARD HOVER LIFT ===== */
.team-card:hover .team-avatar-box {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 64, 193, 0.4);
}

.team-avatar-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===== CAROUSEL PAGINATION DOTS (MISSING) ===== */
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: var(--text-3);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary-light);
  width: 24px;
  border-radius: 100px;
}

/* ===== CONTACT FORM GLASS VALIDATION STATES ===== */
.form-input.error,
.form-textarea.error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-input.success,
.form-textarea.success {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-error-msg {
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* ===== LOADING SPINNER FOR BUTTON ===== */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpinner 0.6s linear infinite;
}

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

/* ===== SCROLL PROGRESS BAR (MISSING) ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, #3b82f6 100%);
  z-index: 200;
  transition: width 0.1s linear;
  border-radius: 0 100px 100px 0;
}

/* ===== WORKS CARD — FEATURED HIGHLIGHT ===== */
.work-card-lg.featured-case {
  grid-column: 1 / -1;
  flex-direction: row;
  cursor: default;
}

.work-card-lg.featured-case .work-card-thumb {
  width: 50%;
  height: auto;
  min-height: 320px;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

.work-card-lg.featured-case .work-card-body {
  padding: 40px;
  justify-content: center;
}

.work-card-lg.featured-case .work-card-title {
  font-size: 28px;
}

@media (max-width: 768px) {
  .work-card-lg.featured-case {
    flex-direction: column;
  }
  .work-card-lg.featured-case .work-card-thumb {
    width: 100%;
    height: 220px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ===== SUBPAGE CTA — NO REPEATED CTA ===== */
.cta-section + .footer-main {
  border-top: none;
}

/* ===== ABOUT PAGE VALUE GRID ===== */
.about-values-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.about-team-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-story-grid > div:first-child h2 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
}

/* ===== CONTACT FORM RESPONSIVE GRID ===== */
.contact-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .contact-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== RADIO PILL GROUP WRAP ===== */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ===== CONTACT FAQ CARD IMPROVED ===== */
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

/* ===== NEWSLETTER BOX RESPONSIVE ===== */
@media (max-width: 768px) {
  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  .newsletter-form .form-input {
    min-width: unset;
    width: 100%;
  }
  .newsletter-form .btn-primary-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ===== FEATURED ARTICLE RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-article-card {
    display: flex;
    flex-direction: column;
  }

  .featured-article-thumb {
    min-height: 200px;
    border-radius: 16px 16px 0 0;
  }
}

@media (max-width: 480px) {
  .featured-article-card .featured-article-body {
    padding: 0;
  }
}

/* ===== SCROLL PROGRESS BAR POSITION ===== */
body {
  padding-top: 0;
}

/* ===== TEAM SECTION BACKGROUND FIX ===== */
.team-section-wrapper {
  background: var(--bg);
}

/* ===== SECTION TRANSITION DIVIDER ===== */
.section-divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
  margin: 0;
}

/* ===== ENGAGEMENT GRID SPACING ===== */
.engagement-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

/* ===== METRIC BADGE POSITION FIX ===== */
.work-card-body {
  position: relative;
}

/* ===== SUBPAGE HERO BREADCRUMB + HEADER SPACING ===== */
.subpage-header-box {
  max-width: 860px;
  padding-top: 8px;
}

.subpage-header-box + * {
  margin-top: 40px;
}

/* ===== BLOG FEATURED META ROW ===== */
.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 12px;
}

.featured-meta-row .dot {
  font-size: 10px;
  color: var(--text-3);
}

/* ===== CONTACT CHANNEL CARD LINK HOVER ===== */
.contact-channel-card a {
  transition: color 0.2s;
}

.contact-channel-card a:hover {
  color: var(--primary-light) !important;
}

/* ===== SUBPAGE HERO NO REPEAT PATTERN ===== */
.subpage-hero::before {
  content: none;
}

/* ===== FAQ CARD EXPAND ICON ===== */
.faq-card .faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary-light);
  margin-left: auto;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-card.faq-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-card .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.faq-card.faq-open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ===== NAV SOCIALS ICONS — PROPER FILL ===== */
.nav-socials svg {
  fill: currentColor;
}

/* ===== CONTACT FORM SUCCESS OVERLAY ===== */
.form-success-banner {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  margin-bottom: 20px;
  animation: successFadeIn 0.4s ease;
}

.form-success-banner.visible {
  display: flex;
}

.form-success-banner svg {
  width: 24px;
  height: 24px;
  stroke: #10b981;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.form-success-banner-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 2px;
}

.form-success-banner-text p {
  font-size: 13px;
  color: var(--text-2);
}

/* ===== FILTER CONTENT TOGGLE (works/blog) ===== */
.filter-content-section {
  transition: opacity 0.3s ease;
}

.filter-content-section.filtering {
  opacity: 0.4;
  pointer-events: none;
}

/* ===== NO RESULTS STATE ===== */
.no-results-msg {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-2);
}

.no-results-msg.visible {
  display: block;
}

.no-results-msg h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.no-results-msg p {
  font-size: 14px;
  color: var(--text-2);
}

/* ===== MOBILE FIX — NAV SOCIALS ===== */
@media (max-width: 1100px) {
  .nav-socials { display: none; }
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 640px) {
  .nav-header { padding: 8px 12px; }
  .nav-header .btn-primary-pill { display: none; }
}

/* ===== ADVANCED SUBPAGE HERO ===== */
.subpage-hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 64, 193, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 20% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

/* ===== ENHANCED SECTION KICKER ===== */
.section-kicker {
  position: relative;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 16px;
  background: var(--primary-light);
  border-radius: 100px;
}

/* ===== SUBPAGE HEADER BOX ===== */
.subpage-header-box {
  max-width: 860px;
}

.subpage-header-box .section-kicker {
  margin-bottom: 16px;
  display: block;
}

.subpage-title {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.subpage-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 620px;
}

/* ===== ENHANCED BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: var(--text-3);
  transition: color 0.2s;
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs .separator {
  font-size: 10px;
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text-2);
  font-weight: 600;
}

/* ===== ENHANCED VALUE CARD (STATS) ===== */
.value-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), rgba(59, 130, 246, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.value-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.value-card:hover::before {
  opacity: 1;
}

.value-number {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  display: block;
}

/* ===== ENHANCED ABOUT STORY GRID ===== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== TEAM GRID 4 ===== */
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .team-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .team-grid-4 { grid-template-columns: 1fr; gap: 20px; }
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.team-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card:hover::after {
  opacity: 1;
}

.team-avatar-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #0040c1 100%);
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.team-card:hover .team-avatar-box {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.45);
}

.team-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.team-role {
  font-size: 11px;
  font-family: monospace;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.team-bio {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* ===== ENHANCED BLOG CARD ===== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.blog-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}

.blog-card-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb {
  transform: scale(1.06);
}

.blog-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(9, 9, 11, 0.4) 100%);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-card-meta .dot {
  color: var(--text-3);
  font-size: 10px;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: rgba(0, 64, 193, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
  transition: color 0.2s;
  flex-shrink: 0;
}

.blog-card:hover .blog-card-title {
  color: var(--primary-light);
}

.blog-card-snippet {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-author-role {
  font-size: 11px;
  color: var(--text-3);
  font-family: monospace;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  margin-top: 16px;
  transition: gap 0.25s, color 0.2s;
  align-self: flex-start;
}

.blog-read-more:hover {
  gap: 10px;
  color: var(--primary-light);
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.blog-card:hover .blog-read-more svg {
  transform: translateX(3px);
}

/* ===== ENHANCED WORK CARD (LANDING PAGES) ===== */
.work-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.work-card-lg:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}

.work-card-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.work-card-lg:hover .work-card-thumb {
  transform: scale(1.05);
}

.work-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(9, 9, 11, 0.6) 100%);
  transition: opacity 0.3s;
}

.work-card-lg:hover .work-card-thumb::after {
  opacity: 0.7;
}

.work-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-client-tag {
  font-size: 11px;
  font-family: monospace;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
}

.work-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.2s;
}

.work-card-lg:hover .work-card-title {
  color: var(--primary-light);
}

.work-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-card-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  transition: gap 0.25s, color 0.2s;
  margin-top: auto;
  align-self: flex-start;
}

.work-card-view-btn:hover {
  gap: 12px;
  color: var(--primary-light);
}

.work-card-view-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s;
}

.work-card-lg:hover .work-card-view-btn svg {
  transform: translateX(3px);
}

/* ===== FEATURED CASE STUDY (WORKS) ===== */
.work-card-lg.featured-case {
  grid-column: 1 / -1;
  flex-direction: row;
  border-color: rgba(0, 64, 193, 0.25);
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.05) 0%, var(--bg-card) 100%);
}

.work-card-lg.featured-case .work-card-thumb {
  width: 55%;
  height: auto;
  min-height: 380px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  border-bottom: none;
  border-radius: 0;
}

.work-card-lg.featured-case .work-card-body {
  padding: 48px;
  justify-content: center;
}

.work-card-lg.featured-case .work-card-title {
  font-size: 30px;
}

@media (max-width: 900px) {
  .work-card-lg.featured-case {
    flex-direction: column;
  }
  .work-card-lg.featured-case .work-card-thumb {
    width: 100%;
    min-height: 240px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .work-card-lg.featured-case .work-card-body {
    padding: 28px;
  }
  .work-card-lg.featured-case .work-card-title {
    font-size: 22px;
  }
}

/* ===== METRIC BADGE ===== */
.metric-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

/* ===== FORM INPUT ENHANCEMENTS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  display: block;
}

html.light .form-input,
html.light .form-textarea {
  background: rgba(0, 0, 0, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-3);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: rgba(0, 64, 193, 0.04);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
  animation: inputShake 0.4s ease;
}

.form-input.success,
.form-textarea.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  border-radius: 12px;
}

/* ===== RADIO PILL GROUP ===== */
.radio-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.radio-pill-item {
  position: relative;
  cursor: pointer;
}

.radio-pill-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.25s ease;
  white-space: nowrap;
}

html.light .radio-pill-label {
  background: rgba(0, 0, 0, 0.04);
}

.radio-pill-item:hover .radio-pill-label {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--text);
  background: rgba(0, 64, 193, 0.06);
}

.radio-pill-item input[type="radio"]:checked + .radio-pill-label {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 64, 193, 0.3);
}

/* ===== FILTER PILLS BAR ===== */
.filter-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-pill {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--text);
  background: rgba(0, 64, 193, 0.06);
}

.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 64, 193, 0.3);
}

/* ===== NEWSLETTER BOX ===== */
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.08) 0%, rgba(24, 24, 27, 0.6) 100%);
  border: 1px solid rgba(0, 64, 193, 0.15);
  border-radius: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

/* ===== FAQ CARD (CONTACT PAGE) ===== */
.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--primary-light);
}

.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
}

.faq-card.faq-open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ===== SECTION DIVIDER GLOW ===== */
.section-divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
}

/* ===== ABOUT VALUES / TEAM SECTION BACKGROUNDS ===== */
.about-values-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.about-team-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* ===== CTA SECTION TOP LINE ===== */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, #3b82f6 50%, rgba(16, 185, 129, 0.7) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 100px 100px 0;
  pointer-events: none;
}

/* ===== CTA SUCCESS ===== */
.cta-form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  color: #10b981;
  font-size: 15px;
  font-weight: 700;
  animation: successFadeIn 0.4s ease;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.cta-form-success svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ===== BUTTON LOADING SPINNER ===== */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btnSpinner 0.6s linear infinite;
}

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

/* ===== FORM SUCCESS BANNER ===== */
.form-success-banner {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  margin-bottom: 20px;
  animation: successFadeIn 0.4s ease;
}

.form-success-banner.visible {
  display: flex;
}

.form-success-banner svg {
  width: 24px;
  height: 24px;
  stroke: #10b981;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success-banner-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 4px;
}

.form-success-banner-text p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* ===== FORM ERROR MSG ===== */
.form-error-msg {
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.form-error-msg.visible {
  display: block;
}

/* ===== CONTACT FAQ GRID ===== */
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* ===== FAQ CARD (CONTACT PAGE) ===== */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  cursor: default;
}

.faq-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-3px);
}

/* ===== NO RESULTS MSG ===== */
.no-results-msg {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-2);
  grid-column: 1 / -1;
}

.no-results-msg.visible {
  display: block;
}

.no-results-msg h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.no-results-msg p {
  font-size: 14px;
  color: var(--text-2);
}

/* ===== CAROUSEL PAGINATION ===== */
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot:hover {
  background: var(--text-3);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary-light);
  width: 24px;
  border-radius: 100px;
}

/* ===== HERO TITLE OUTLINE (SUBPAGE) ===== */
.hero-title-outline {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
  letter-spacing: 0.015em;
  transition: all 0.4s ease;
}

html.light .hero-title-outline {
  -webkit-text-stroke: 1.5px var(--text);
}

/* ===== SERVICE TAG LIST ===== */
.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

/* ===== RESPONSIVE CONTACT FORM ===== */
.contact-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .contact-form-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== RESPONSIVE NEWSLETTER ===== */
@media (max-width: 768px) {
  .newsletter-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  .newsletter-form .form-input {
    min-width: unset;
    width: 100%;
  }
  .newsletter-form .btn-primary-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ===== TEAM SECTION WRAPPER ===== */
.team-section-wrapper {
  background: var(--bg);
}

/* ===== WORKS FILTER BAR SPACING ===== */
.works-filter-bar {
  margin-bottom: 36px;
}

/* ===== SILKY SMOOTH REVEALS (APPLE / FRAMER ULTRA-PRO) ===== */
.fade-up {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.4s; }

/* ===== SILKY SMOOTH CARD HOVER MICRO-INTERACTIONS ===== */
.why-card,
.engage-card,
.value-card,
.methodology-card,
.engagement-card,
.contact-channel-card,
.stat-glow-card,
.work-card-inner,
.b2b-market-card,
.process-step-card-pro,
.blog-card {
  will-change: transform, border-color, box-shadow;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover,
.engage-card:hover,
.value-card:hover,
.methodology-card:hover,
.engagement-card:hover,
.contact-channel-card:hover,
.b2b-market-card:hover {
  transform: translate3d(0, -4px, 0);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 16px 36px -10px rgba(0, 64, 193, 0.25),
              0 0 25px rgba(59, 130, 246, 0.12);
}

/* ===== MOBILE FINE-TUNING ===== */
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .cta-section { padding: 96px 20px; }
  .hero-glow-bg { width: 560px; height: 400px; filter: blur(60px); }
  .hero-scroll-down { bottom: 16px; }
  .carousel-controls { justify-content: center; }
  .hero-specs-grid { gap: 20px; }
  .work-overlay-content { padding: 24px; }
}

@media (max-width: 400px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary-pill,
  .hero-cta-group .btn-outline-pill { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
  .hero-title-line,
  .hero-title-outline,
  .hero-title-italic { opacity: 1; }
}

/* ===== SUBPAGE COMMON STYLES ===== */
.subpage-hero {
  position: relative;
  padding: 130px 0 50px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 64, 193, 0.18) 0%, rgba(9, 9, 11, 0) 75%),
              radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

html.light .subpage-hero {
  background: radial-gradient(circle at 50% 0%, rgba(0, 64, 193, 0.1) 0%, rgba(255, 255, 255, 0) 75%),
              radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--text-2);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs .separator {
  color: var(--text-3);
  font-size: 10px;
}

.breadcrumbs .current {
  color: var(--primary-light);
  font-weight: 700;
}

.subpage-header-box {
  max-width: 860px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.section-kicker::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.subpage-title {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  margin-bottom: 18px;
  color: var(--text);
  text-transform: uppercase;
}

.subpage-title .italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--text-2);
}

.subpage-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.6;
  max-width: 760px;
  font-weight: 400;
}

/* Service Detail Cards Grid */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-lg:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 64, 193, 0.15);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 64, 193, 0.15);
  border: 1px solid var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-light);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  font-size: 12px;
  font-family: monospace;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
}

/* About & Story Grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.value-number {
  font-family: 'Bebas Neue', monospace;
  font-size: 32px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

/* Works Detail Grid */
.works-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.work-card-lg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.work-card-lg:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.work-card-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.work-card-body {
  padding: 28px;
}

.work-client-tag {
  font-size: 11px;
  font-family: monospace;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.work-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 64, 193, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-form-full {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

html.light .form-input,
html.light .form-textarea,
html.light .form-select {
  background: #ffffff;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-light);
}

/* Select control: hide native arrow, use a themed chevron */
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-select:invalid {
  color: var(--text-3);
}

.form-select option {
  background: #17171e;
  color: var(--text);
}

html.light .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

html.light .form-select option {
  background: #ffffff;
  color: var(--text);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.blog-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-family: monospace;
  color: var(--text-3);
  margin-bottom: 16px;
}

.blog-badge {
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 64, 193, 0.2);
  color: var(--primary-light);
  font-weight: 600;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-summary {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* Subpage Filter Pills & UI UX Enhancements */
.filter-pills-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.filter-pills-bar::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 64, 193, 0.35);
}

/* Metric Badges — Green variant for Services page */
.metric-badge--green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-size: 12px;
  font-weight: 700;
}

/* Methodology Grid */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.methodology-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.methodology-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.methodology-step {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
}

/* Tech Stack Badges Grid */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.tech-badge-item {
  padding: 16px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-badge-item:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

.tech-badge-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.tech-badge-category {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Guarantee Badge for Contact */
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px dashed var(--primary-light);
  border-radius: 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

/* Newsletter Box */
.newsletter-box {
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.15) 0%, rgba(9, 9, 11, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Luxury Service Page Component Enhancements */
.service-anchor-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.anchor-pill {
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.25s ease;
  text-decoration: none;
}

.anchor-pill:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--primary-light);
  color: var(--text);
}

.service-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-luxury:hover {
  border-color: var(--primary-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0, 64, 193, 0.2);
}

.service-card-luxury:hover::before {
  opacity: 1;
}

.engagement-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.engagement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.engagement-card.featured-model {
  border-color: var(--primary-light);
  background: linear-gradient(180deg, rgba(0, 64, 193, 0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 12px 36px rgba(0, 64, 193, 0.18);
}

.engagement-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.engagement-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}


.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  margin-bottom: 24px;
}

.contact-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  animation: pulse 2s infinite;
}

.contact-status-text {
  font-size: 13px;
  font-weight: 700;
  color: #10b981;
}

.contact-channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
}

.contact-channel-card:hover {
  border-color: var(--primary-light);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.contact-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.contact-channel-card:hover .contact-channel-icon {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.35);
  transform: scale(1.08) rotate(4deg);
}

.contact-channel-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

html.dark .contact-form-glass {
  background: rgba(18, 18, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.service-select-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
}

.service-select-btn.active,
.service-select-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--primary-light);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}


.blog-search-input {
  flex: 1;
  min-width: 260px;
  padding: 12px 20px 12px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
}

.blog-search-input:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}

.featured-article-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 48px;
  transition: all 0.35s ease;
  overflow: hidden;
}

@media (max-width: 900px) {
  .featured-article-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.featured-article-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 16px 48px rgba(0, 64, 193, 0.2);
  transform: translateY(-4px);
}

.featured-article-thumb {
  border-radius: 16px;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 64, 193, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.blog-author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 64, 193, 0.3);
}

.blog-author-info {
  display: flex;
  flex-direction: column;
}

.blog-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

/* Team Grid & Culture Banner */
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 64, 193, 0.15);
}

.team-avatar-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 64, 193, 0.3);
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Contact Radio Service Pills & FAQ Accordion */
.radio-pill-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.radio-pill-item {
  position: relative;
  display: flex;
}

.radio-pill-budget {
  display: flex;
}

.radio-pill-budget .radio-pill-item {
  flex: 1;
}

.radio-pill-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-pill-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  color: var(--text-2);
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.radio-pill-item input[type="radio"]:checked + .radio-pill-label,
.radio-pill-label:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* ── Contact page polish ─────────────────────────────── */
.contact-content-section {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 64px;
}

.contact-hero-tag { margin-bottom: 18px; }

.contact-section-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.channel-body { min-width: 0; }

.channel-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.channel-value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.25s ease;
}

a.channel-value { color: var(--primary-light); }
a.channel-value:hover { color: #ffffff; }
html.light a.channel-value { color: var(--primary); }
html.light a.channel-value:hover { opacity: 0.85; }

.channel-loc {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.channel-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.contact-trust-box {
  margin-top: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(0, 64, 193, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.contact-trust-item span { font-weight: 700; color: var(--text); }

.contact-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-trust-icon svg { width: 16px; height: 16px; }

.contact-form-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-form-subtitle {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 15px;
  border-radius: 14px;
  margin-top: 8px;
}

.form-privacy-note {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.contact-faq-section {
  background: var(--bg-soft);
  padding: 96px 0;
}

.faq-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.faq-title { font-size: clamp(2rem, 4vw, 3rem); }

.faq-subtitle {
  color: var(--text-2);
  margin-top: 12px;
  font-size: 15px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s;
}

.faq-card:hover {
  border-color: var(--border-hover);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-q::before {
  content: 'Q.';
  color: var(--primary-light);
  font-weight: 900;
}

.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================
   SERVICES PRO PAGE STYLES
   ============================================ */

/* Ambient Background */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 64, 193, 0.3) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  bottom: 20%;
  left: -5%;
  animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.floating-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border: 1px solid rgba(59, 130, 246, 0.1);
  animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 40%;
  right: 15%;
  animation-delay: 3s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  border-radius: 30px;
  bottom: 30%;
  left: 20%;
  animation-delay: 6s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  bottom: 20%;
  right: 25%;
  animation-delay: 9s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

/* Hero Services Section */
.hero-services {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(59, 130, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 64, 193, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%, 100% 100%;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 20%, transparent 80%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(147, 197, 253, 0.55) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(167, 139, 250, 0.4) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(147, 197, 253, 0.32) 1px, transparent 1.6px);
  background-size: 180px 180px, 260px 260px, 340px 340px;
  background-position: 0 0, 42px 64px, 96px 18px;
  opacity: 0.55;
  animation: particlesDrift 48s linear infinite;
  pointer-events: none;
}

@keyframes particlesDrift {
  from { background-position: 0 0, 42px 64px, 96px 18px; }
  to { background-position: 180px 180px, 302px 324px, 436px 358px; }
}

/* Floating ambient gradient blobs — slow drift for background depth */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-1 {
  width: 440px;
  height: 440px;
  top: -140px;
  left: -80px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.55), transparent 65%);
  animation: blobDrift1 26s ease-in-out infinite alternate;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -160px;
  right: -60px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.42), transparent 65%);
  animation: blobDrift2 34s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(44px, 64px, 0) scale(1.12); }
}

@keyframes blobDrift2 {
  from { transform: translate3d(0, 0, 0) scale(1.06); }
  to { transform: translate3d(-52px, -44px, 0) scale(0.94); }
}

/* Soft breathing aura — one calm, top-center glow that slowly pulses */
.hero-glow {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 460px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.32) 0%, rgba(0, 64, 193, 0.12) 45%, transparent 72%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: heroGlowBreathe 9s ease-in-out infinite alternate;
}

@keyframes heroGlowBreathe {
  from { opacity: 0.55; transform: translateX(-50%) scale(1); }
  to   { opacity: 0.95; transform: translateX(-50%) scale(1.08); }
}

html.light .hero-glow {
  background: radial-gradient(circle, rgba(0, 64, 193, 0.10) 0%, rgba(59, 130, 246, 0.05) 45%, transparent 72%);
}

.hero-services .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-services .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    margin-top: 56px;
  }
  .hero-trust {
    justify-content: center;
  }
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
  letter-spacing: 0.04em;
}

html.light .hero-title-outline {
  -webkit-text-stroke: 2px var(--text);
}

.hero-title-italic {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  color: var(--primary-light);
  text-transform: none;
  letter-spacing: 0.01em;
  -webkit-text-stroke: 0;
  margin-top: 8px;
}

/* Title line staggered reveal */
.hero-title-line,
.hero-title-outline,
.hero-title-italic {
  opacity: 0;
}

.hero-title.visible .hero-title-line { animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards; }
.hero-title.visible .hero-title-outline { animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.hero-title.visible .hero-title-italic { animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards; }

@keyframes heroLineReveal {
  from { opacity: 0; transform: translate3d(0, 32px, 0); filter: blur(8px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

.hero-description {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .hero-description { margin: 0 auto 36px; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-actions { justify-content: center; }
}

.btn-primary-gradient {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(0, 64, 193, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.5);
}

.btn-primary-gradient:hover::after {
  transform: translateX(130%);
}

.btn-primary-gradient svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-primary-gradient:hover svg {
  transform: translateX(4px);
}

.btn-primary-gradient:focus-visible,
.btn-secondary-ghost:focus-visible,
.node-content:focus-visible {
  outline: 2px solid var(--primary-light);
  outline-offset: 3px;
}

.btn-secondary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.btn-secondary-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
}

.btn-secondary-ghost svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-secondary-ghost:hover svg {
  transform: translateX(4px);
}

/* Hero Visual — Circular Tech Orbit System */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orbit-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0, 64, 193, 0.1) 35%, transparent 70%);
  filter: blur(44px);
  z-index: 0;
  animation: orbitGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbitGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-orbit-container {
  position: relative;
  z-index: 1;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Core */
.orbit-center-core {
  position: absolute;
  z-index: 10;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(30, 30, 45, 0.95), rgba(10, 10, 15, 0.95));
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 35px rgba(0, 64, 193, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.core-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.3);
  animation: corePulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.95); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.core-logo svg {
  width: 28px;
  height: 28px;
  stroke: #3b82f6;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8));
}

.core-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-top: 4px;
}

/* Rotating Orbit System Ring */
.orbit-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
  animation: orbitRotate 35s linear infinite;
  z-index: 5;
}

.orbit-ring:hover {
  animation-play-state: paused;
}

.orbit-ring:hover .node-content {
  animation-play-state: paused;
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbit Node Positioning */
.orbit-node {
  position: absolute;
  width: 0;
  height: 0;
}

/* Node Positions on 380px Circle */
.node-1 { top: 0%; left: 50%; }                  /* 0 deg - Top */
.node-2 { top: 28%; left: 95%; }                 /* 72 deg - Top Right */
.node-3 { top: 78%; left: 80%; }                 /* 144 deg - Bottom Right */
.node-4 { top: 78%; left: 20%; }                 /* 216 deg - Bottom Left */
.node-5 { top: 28%; left: 5%; }                  /* 288 deg - Top Left */

/* Node Content with Counter Rotation */
.node-content {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(18, 18, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  animation: orbitCounterRotate 35s linear infinite;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.node-content:hover {
  /* Use the independent `scale` property so the counter-rotation animation's
     transform is never overridden — the node grows in place without jumping. */
  scale: 1.08;
  border-color: var(--primary-light);
  box-shadow: 0 14px 35px rgba(0, 64, 193, 0.4), 0 0 20px rgba(59, 130, 246, 0.3);
  z-index: 20;
}

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

.node-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 64, 193, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.node-icon svg {
  width: 16px;
  height: 16px;
  stroke: #3b82f6;
}

.node-icon.ai { background: rgba(139, 92, 246, 0.2); border-color: rgba(167, 139, 250, 0.3); }
.node-icon.ai svg { stroke: #a78bfa; }

.node-icon.backend { background: rgba(16, 185, 129, 0.2); border-color: rgba(52, 211, 153, 0.3); }
.node-icon.backend svg { stroke: #34d399; }

.node-icon.mobile { background: rgba(245, 158, 11, 0.2); border-color: rgba(251, 191, 36, 0.3); }
.node-icon.mobile svg { stroke: #fbbf24; }

.node-icon.cloud { background: rgba(6, 182, 212, 0.2); border-color: rgba(34, 211, 238, 0.3); }
.node-icon.cloud svg { stroke: #22d3ee; }

.node-content span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Hero Orbit System Mobile Responsiveness */
@media (max-width: 640px) {
  .hero-visual {
    display: none;
  }

  .hero-orbit-container {
    width: 320px;
    height: 320px;
    margin: 20px auto 0;
  }

  .orbit-ring {
    width: 270px;
    height: 270px;
  }

  .orbit-center-core {
    width: 88px;
    height: 88px;
  }

  .orbit-center-core .core-text {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .node-content {
    padding: 6px 12px;
  }

  .node-content span {
    font-size: 11px;
  }

  .node-icon {
    width: 24px;
    height: 24px;
  }

  .node-icon svg {
    width: 13px;
    height: 13px;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* Trust micro-row (under hero CTAs) */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* Capability pills — mobile-only replacement for the orbit visual */
.hero-capabilities {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.hero-capabilities span {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .hero-capabilities { display: flex; }
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-divider { display: none; }
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  display: inline;
}

.stat-plus, .stat-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary-light);
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Services Pro Section */
.services-pro-section {
  padding: 120px 0;
  position: relative;
}

.section-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 64, 193, 0.1), transparent);
  height: 1px;
}

.deco-line-1 {
  top: 100px;
  left: 0;
  right: 0;
}

.deco-line-2 {
  bottom: 100px;
  left: 0;
  right: 0;
}

.section-header-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-header-pro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.tag-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text-3);
}

.section-title-pro {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title-pro.center { text-align: center; }

.title-thin {
  display: block;
  color: var(--text-2);
  font-size: 0.6em;
}

.title-bold {
  display: block;
  color: var(--text);
  -webkit-text-stroke: 1px var(--text);
}

.section-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
}

.section-desc.center {
  margin: 0 auto;
  text-align: center;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

/* Services Masonry */
.services-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .services-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-masonry {
    grid-template-columns: 1fr;
  }
  .service-card-pro {
    min-height: 0;
  }
}

.service-card-pro {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
  transition: left 0.6s ease;
}

.service-card-pro:hover::before {
  left: 100%;
}

.service-card-pro:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 64, 193, 0.3), 0 0 30px rgba(59, 130, 246, 0.15);
  background: rgba(22, 22, 30, 0.95);
}

.service-card-main {
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.15) 0%, rgba(18, 18, 24, 0.9) 60%);
}

.card-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 64, 193, 0.2);
}

.service-card-pro:hover .card-icon-large {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 64, 193, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-icon-large svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-light);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.service-card-pro:hover .card-icon-large svg {
  stroke: #ffffff;
}

.card-badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}

.badge-primary {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.badge-ai {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #c084fc;
}

.badge-mobile {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fcd34d;
}

.badge-design {
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(244, 114, 182, 0.3);
  color: #f472b6;
}

.badge-cloud {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: #38bdf8;
}

.badge-seo {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.card-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  margin-bottom: 20px;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 8px;
}

.card-features svg {
  width: 16px;
  height: 16px;
  stroke: #10b981;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.3s ease;
}

.service-card-pro:hover .tech-pill {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
  color: var(--text);
}

.card-metric {
  position: absolute;
  bottom: 24px;
  right: 24px;
  text-align: right;
}

.metric-value {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--primary-light);
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Explore link — pinned to the card bottom so every card aligns */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.card-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

html.light .card-link {
  color: var(--primary);
}

html.light .card-link:hover {
  opacity: 0.85;
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 50%, #10b981 100%);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

@media (max-width: 640px) {
  .timeline-line { left: 24px; }
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

@media (max-width: 640px) {
  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--primary-light);
  line-height: 1;
  text-align: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 18, 24, 0.9);
  border: 2px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 64, 193, 0.3);
  margin: 0 auto;
}

@media (max-width: 640px) {
  .step-number { width: 40px; height: 40px; font-size: 28px; }
}

.step-content {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
  border-left: 3px solid var(--primary-light);
}

.step-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.step-tags span {
  padding: 5px 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 12px;
  color: #60a5fa;
  font-weight: 600;
}

/* Why Section */
.why-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.why-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 64, 193, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.why-content .section-title-pro {
  margin-bottom: 20px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .why-cards { grid-template-columns: 1fr; }
}

.why-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
  background: rgba(22, 22, 30, 0.95);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-light);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.why-card:hover .why-icon svg {
  stroke: #ffffff;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.mt-32 { margin-top: 32px; }

/* Engagement Pro Section */
.engagement-pro-section {
  padding: 120px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.engagement-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .engagement-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.engage-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.engage-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 64, 193, 0.3);
}

.engage-featured {
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(160deg, rgba(0, 64, 193, 0.18) 0%, rgba(18, 18, 24, 0.95) 60%);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
}

.engage-header {
  margin-bottom: 16px;
}

.engage-badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0, 64, 193, 0.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.badge-featured {
  background: rgba(0, 64, 193, 0.2);
}

.engage-header h3 {
  font-size: 22px;
  font-weight: 800;
}

.engage-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.engage-features {
  list-style: none;
  margin-bottom: 24px;
}

.engage-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
}

.engage-features svg {
  width: 16px;
  height: 16px;
  stroke: #10b981;
  stroke-width: 2.5;
  fill: none;
}

.engage-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all 0.3s ease;
  text-decoration: none;
}

.engage-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.cta-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: #ffffff;
}

.cta-featured:hover {
  box-shadow: 0 8px 24px rgba(0, 64, 193, 0.4);
}

/* ────────────────────────────────────────────────────────────
   Services page refinement (body.page-services)
   Slimmer hero + tighter stats & sections — the /services hub
   should feel proportionate, not full-viewport & oversized.
   Scoped to the services page so the homepage stays untouched.
   ──────────────────────────────────────────────────────────── */
body.page-services .hero-services {
  min-height: 0;
  padding: 128px 0 64px;
}

@media (min-width: 1025px) {
  body.page-services .hero-services .container {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 48px;
  }
}

body.page-services .hero-badge {
  margin-bottom: 20px;
}

body.page-services .hero-title {
  font-size: clamp(3rem, 6.2vw, 4.8rem);
  margin-bottom: 20px;
}

body.page-services .hero-description {
  font-size: 17px;
  margin-bottom: 30px;
}

/* Stats band — contained glass panel, units inline with the number */
body.page-services .stats-section {
  padding: 24px 0 72px;
  background: transparent;
  border: none;
}

body.page-services .stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 30px 10px;
  background: rgba(18, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

body.page-services .stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

body.page-services .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 6px 16px;
}

body.page-services .stat-figure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

body.page-services .stat-number {
  font-size: clamp(2.3rem, 3.8vw, 3.1rem);
  line-height: 1;
  color: var(--text);
}

body.page-services .stat-plus,
body.page-services .stat-suffix {
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1;
  color: var(--primary-light);
}

body.page-services .stat-label {
  margin-top: 0;
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.page-services .stat-divider {
  height: 52px;
  align-self: center;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  border: none;
}

@media (max-width: 768px) {
  body.page-services .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
    padding: 26px 16px;
  }
  body.page-services .stat-divider {
    display: none;
  }
}

/* light theme: flip the panel to white glass */
html.light body.page-services .stats-grid {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

html.light body.page-services .stat-divider {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* Section headers & titles */
body.page-services .section-header-pro {
  gap: 48px;
  margin-bottom: 44px;
}

body.page-services .section-header-center {
  margin-bottom: 44px;
}

body.page-services .section-title-pro {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

/* Services grid */
body.page-services .services-pro-section {
  padding: 96px 0;
}

body.page-services .services-masonry {
  gap: 20px;
}

body.page-services .service-card-pro {
  min-height: 420px;
  padding: 28px;
  border-radius: 24px;
}

@media (max-width: 640px) {
  body.page-services .service-card-pro {
    min-height: 0;
  }
}

body.page-services .card-header {
  margin-bottom: 16px;
}

body.page-services .card-icon-large {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

body.page-services .card-title {
  font-size: 22px;
  margin-bottom: 10px;
}

body.page-services .card-text {
  margin-bottom: 16px;
}

body.page-services .card-features {
  margin-bottom: 16px;
}

body.page-services .card-metric {
  bottom: 20px;
  right: 20px;
}

body.page-services .metric-value {
  font-size: 32px;
}

body.page-services .card-link {
  padding-top: 16px;
}

/* Process */
body.page-services .process-section {
  padding: 96px 0;
}

body.page-services .process-step {
  margin-bottom: 36px;
}

body.page-services .step-number {
  width: 46px;
  height: 46px;
  font-size: 32px;
}

body.page-services .step-content {
  padding: 24px;
  border-radius: 18px;
}

body.page-services .step-title {
  font-size: 20px;
  margin-bottom: 8px;
}

/* Why us */
body.page-services .why-section {
  padding: 96px 0;
}

body.page-services .why-grid {
  gap: 64px;
}

body.page-services .why-card {
  padding: 24px;
}

body.page-services .why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 14px;
}

body.page-services .why-icon svg {
  width: 22px;
  height: 22px;
}

body.page-services .why-card h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

/* Engagement */
body.page-services .engagement-pro-section {
  padding: 96px 0;
}

body.page-services .engagement-cards {
  gap: 20px;
}

body.page-services .engage-card {
  padding: 28px;
  border-radius: 20px;
}

body.page-services .engage-header h3 {
  font-size: 20px;
}

body.page-services .engage-desc {
  margin-bottom: 16px;
}

body.page-services .engage-features {
  margin-bottom: 20px;
}

body.page-services .engage-cta {
  padding: 12px 20px;
}

/* CTA Pro Section */
.cta-pro-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 64, 193, 0.3) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-content-pro {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title-pro {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-line {
  display: block;
  color: var(--text);
}

.cta-line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
  letter-spacing: 0.04em;
}

html.light .cta-line-outline {
  -webkit-text-stroke: 2px var(--text);
}

.cta-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-actions-pro {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* About Page Redesign Styles */
.global-markets-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.market-tag {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.market-tag:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  transform: translateY(-2px);
}

.about-story-section {
  padding: 100px 0;
  position: relative;
}

.manifesto-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 64, 193, 0.2);
}

.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
}

.manifesto-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 20px;
}

.manifesto-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.manifesto-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sig-name {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.sig-title {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-glow-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.stat-glow-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
}

.stat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stat-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--primary-light);
  line-height: 1;
}

.stat-card-icon {
  font-size: 24px;
}

.stat-glow-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-glow-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.values-grid-pro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .values-grid-pro {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .values-grid-pro {
    grid-template-columns: 1fr;
  }
}

.value-card-pro {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.value-card-pro:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
}

.value-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--text-3);
  position: absolute;
  top: 24px;
  right: 24px;
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.3) 0%, rgba(59, 130, 246, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-light);
}

.value-card-pro h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-card-pro p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.value-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.value-tech-pills span {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
}

.global-delivery-section {
  padding: 80px 0;
}

.global-delivery-card {
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.15) 0%, rgba(18, 18, 24, 0.9) 60%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 28px;
  padding: 48px;
  backdrop-filter: blur(20px);
}

.delivery-header {
  margin-bottom: 36px;
}

.delivery-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 12px;
}

.delivery-header p {
  color: var(--text-2);
  max-width: 640px;
  font-size: 15px;
  line-height: 1.6;
}

.delivery-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .delivery-features-grid {
    grid-template-columns: 1fr;
  }
}

.delivery-feature {
  display: flex;
  gap: 16px;
}

.feature-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-light);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--primary-light);
}

.delivery-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.delivery-feature p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.team-card-pro {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
  text-align: center;
}

.team-card-pro:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.25);
}

.team-avatar-pro {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.team-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
}

.team-card-pro .team-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-card-pro .team-role {
  font-size: 12px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-pro .team-bio {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.team-skills span {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 10px;
  color: var(--text-3);
}
/* Mobile Footer Accordion */
.footer-toggle-icon {
  display: none;
}

@media (max-width: 768px) {
  .footer-top h4.footer-nav-title,
  .footer-top .footer-info-item h4.footer-info-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 12px 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-toggle-icon {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-light);
    transition: transform 0.3s ease;
  }

  .footer-top div > .footer-nav-list,
  .footer-top div > .footer-nav-cols > .footer-nav-list,
  .footer-top .footer-info-item > .footer-info-text {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, margin 0.3s ease;
  }

  .footer-top div.footer-col-open > .footer-nav-list,
  .footer-top div.footer-col-open > .footer-nav-cols > .footer-nav-list,
  .footer-top .footer-info-item.footer-col-open > .footer-info-text {
    max-height: 300px;
    opacity: 1;
    margin-top: 12px;
  }
}

/* ===== SUB-SERVICE PAGE PRO UI/UX ENHANCEMENTS ===== */
.subpage-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tech-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

html.light .tech-badge-chip {
  background: rgba(0, 64, 193, 0.04);
  border-color: rgba(0, 64, 193, 0.12);
}

.tech-badge-chip:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  color: var(--primary-light);
}

/* Subpage Capability Cards Enhancement */
.services-subpage-grid .why-card {
  border-top: 2px solid var(--primary-light);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(11, 15, 25, 0.6) 100%);
}

html.light .services-subpage-grid .why-card {
  background: linear-gradient(180deg, rgba(0, 64, 193, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

/* Process Step Deliverables Tag */
.deliverable-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Accordion Open State Highlight */
.faq-accordion-item[open] {
  border-left: 4px solid var(--primary-light);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(11, 15, 25, 0.85);
}

html.light .faq-accordion-item[open] {
  background: rgba(255, 255, 255, 0.98);
}

/* CTA Trust Badges Row */
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-2);
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== SUBPAGE HERO GRID & TERMINAL WIDGET ===== */
.subpage-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-terminal-box {
  background: rgba(11, 15, 25, 0.92);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(59, 130, 246, 0.15);
  backdrop-filter: blur(20px);
  overflow: hidden;
  font-family: 'Space Mono', monospace;
}

html.light .hero-terminal-box {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 64, 193, 0.25);
  box-shadow: 0 20px 40px rgba(0, 64, 193, 0.12);
}

.terminal-header {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27c93f; }

.terminal-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 20px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-2);
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.terminal-line:last-child {
  margin-bottom: 0;
}

.terminal-key {
  color: var(--primary-light);
  font-weight: 700;
}

.terminal-val {
  color: var(--text);
  font-weight: 700;
}

.terminal-tag-success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

/* ===== COMPARISON MATRIX TABLE ===== */
.comparison-section {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.2);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 25, 0.6);
  backdrop-filter: blur(20px);
}

html.light .comparison-table-wrapper {
  background: rgba(255, 255, 255, 0.9);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

html.light .comparison-table th,
html.light .comparison-table td {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.comparison-table th {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table th.zedwp-col {
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.16);
  border-left: 1px solid rgba(59, 130, 246, 0.3);
  border-right: 1px solid rgba(59, 130, 246, 0.3);
}

.comparison-table td.feature-title {
  font-weight: 700;
  color: var(--text);
}

.comparison-table td.trad-val {
  color: var(--text-3);
}

.comparison-table td.zedwp-val {
  font-weight: 800;
  color: var(--text);
  background: rgba(59, 130, 246, 0.08);
  border-left: 1px solid rgba(59, 130, 246, 0.2);
  border-right: 1px solid rgba(59, 130, 246, 0.2);
}

.table-badge-fail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ef4444;
  font-weight: 700;
}

.table-badge-pass {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #10b981;
  font-weight: 800;
}

/* ============================================================
   SERVICE DETAIL PAGES — BODY SECTION SYSTEM
   Shared by all /services/*.html pages.
   Hero header is styled separately above (.subpage-hero).
   ============================================================ */

/* ---------- Section header system (kicker + Bebas display title) ---------- */
.svc-sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.svc-sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  margin-bottom: 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: inset 0 0 14px rgba(59, 130, 246, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}

html.light .svc-sec-kicker {
  background: rgba(0, 64, 193, 0.05);
  border-color: rgba(37, 99, 235, 0.25);
}

.svc-sec-title {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', 'Be Vietnam Pro', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0 0 18px;
}

.svc-sec-accent {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-light);
}

html.light .svc-sec-accent {
  -webkit-text-stroke: 1.5px var(--primary-light);
}

.svc-sec-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Section spacing ---------- */
.svc-sec { padding: 110px 0; }

.caps-sec {
  background: radial-gradient(ellipse 65% 55% at 50% 0%, rgba(0, 64, 193, 0.07) 0%, transparent 62%);
}

.cta-sec { padding: 90px 0 120px; }

/* =========================================================
   Service DETAIL pages (services/*.html sub-pages)
   Scoped via body.page-svc-detail — consistent with the
   refined services index (body.page-services).
   ========================================================= */
body.page-svc-detail .subpage-hero {
  padding: 112px 0 40px;
}
body.page-svc-detail .subpage-hero-grid {
  gap: 36px;
}
body.page-svc-detail .subpage-title {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
}
body.page-svc-detail .subpage-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 620px;
}
body.page-svc-detail .svc-stats-band {
  padding: 28px 0 72px;
  background: transparent;
  border: none;
}
body.page-svc-detail .svc-stats-grid {
  position: relative;
  overflow: hidden;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 30px 18px;
  background: rgba(18, 18, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
body.page-svc-detail .svc-stats-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}
body.page-svc-detail .svc-stat-item {
  padding: 8px 12px;
}
body.page-svc-detail .svc-stat-item + .svc-stat-item::before {
  display: none;
}
body.page-svc-detail .svc-stat-num {
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin-bottom: 8px;
}
body.page-svc-detail .svc-stat-label {
  font-size: 10.5px;
}
body.page-svc-detail .svc-sec {
  padding: 84px 0;
}
body.page-svc-detail .svc-sec-head {
  margin-bottom: 44px;
}
body.page-svc-detail .svc-sec-title {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}
body.page-svc-detail .svc-sec-lead {
  font-size: 15.5px;
}
body.page-svc-detail .comparison-section,
body.page-svc-detail .svc-faq-sec,
body.page-svc-detail .svc-testimonial-band {
  padding: 84px 0;
}
body.page-svc-detail .cta-sec {
  padding: 72px 0 96px;
}
html.light body.page-svc-detail .svc-stats-band {
  background: transparent;
}
html.light body.page-svc-detail .svc-stats-grid {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  body.page-svc-detail .subpage-hero {
    padding: 96px 0 32px;
  }
  body.page-svc-detail .svc-stats-band {
    padding: 20px 0 56px;
  }
  body.page-svc-detail .svc-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 24px 14px;
  }
}

/* ---------- Capabilities cards (services-subpage-grid) ---------- */
.services-subpage-grid .why-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 2px solid var(--primary-light);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 95% 65% at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.92) 0%, rgba(11, 15, 25, 0.72) 100%);
  backdrop-filter: blur(16px);
  transition: transform 0.35s var(--ease-framer), border-color 0.35s ease, box-shadow 0.35s ease;
}

html.light .services-subpage-grid .why-card {
  background:
    radial-gradient(ellipse 95% 65% at 50% 0%, rgba(37, 99, 235, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.services-subpage-grid .why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 20px 50px rgba(0, 64, 193, 0.3), 0 0 30px rgba(59, 130, 246, 0.08);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.25) 0%, rgba(59, 130, 246, 0.12) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 8px 24px rgba(0, 64, 193, 0.18);
  transition: all 0.3s var(--ease-framer);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary-light);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.why-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 32px var(--primary-glow);
}

.why-card:hover .service-icon-box svg { stroke: #ffffff; }

.services-subpage-grid .why-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 12px;
}

.services-subpage-grid .why-card > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 22px;
  flex-grow: 1;
}

.cap-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.cap-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s ease;
}

html.light .cap-feats li {
  background: rgba(0, 64, 193, 0.03);
  border-color: rgba(0, 64, 193, 0.1);
}

.cap-feats li:hover {
  transform: translateX(4px);
  color: var(--text);
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.35);
}

/* ---------- Comparison matrix table polish ---------- */
.comparison-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 64, 193, 0.08) 0%, transparent 65%),
    rgba(0, 0, 0, 0.25);
}

html.light .comparison-section {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(37, 99, 235, 0.06) 0%, transparent 65%),
    rgba(0, 0, 0, 0.025);
}

.comparison-table-wrapper {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.comparison-table th { padding: 22px 24px; }
.comparison-table td { padding: 20px 24px; font-size: 14px; }

.comparison-table th.zedwp-col { position: relative; }

.comparison-table th.zedwp-col::after {
  content: 'ADVANTAGE';
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #10b981;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.comparison-table tbody tr {
  transition: background 0.25s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.04);
}

/* ---------- Process timeline (4-step methodology) ---------- */
.process-timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-timeline-grid::before {
  content: '';
  position: absolute;
  top: 62px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5) 12%, rgba(59, 130, 246, 0.5) 88%, transparent);
  opacity: 0.45;
  pointer-events: none;
}

html.light .process-timeline-grid::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35) 12%, rgba(37, 99, 235, 0.35) 88%, transparent);
}

.process-step-card {
  position: relative;
  z-index: 1;
  padding: 34px 26px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.07) 0%, rgba(11, 15, 25, 0.9) 100%);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: all 0.35s var(--ease-framer);
}

html.light .process-step-card {
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, #ffffff 100%);
}

.process-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 18px 45px rgba(0, 64, 193, 0.3), 0 0 30px rgba(59, 130, 246, 0.08);
}

.process-step-card:hover::before { opacity: 1; }

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 26px var(--primary-glow);
}

.process-step-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin: 0 0 10px;
}

.process-step-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-2);
  margin: 0 0 18px;
}

.process-step-card .deliverable-tag { margin-top: auto; }

@media (max-width: 1100px) {
  .process-timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline-grid::before { display: none; }
}

@media (max-width: 640px) {
  .process-timeline-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ accordion (details variant used on service pages) ---------- */
.svc-faq-sec {
  padding: 110px 0;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

html.light .svc-faq-sec {
  background: rgba(0, 0, 0, 0.025);
}

.faq-narrow { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.faq-accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

html.light details.faq-accordion-item {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}

details.faq-accordion-item[open] {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(11, 15, 25, 0.6);
  box-shadow: 0 16px 44px rgba(0, 64, 193, 0.18);
}

html.light details.faq-accordion-item[open] {
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 64, 193, 0.12);
}

details.faq-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  transition: color 0.25s ease;
}

details.faq-accordion-item summary::-webkit-details-marker { display: none; }

details.faq-accordion-item summary:hover { color: var(--primary-light); }

.faq-accordion-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: transform 0.35s var(--ease-framer), background 0.3s ease, color 0.3s ease;
}

details.faq-accordion-item[open] .faq-accordion-icon {
  transform: rotate(45deg);
  background: var(--primary);
  border-color: var(--primary-light);
  color: #ffffff;
}

.faq-accordion-content {
  padding: 0 26px 26px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-2);
}

/* ---------- Service CTA banner ---------- */
.service-cta-banner {
  position: relative;
  text-align: center;
  padding: 76px 48px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 130% at 50% -25%, rgba(0, 64, 193, 0.6) 0%, transparent 62%),
    radial-gradient(ellipse 55% 100% at 88% 115%, rgba(59, 130, 246, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #0a0e1a 0%, #0b0f19 100%);
  border: 1px solid rgba(59, 130, 246, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 70px rgba(59, 130, 246, 0.07);
}

.service-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 65% 100% at 50% 0%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 65% 100% at 50% 0%, #000 0%, transparent 72%);
  pointer-events: none;
}

.service-cta-title {
  position: relative;
  z-index: 1;
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 0 18px;
}

.service-cta-desc {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto 34px;
}

.service-cta-banner .btn-primary-pill {
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding: 16px 36px;
}

.cta-trust-row {
  gap: 14px;
  margin-top: 30px;
}

.cta-trust-item {
  padding: 9px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

html.light .cta-trust-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

/* ---------- Responsive tuning ---------- */
@media (max-width: 768px) {
  .svc-sec-head { margin-bottom: 44px; }
  .svc-sec, .comparison-section, .svc-faq-sec { padding: 80px 0; }
  .services-subpage-grid .why-card { padding: 26px 22px; }
  .process-step-card { padding: 28px 22px 26px; }
  details.faq-accordion-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-accordion-content { padding: 0 20px 22px; }
  .service-cta-banner { padding: 54px 22px; }
  .cta-sec { padding: 70px 0 90px; }
}

/* ============================================================
   SERVICE DETAIL PAGES — ADDITIONAL PROOF SECTIONS
   Stats band · What's included · Featured work · Testimonials
   ============================================================ */

/* ---------- Stats / proof band ---------- */
.svc-stats-band {
  padding: 54px 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 110% at 50% 0%, rgba(0, 64, 193, 0.1) 0%, transparent 62%),
    rgba(0, 0, 0, 0.18);
}

html.light .svc-stats-band {
  background: rgba(0, 0, 0, 0.02);
}

.svc-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.svc-stat-item {
  position: relative;
  padding: 16px 12px;
}

.svc-stat-item + .svc-stat-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}

.svc-stat-num {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
}

.svc-stat-unit {
  color: var(--primary-light);
  font-size: 0.5em;
  margin-left: 3px;
}

.svc-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .svc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .svc-stat-item + .svc-stat-item::before { display: none; }
}

/* ---------- What's included (deliverables) ---------- */
.svc-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .svc-included-grid { grid-template-columns: 1fr; }
}

.svc-include-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-framer);
}

.svc-include-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 16px 40px rgba(0, 64, 193, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

html.light .svc-include-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .svc-include-card:hover {
  background: #ffffff;
}

.svc-include-ic {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.22) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-light);
}

.svc-include-ic svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.svc-include-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}

.svc-include-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}

/* ---------- Featured work preview ---------- */
.svc-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .svc-work-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.svc-work-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.35s var(--ease-framer);
}

.svc-work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 22px 50px rgba(0, 64, 193, 0.25);
}

.svc-work-cover {
  position: relative;
  height: 172px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 90% at 18% 12%, rgba(59, 130, 246, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 90% 90%, rgba(0, 64, 193, 0.3) 0%, transparent 55%),
    linear-gradient(135deg, #0b1220 0%, #0e1830 100%);
}

.svc-work-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

.svc-work-cover span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(0, 64, 193, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #bfdbfe;
}

.svc-work-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 20px 22px 8px;
}

.svc-work-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 22px 18px;
  flex-grow: 1;
}

.svc-work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 22px;
}

.svc-work-meta span {
  padding: 5px 10px;
  border-radius: 100px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.svc-work-cta {
  text-align: center;
  margin-top: 40px;
}

html.light .svc-work-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .svc-work-cover {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

html.light .svc-work-cover::after {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
}

html.light .svc-work-cover span {
  background: rgba(0, 64, 193, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
}

/* ---------- Client testimonials ---------- */
.svc-testimonial-band {
  padding: 110px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0, 64, 193, 0.06) 0%, transparent 60%),
    rgba(0, 0, 0, 0.2);
}

html.light .svc-testimonial-band {
  background: rgba(0, 0, 0, 0.025);
}

.svc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .svc-testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.svc-testi-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease-framer);
}

.svc-testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 18px 44px rgba(0, 64, 193, 0.18);
}

html.light .svc-testi-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}

.svc-testi-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.svc-testi-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 24px;
  flex-grow: 1;
}

.svc-testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 6px 16px var(--primary-glow);
}

.svc-testi-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.svc-testi-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ===== SERVICE DETAIL FOOTER (site-footer) ===== */
.site-footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* gradient glow hairline on the top edge */
.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.45) 50%, transparent 100%);
  pointer-events: none;
}

/* neutralize the hard-coded white border on the shared .footer-top */
.site-footer .footer-top {
  border-top: none;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* brand column */
.site-footer .footer-col-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.site-footer .footer-brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.site-footer .footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 320px;
  margin: 0;
}

/* bottom bar: copyright left, meta links right */
.site-footer .footer-bottom {
  justify-content: space-between;
  text-align: left;
}

.site-footer .footer-bottom > p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

@media (max-width: 640px) {
  .site-footer .footer-top { padding-top: 44px; padding-bottom: 44px; }
  .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-links { gap: 18px; }
}

/* ===== SERVICE DETAIL REFINEMENTS ===== */

/* subtle hairline separating plain sections on the page background */
.svc-sec { position: relative; }
.svc-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
  pointer-events: none;
}

/* anchor scrolling clears the fixed nav */
section, details { scroll-margin-top: 96px; }

/* section kicker gets symmetric side flourishes */
.svc-sec-kicker::before,
.svc-sec-kicker::after {
  content: '';
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5));
}
.svc-sec-kicker::after {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.5), transparent);
}

/* stats numbers glow */
.svc-stat-num {
  text-shadow: 0 0 34px rgba(59, 130, 246, 0.3);
}

/* work-card cover: hover arrow reveals top-right */
.svc-work-cover::before {
  content: '→';
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.85);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease-framer);
  pointer-events: none;
}
.svc-work-card:hover .svc-work-cover::before {
  opacity: 1;
  transform: translateY(0);
}

/* testimonial quote glyph */
.svc-testi-card { position: relative; }
.svc-testi-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  right: 22px;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(59, 130, 246, 0.16);
  pointer-events: none;
}

/* CTA banner breathing glow */
@keyframes zhCtaBreath {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}
.service-cta-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -45%;
  width: 75%;
  height: 90%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(59, 130, 246, 0.16) 0%, transparent 68%);
  animation: zhCtaBreath 7s ease-in-out infinite;
  pointer-events: none;
}

/* terminal blinking cursor */
@keyframes zhCursor {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.terminal-body::after {
  content: '▋';
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1;
  color: var(--primary-light);
  animation: zhCursor 1.1s steps(1, end) infinite;
}

/* global selection + reduced motion */
::selection {
  background: rgba(59, 130, 246, 0.35);
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LIGHT MODE FIXES
   ------------------------------------------------------------
   Components that hardcoded white/dark text kept breaking when
   html.light flips the theme vars. The mobile drawer stays a
   dark overlay by design, so its var()-based text is pinned to
   light; the rest now adapt to the light surface.
   ============================================================ */
html.light .nav-brand-logo svg {
  color: var(--text);
}

html.light .mobile-drawer .drawer-brand,
html.light .mobile-drawer .link-text {
  color: #ffffff;
}

html.light .mobile-drawer .mobile-drawer-close svg {
  stroke: #ffffff;
}

html.light .mobile-drawer .link-arrow,
html.light .mobile-drawer .drawer-contact-info,
html.light .mobile-drawer .drawer-contact-info a {
  color: rgba(255, 255, 255, 0.72);
}

html.light .footer-newsletter-input {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--text);
}

html.light .footer-newsletter-input::placeholder {
  color: var(--text-3);
}

html.light .footer-newsletter-input:focus {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.15);
}

html.light .metric-badge {
  background: rgba(0, 0, 0, 0.08);
}

html.light .footer-credit a:hover {
  color: var(--primary-light);
}

/* ============================================================
   LIGHT MODE — brand wordmark + subtle chip surfaces
   ------------------------------------------------------------
   .brand-name "ZEDWP" gradient hardcodes white for the "ZED"
   half, invisible on the white nav in light mode. Scoped to
   .nav-brand so the always-dark mobile drawer keeps its white.
   White-alpha chips (theme toggle, outline buttons, tags,
   icon circles, terminal header, table header) also disappear
   on white surfaces, so they swap to dark-alpha in light mode.
   ============================================================ */
html.light .nav-brand .brand-name {
  background: linear-gradient(90deg, var(--text) 0%, var(--text) 56%, var(--primary-light) 56%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html.light .btn-theme-toggle,
html.light .btn-outline-pill,
html.light .hero-tag,
html.light .hero-badge,
html.light .service-icon-circle,
html.light .tech-tag,
html.light .terminal-header {
  background: rgba(0, 0, 0, 0.05);
}

html.light .btn-outline-pill:hover {
  background: rgba(0, 0, 0, 0.09);
}

html.light .tech-pill,
html.light .market-tag {
  background: rgba(0, 0, 0, 0.06);
}

html.light .tech-pill,
html.light .hero-badge {
  border-color: rgba(0, 0, 0, 0.12);
}

html.light .market-tag {
  border-color: rgba(0, 0, 0, 0.12);
}

html.light .market-tag:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

html.light .terminal-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

html.light .comparison-table th {
  background: rgba(0, 0, 0, 0.03);
}

/* ============================================================
   LIGHT MODE — dark-glass content cards
   ------------------------------------------------------------
   Cards that hardcode a dark rgba(18,18,24,.85) glass surface
   while their text uses var(--text). When html.light flips the
   theme they become dark cards with black text (unreadable).
   Flip the surface to light glass and pin the few remaining
   hardcoded-white inner bits so they stay visible.
   ============================================================ */
html.light .process-step-card-pro,
html.light .service-card-pro,
html.light .why-card,
html.light .engage-card,
html.light .step-content,
html.light .manifesto-card,
html.light .stat-glow-card,
html.light .value-card-pro,
html.light .team-card-pro {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
}

html.light .service-card-main,
html.light .engage-featured,
html.light .global-delivery-card {
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.06) 0%, rgba(255, 255, 255, 0.9) 60%);
  border-color: rgba(0, 64, 193, 0.18);
}

html.light .newsletter-box {
  background: linear-gradient(135deg, rgba(0, 64, 193, 0.06) 0%, rgba(244, 244, 245, 0.9) 100%);
}

html.light .node-content,
html.light .step-number {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light .team-avatar-pro {
  color: var(--text);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

html.light .why-card:hover .why-icon svg {
  stroke: var(--primary-light);
}

html.light .value-tech-pills span,
html.light .team-skills span {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

html.light .service-card-pro:hover {
  border-color: rgba(0, 64, 193, 0.35);
}

/* ===== LIGHT MODE FIXES (4): NAV SHADOW, FOOTER, MEGA MENU, HERO ORBIT ===== */

/* Nav header: replace heavy dark shadow with a subtle light one */
html.light .nav-header,
html.light .nav-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 64, 193, 0.07);
}

/* Mega menu card hover: softer shadow on light surface */
html.light .mega-card-item:hover {
  box-shadow: 0 10px 24px rgba(0, 64, 193, 0.12);
}

/* Footer social chips: white-translucent is invisible on white, flip to dark */
html.light .footer-social a {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-2);
}
html.light .footer-social a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 64, 193, 0.25);
}

/* Footer separators: white-alpha borders invisible on white */
html.light .footer-top,
html.light .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.08);
}

/* Footer link hovers: #00f2fe cyan is nearly invisible on white */
html.light .footer-nav-list a:hover,
html.light .footer-info-text a:hover {
  color: var(--primary-light);
}

/* Services hero orbit system: dashed white ring invisible on white bg */
html.light .orbit-ring {
  border-color: rgba(0, 64, 193, 0.28);
}

/* Central core keeps its dark navy jewel look; pin its label to white */
html.light .orbit-center-core .core-text {
  color: #ffffff;
}

/* Orbit node chips: white border + heavy dark shadow wrong on white bg */
html.light .node-content {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* ===== LIGHT MODE: CLEAN HERO BACKGROUNDS (remove dirty blue bleed) ===== */

/* Index hero: top blue ellipse was a gray-blue wash on white */
html.light .hero-section {
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 64, 193, 0.05), transparent 70%);
}

/* Index hero: big blurred blue blob smudged the white bg */
html.light .hero-glow-bg {
  background: radial-gradient(circle, rgba(0, 64, 193, 0.05) 0%, transparent 70%);
}

/* Services hero mesh: blue + green glows looked like stains on white */
html.light .hero-mesh {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 64, 193, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.025) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.025) 0%, transparent 40%);
}


/* Subpage heroes: soften blue glow, swap invisible white dots for light-gray grid */
html.light .subpage-hero {
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 64, 193, 0.06) 0%, rgba(9, 9, 11, 0) 75%),
    radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
}

/* ===== LIGHT MODE: FOOTER CYAN ACCENTS -> BRAND BLUE ===== */

/* Footer brand dot: cyan #00f2fe clashes with light theme's blue */
html.light .footer-brand-name .brand-dot {
  color: var(--primary-light);
}

/* Footer CTA pill: cyan gradient -> brand blue gradient, white arrow */
html.light .footer-cta-pill {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 8px 25px rgba(0, 64, 193, 0.3), 0 0 20px rgba(37, 99, 235, 0.25);
}
html.light .footer-cta-pill svg {
  color: #ffffff;
}
html.light .footer-cta-link:hover .footer-cta-pill {
  box-shadow: 0 18px 45px rgba(0, 64, 193, 0.5), 0 0 35px rgba(37, 99, 235, 0.4);
}

/* Footer newsletter submit button: cyan gradient -> brand blue, white arrow */
html.light .footer-newsletter-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff;
}

/* Footer logo icon: cyan -> brand blue in light mode */
html.light .footer-brand-logo svg {
  color: var(--primary-light);
}

/* In-body contextual cross-links (SEO internal linking between service pages) */
.svc-inline-link {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: filter 0.2s ease;
}
.svc-inline-link:hover {
  filter: brightness(1.2);
}
