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

:root {
  --brand-warm-rgb: 16 185 129;
  --bg: #030712;
  --bg-soft: #090d16;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(15, 23, 42, 0.75);
  --primary: #059669;
  --primary-light: #34d399;
  --primary-glow: rgba(16, 185, 129, 0.4);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --text: #ffffff;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --text-zinc-500: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(52, 211, 153, 0.4);
  --nav-bg: rgba(3, 7, 18, 0.85);
  --nav-border: rgba(255, 255, 255, 0.1);
  --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: 16 185 129;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --primary: #059669;
  --primary-light: #059669;
  --primary-glow: rgba(5, 150, 105, 0.2);
  --text: #0f172a;
  --text-2: #334155;
  --text-3: #64748b;
  --text-zinc-500: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(5, 150, 105, 0.35);
  --nav-bg: rgba(248, 250, 252, 0.88);
  --nav-border: rgba(15, 23, 42, 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 48%, #34d399 48%, #34d399 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.32);
  border-radius: 28px;
  padding: 24px 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.95), 0 0 50px rgba(52, 211, 153, 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(5, 150, 105, 0.22);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 0.14) 0%, rgba(5, 150, 105, 0.08) 100%);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.35);
  transition: transform 0.2s ease;
}

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

/* Right Content 3-Column Matrix (Full Width) */
.mega-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mega-service-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.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(5, 150, 105, 0.03);
  border-color: rgba(5, 150, 105, 0.08);
}

.mega-card-item:hover {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 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(5, 150, 105, 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(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 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(5, 150, 105, 0.2);
  border-color: rgba(52, 211, 153, 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(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 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(52, 211, 153, 0.4);
  box-shadow: 0 0 30px rgba(5, 150, 105, 0.3), inset 0 0 20px rgba(5, 150, 105, 0.2);
  animation: ringPulse 8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  opacity: 0;
}

html.light .hero-ring {
  border-color: rgba(5, 150, 105, 0.3);
  box-shadow: 0 0 25px rgba(5, 150, 105, 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(52, 211, 153, 0.7);
  }
  25% {
    opacity: 0.85;
  }
  75% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.7) rotate(180deg);
    opacity: 0;
    border-color: rgba(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 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%, #34d399 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, #34d399 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(52, 211, 153, 0.35);
  transform: translateX(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(5, 150, 105, 0.15);
}

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

.process-step-num-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.15);
  border: 1.5px solid rgba(52, 211, 153, 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(5, 150, 105, 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(52, 211, 153, 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(16, 185, 129, 0.25) 0%, rgba(52, 211, 153, 0.15) 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(52, 211, 153, 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: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4), 0 0 20px rgba(16, 185, 129, 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(52, 211, 153, 0.7), 0 0 35px rgba(16, 185, 129, 0.5);
}

.footer-cta-pill svg {
  width: clamp(24px, 3.5vw, 46px);
  height: clamp(24px, 3.5vw, 46px);
  color: #022c22;
  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 1.2fr;
  gap: 56px;
  padding-top: 48px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.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: #34d399;
}

.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: #34d399;
}

.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(0, 242, 254, 0.5);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.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: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  border: none;
  color: #022c22;
  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(0, 242, 254, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  color: #34d399;
  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: #34d399;
  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: #34d399;
}

.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: #34d399;
  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(5, 150, 105, 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, #10b981 0%, #059669 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(5, 150, 105, 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(5, 150, 105, 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(16, 185, 129, 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(5, 150, 105, 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%, #34d399 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(5, 150, 105, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(52, 211, 153, 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(52, 211, 153, 0.2));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.value-card:hover {
  border-color: rgba(52, 211, 153, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(52, 211, 153, 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(5, 150, 105, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.team-card:hover {
  border-color: rgba(52, 211, 153, 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, #10b981 0%, #059669 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(16, 185, 129, 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(16, 185, 129, 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(52, 211, 153, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(52, 211, 153, 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(5, 150, 105, 0.15);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(52, 211, 153, 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(5, 150, 105, 0.25);
  background: linear-gradient(135deg, rgba(5, 150, 105, 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(16, 185, 129, 0.12);
  background: rgba(5, 150, 105, 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(52, 211, 153, 0.3);
  color: var(--text);
  background: rgba(5, 150, 105, 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(5, 150, 105, 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(52, 211, 153, 0.3);
  color: var(--text);
  background: rgba(5, 150, 105, 0.06);
}

.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 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(5, 150, 105, 0.08) 0%, rgba(24, 24, 27, 0.6) 100%);
  border: 1px solid rgba(5, 150, 105, 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%, #34d399 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(52, 211, 153, 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(52, 211, 153, 0.4);
  box-shadow: 0 16px 36px -10px rgba(5, 150, 105, 0.25),
              0 0 25px rgba(52, 211, 153, 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; }
}

/* ===== SUBPAGE COMMON STYLES ===== */
.subpage-hero {
  position: relative;
  padding: 130px 0 50px;
  background: radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 0.15);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(5, 150, 105, 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(5, 150, 105, 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);
}

/* 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(5, 150, 105, 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(5, 150, 105, 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(52, 211, 153, 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(5, 150, 105, 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(52, 211, 153, 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(5, 150, 105, 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(5, 150, 105, 0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 12px 36px rgba(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.22);
  border-color: rgba(52, 211, 153, 0.55);
  box-shadow: 0 0 22px rgba(52, 211, 153, 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(52, 211, 153, 0.15);
  border-color: var(--primary-light);
  color: var(--text);
  box-shadow: 0 4px 16px rgba(52, 211, 153, 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(52, 211, 153, 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(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 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: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

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

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

.radio-pill-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.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(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 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: 
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(5, 150, 105, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.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 {
    display: none;
  }
}

.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;
}

.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 {
  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(5, 150, 105, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

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

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

.btn-primary-gradient:hover svg {
  transform: translateY(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;
}

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

.hero-orbit-container {
  position: relative;
  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(52, 211, 153, 0.4);
  box-shadow: 0 0 35px rgba(5, 150, 105, 0.4), inset 0 0 20px rgba(52, 211, 153, 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(52, 211, 153, 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: #34d399;
  filter: drop-shadow(0 0 10px rgba(52, 211, 153, 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;
}

.node-content:hover {
  transform: translate(-50%, -50%) scale(1.1) !important;
  border-color: var(--primary-light);
  box-shadow: 0 14px 35px rgba(5, 150, 105, 0.4), 0 0 20px rgba(52, 211, 153, 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(5, 150, 105, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.node-icon svg {
  width: 16px;
  height: 16px;
  stroke: #34d399;
}

.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-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; }
}

/* 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(5, 150, 105, 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 {
  position: relative;
  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, #34d399, #8b5cf6, transparent);
  transition: left 0.6s ease;
}

.service-card-pro:hover::before {
  left: 100%;
}

.service-card-pro:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(5, 150, 105, 0.3), 0 0 30px rgba(52, 211, 153, 0.15);
  background: rgba(22, 22, 30, 0.95);
}

.service-card-main {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(18, 18, 24, 0.9) 60%);
}

@media (max-width: 1024px) {
  .service-card-main {
    grid-column: span 1;
  }
}

.card-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
}

.card-content {
  position: relative;
  z-index: 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(5, 150, 105, 0.3) 0%, rgba(52, 211, 153, 0.2) 100%);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(5, 150, 105, 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(5, 150, 105, 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(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
}

.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(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 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;
}

/* 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, #34d399 0%, #8b5cf6 50%, #10b981 100%);
  box-shadow: 0 0 12px rgba(52, 211, 153, 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(52, 211, 153, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(5, 150, 105, 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(52, 211, 153, 0.4);
  transform: translateX(8px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 100px;
  font-size: 12px;
  color: #34d399;
  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(5, 150, 105, 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(52, 211, 153, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.25);
  background: rgba(22, 22, 30, 0.95);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.25) 0%, rgba(52, 211, 153, 0.15) 100%);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3);
}

.engage-featured {
  border-color: rgba(52, 211, 153, 0.5);
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.18) 0%, rgba(18, 18, 24, 0.95) 60%);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 0.4);
}

/* 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(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  transform: translateY(-2px);
}

.about-story-section {
  padding: 100px 0;
  position: relative;
}

.manifesto-card {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(52, 211, 153, 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(5, 150, 105, 0.2);
}

.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #34d399, #8b5cf6, #10b981);
}

.manifesto-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #34d399;
  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(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(5, 150, 105, 0.3) 0%, rgba(52, 211, 153, 0.15) 100%);
  border: 1px solid rgba(52, 211, 153, 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(5, 150, 105, 0.15) 0%, rgba(18, 18, 24, 0.9) 60%);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #34d399;
  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 .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 .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(5, 150, 105, 0.04);
  border-color: rgba(5, 150, 105, 0.12);
}

.tech-badge-chip:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 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(52, 211, 153, 0.08) 0%, rgba(11, 15, 25, 0.6) 100%);
}

html.light .services-subpage-grid .why-card {
  background: linear-gradient(180deg, rgba(5, 150, 105, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

/* Accordion Open State Highlight */
.faq-accordion-item[open] {
  border-left: 4px solid var(--primary-light);
  border-color: rgba(52, 211, 153, 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(52, 211, 153, 0.35);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(52, 211, 153, 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(5, 150, 105, 0.25);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 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.zava-col {
  color: var(--primary-light);
  background: rgba(52, 211, 153, 0.16);
  border-left: 1px solid rgba(52, 211, 153, 0.3);
  border-right: 1px solid rgba(52, 211, 153, 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.zava-val {
  font-weight: 800;
  color: var(--text);
  background: rgba(52, 211, 153, 0.08);
  border-left: 1px solid rgba(52, 211, 153, 0.2);
  border-right: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.35);
  box-shadow: inset 0 0 14px rgba(52, 211, 153, 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(5, 150, 105, 0.05);
  border-color: rgba(16, 185, 129, 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(5, 150, 105, 0.07) 0%, transparent 62%);
}

.cta-sec { padding: 90px 0 120px; }

/* ---------- 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(52, 211, 153, 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(16, 185, 129, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.services-subpage-grid .why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.45);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3), 0 0 30px rgba(52, 211, 153, 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(5, 150, 105, 0.25) 0%, rgba(52, 211, 153, 0.12) 100%);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 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(5, 150, 105, 0.03);
  border-color: rgba(5, 150, 105, 0.1);
}

.cap-feats li:hover {
  transform: translateX(4px);
  color: var(--text);
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.35);
}

/* ---------- Comparison matrix table polish ---------- */
.comparison-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(5, 150, 105, 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(16, 185, 129, 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.zava-col { position: relative; }

.comparison-table th.zava-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(52, 211, 153, 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(52, 211, 153, 0.5) 12%, rgba(52, 211, 153, 0.5) 88%, transparent);
  opacity: 0.45;
  pointer-events: none;
}

html.light .process-timeline-grid::before {
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.35) 12%, rgba(16, 185, 129, 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(52, 211, 153, 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(16, 185, 129, 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(52, 211, 153, 0.4);
  box-shadow: 0 18px 45px rgba(5, 150, 105, 0.3), 0 0 30px rgba(52, 211, 153, 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(52, 211, 153, 0.45);
  background: rgba(11, 15, 25, 0.6);
  box-shadow: 0 16px 44px rgba(5, 150, 105, 0.18);
}

html.light details.faq-accordion-item[open] {
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(5, 150, 105, 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(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 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(5, 150, 105, 0.6) 0%, transparent 62%),
    radial-gradient(ellipse 55% 100% at 88% 115%, rgba(52, 211, 153, 0.28) 0%, transparent 55%),
    linear-gradient(180deg, #0a0e1a 0%, #022c22 100%);
  border: 1px solid rgba(52, 211, 153, 0.32);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 0 70px rgba(52, 211, 153, 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(5, 150, 105, 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(52, 211, 153, 0.4);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 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(5, 150, 105, 0.22) 0%, rgba(52, 211, 153, 0.1) 100%);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.4);
  box-shadow: 0 22px 50px rgba(5, 150, 105, 0.25);
}

.svc-work-cover {
  position: relative;
  height: 172px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 90% at 18% 12%, rgba(52, 211, 153, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 90% 90%, rgba(5, 150, 105, 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(5, 150, 105, 0.4);
  border: 1px solid rgba(52, 211, 153, 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(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 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(5, 150, 105, 0.12);
  border-color: rgba(16, 185, 129, 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(5, 150, 105, 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(52, 211, 153, 0.35);
  box-shadow: 0 18px 44px rgba(5, 150, 105, 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(52, 211, 153, 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(52, 211, 153, 0.5));
}
.svc-sec-kicker::after {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.5), transparent);
}

/* stats numbers glow */
.svc-stat-num {
  text-shadow: 0 0 34px rgba(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 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(52, 211, 153, 0.7);
  box-shadow: 0 0 15px rgba(0, 242, 254, 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 "ZAVA TECH" 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) 48%, var(--primary-light) 48%, 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(16, 185, 129, 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(5, 150, 105, 0.06) 0%, rgba(255, 255, 255, 0.9) 60%);
  border-color: rgba(5, 150, 105, 0.18);
}

html.light .newsletter-box {
  background: linear-gradient(135deg, rgba(5, 150, 105, 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(5, 150, 105, 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(5, 150, 105, 0.07);
}

/* Mega menu card hover: softer shadow on light surface */
html.light .mega-card-item:hover {
  box-shadow: 0 10px 24px rgba(5, 150, 105, 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(5, 150, 105, 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: #34d399 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(5, 150, 105, 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(5, 150, 105, 0.05), transparent 70%);
}

/* Index hero: big blurred blue blob smudged the white bg */
html.light .hero-glow-bg {
  background: radial-gradient(circle, rgba(5, 150, 105, 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(5, 150, 105, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 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(5, 150, 105, 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 #34d399 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(5, 150, 105, 0.3), 0 0 20px rgba(16, 185, 129, 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(5, 150, 105, 0.5), 0 0 35px rgba(16, 185, 129, 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);
}

/* High-End Layered Light Mode Enhancements */
html.light body {
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
}

html.light .service-card-modern,
html.light .mega-card-item,
html.light .work-card-modern,
html.light .contact-card,
html.light .faq-item,
html.light .about-card,
html.light .blog-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

html.light .service-card-modern:hover,
html.light .mega-card-item:hover,
html.light .contact-card:hover,
html.light .blog-card:hover {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 0 20px rgba(5, 150, 105, 0.1);
  transform: translateY(-4px);
}

html.light .mega-menu-dropdown {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
}


/* ===== LIGHT MODE: ALTERNATING HIGH-CONTRAST SECTIONS ===== */
html.light section:nth-of-type(even) {
  background-color: #f1f5f9;
}

html.light section:nth-of-type(odd) {
  background-color: #f8fafc;
}

/* Light Mint Tint for Process & Features */
html.light .process-section-modern,
html.light .specs-section {
  background-color: #f0fdf4 !important;
}

/* High-Contrast Dark Feature Section in Light Mode (Apple/Stripe Style) */
html.light .works-section-modern,
html.light .footer-cta-section {
  background: #09090b !important;
  color: #ffffff !important;
}

html.light .works-section-modern .sec-title-modern,
html.light .works-section-modern .sec-kicker-modern,
html.light .footer-cta-section .footer-cta-title {
  color: #ffffff !important;
}

html.light .works-section-modern .sec-desc-modern,
html.light .footer-cta-section .footer-cta-sub {
  color: #94a3b8 !important;
}


/* ===== LIGHT MODE: HEADER & HERO HIGH-CONTRAST STYLING ===== */
html.light .nav-header {
  background: rgba(248, 250, 252, 0.88) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 1px rgba(15, 23, 42, 0.12) !important;
}

html.light .nav-header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 16px 40px -10px rgba(15, 23, 42, 0.12) !important;
}

html.light .nav-brand-logo svg {
  color: #059669 !important;
}

html.light .hero-tag {
  background: rgba(5, 150, 105, 0.08) !important;
  color: #059669 !important;
  border: 1px solid rgba(5, 150, 105, 0.2) !important;
}

html.light .hero-title-main {
  color: #0f172a !important;
}

html.light .hero-title-outline {
  -webkit-text-stroke: 1.5px #0f172a !important;
  color: transparent !important;
}

html.light .btn-outline-pill {
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  background: rgba(15, 23, 42, 0.03) !important;
}

html.light .btn-outline-pill:hover {
  background: rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(15, 23, 42, 0.3) !important;
}




/* ===== PERFECTLY BALANCED COLOR & BACKGROUND DESIGN SYSTEM ===== */
:root {
  --brand-warm-rgb: 16 185 129;
  --bg: #030712;
  --bg-soft: #070d18;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(15, 23, 42, 0.75);
  --primary: #059669;
  --primary-light: #34d399;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --text: #ffffff;
  --text-2: #cbd5e1;
  --text-3: #94a3b8;
  --text-zinc-500: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(52, 211, 153, 0.4);
  --nav-bg: rgba(3, 7, 18, 0.85);
  --nav-border: rgba(255, 255, 255, 0.1);
}

html.light {
  --brand-warm-rgb: 16 185 129;
  --bg: #f8fafc;
  --bg-soft: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --primary: #059669;
  --primary-light: #059669;
  --primary-glow: rgba(5, 150, 105, 0.2);
  --text: #0f172a;
  --text-2: #334155;
  --text-3: #64748b;
  --text-zinc-500: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(5, 150, 105, 0.35);
  --nav-bg: rgba(248, 250, 252, 0.88);
  --nav-border: rgba(15, 23, 42, 0.08);
  color-scheme: light;
}

/* Balanced Background Mesh */
body {
  font-family: 'Plus Jakarta Sans', 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 50% -5%, rgba(16, 185, 129, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 85% 45%, rgba(52, 211, 153, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 15% 75%, rgba(5, 150, 105, 0.07) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px;
  background-attachment: fixed;
  color: var(--text);
}

html.light body {
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 50% -5%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 32px 32px;
  background-attachment: fixed;
}

/* Balanced Hero Light Mode */
html.light .hero-section {
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid rgba(16, 185, 129, 0.12) !important;
}

html.light .hero-title-main {
  color: #0f172a !important;
  font-weight: 900 !important;
}

html.light .hero-title-outline {
  color: #059669 !important;
  -webkit-text-stroke: 0px transparent !important;
  font-weight: 900 !important;
}

html.light .hero-subtitle-main {
  color: #334155 !important;
  font-weight: 500 !important;
}

html.light .hero-tag {
  background: #e6f4ea !important;
  color: #047857 !important;
  border: 1px solid #a7f3d0 !important;
  font-weight: 800 !important;
}

html.light .btn-primary-pill {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.28) !important;
}

html.light .btn-outline-pill {
  background: rgba(255, 255, 255, 0.9) !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
}

html.light .spec-item {
  color: #0f172a !important;
}














/* ===== UNIFIED 5-TIER PREMIUM HEADING & TYPOGRAPHY SYSTEM ===== */

/* Tier 2: Section Main Headings (H2) */
h2, .sec-title-modern, .manifesto-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-size: clamp(32px, 4.5vw, 56px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.1 !important;
  color: var(--text);
}

h2 .italic, .sec-title-modern .italic, .manifesto-title .italic, .cta-italic {
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: #a1a1aa !important;
}

/* Tier 3: Card & Feature Headings (H3) */
h3, .service-title-modern, .work-title, .faq-question, .process-step-info h3 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-size: clamp(18px, 2.2vw, 24px) !important;
  font-weight: 750 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.25 !important;
  color: var(--text);
}

/* Tier 4: Subsection & Sub-card Headings (H4) */
h4, .mega-card-title, .mega-col-title {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  color: var(--text);
}

/* Tier 5: Kickers & Category Badges */
.sec-kicker-modern, .hero-specs-label, .status-badge, .work-tag-badge {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--primary-light) !important;
}

/* Light Mode Overrides for Headings */
html.light .hero-title-main > span:first-child {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .hero-title-outline {
  color: rgba(5, 150, 105, 0.1) !important;
  -webkit-text-fill-color: rgba(5, 150, 105, 0.1) !important;
  -webkit-text-stroke: 1.5px #059669 !important;
}

html.light h2, html.light h3, html.light h4, html.light .sec-title-modern {
  color: #0f172a !important;
}

html.light h2 .italic, html.light .sec-title-modern .italic {
  color: #64748b !important;
}




/* ===== RESTORED BEBAS NEUE DISPLAY HERO TITLE ===== */
.hero-title-main {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: clamp(68px, 14vw, 145px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 0.9 !important;
  margin-bottom: 24px !important;
  text-transform: uppercase !important;
  color: #ffffff;
}

.hero-title-main > span:first-child {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.hero-title-outline {
  display: block !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: clamp(30px, 6.5vw, 76px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.16em !important;
  line-height: 1 !important;
  margin-top: 6px !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1.5px #ffffff !important;
  filter: none !important;
}

html.light .hero-title-main > span:first-child {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .hero-title-outline {
  color: rgba(5, 150, 105, 0.1) !important;
  -webkit-text-fill-color: rgba(5, 150, 105, 0.1) !important;
  -webkit-text-stroke: 1.5px #059669 !important;
}




/* ===== OPTION 1: ZAVA EMERALD NEON GRADIENT FADE + WIDER LETTER SPACING ===== */
.hero-title-main > span:first-child {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif !important;
  letter-spacing: 0.08em !important;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 40%, #6ee7b7 75%, #34d399 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 6px 24px rgba(52, 211, 153, 0.35)) !important;
}

html.light .hero-title-main > span:first-child {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #059669 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: none !important;
}


/* ===== FUTURISTIC HORIZONTAL LASER PIPELINE STYLING ===== */
.laser-pipeline-container {
  position: relative;
  margin-top: 48px;
  padding-top: 24px;
}

.laser-beam-track {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.laser-beam-glow {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #059669 0%, #34d399 50%, #059669 100%);
  box-shadow: 0 0 15px #34d399, 0 0 30px rgba(52, 211, 153, 0.5);
  animation: laserPulse 4s infinite linear;
}

@keyframes laserPulse {
  0% { opacity: 0.6; filter: hue-rotate(0deg); }
  50% { opacity: 1; filter: hue-rotate(30deg); }
  100% { opacity: 0.6; filter: hue-rotate(0deg); }
}

.laser-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .laser-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .laser-beam-track { display: none; }
}

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

.laser-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.laser-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.laser-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #030712;
  border: 2px solid #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.4);
  transition: all 0.3s ease;
}

.laser-node-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
}

.laser-step-card:hover .laser-node {
  transform: scale(1.25);
  border-color: #ffffff;
  box-shadow: 0 0 24px #34d399;
}

.laser-step-num {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.1em;
}

.laser-card-body {
  width: 100%;
  padding: 24px 20px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.laser-step-card:hover .laser-card-body {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(16, 185, 129, 0.15);
  background: var(--bg-card-hover);
}

.laser-phase-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-light);
}

.laser-card-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.laser-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: auto;
}

.laser-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.laser-tags span {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-3);
}

html.light .laser-node {
  background: #ffffff;
}

html.light .laser-card-body {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}

html.light .laser-step-card:hover .laser-card-body {
  background: #ffffff;
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.12), 0 0 20px rgba(5, 150, 105, 0.1);
}

html.light .laser-tags span {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: #475569;
}


/* ===== BALANCED HIGH-CONTRAST LOGO STYLING ===== */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 21px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.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: #34d399;
  filter: drop-shadow(0 2px 8px rgba(52, 211, 153, 0.4));
}

.nav-brand:hover .nav-brand-logo {
  transform: scale(1.1) rotate(-4deg);
}

.brand-zava {
  color: #ffffff !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.brand-tech {
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

.brand-dot {
  color: #34d399 !important;
  font-weight: 900 !important;
  margin-left: -1px;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

html.light .nav-brand-logo svg {
  color: #059669;
  filter: none;
}


/* ===== CONCEPT 1: FLOATING CYBERPUNK CAPSULE HEADER (DYNAMIC ISLAND STYLE) ===== */
.nav-header {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: min(1200px, calc(100% - 40px)) !important;
  height: 66px !important;
  border-radius: 100px !important;
  background: rgba(7, 11, 20, 0.78) !important;
  backdrop-filter: blur(32px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
  border: 1px solid rgba(52, 211, 153, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.12) !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 9999 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-header.scrolled {
  top: 14px !important;
  background: rgba(3, 7, 18, 0.92) !important;
  border-color: rgba(52, 211, 153, 0.4) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(52, 211, 153, 0.25) !important;
}

.nav-header::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 211, 153, 0.4) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  text-decoration: none !important;
}

.nav-brand-logo {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}

.nav-brand-logo svg {
  width: 20px !important;
  height: 20px !important;
  color: #34d399 !important;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5)) !important;
}

.nav-brand:hover .nav-brand-logo {
  transform: scale(1.15) rotate(-6deg) !important;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.4) !important;
  border-color: #34d399 !important;
}

.nav-link {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #94a3b8 !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  transition: all 0.25s ease !important;
  border: 1px solid transparent !important;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important;
  background: rgba(52, 211, 153, 0.12) !important;
  border-color: rgba(52, 211, 153, 0.3) !important;
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.15) !important;
}

.btn-nav-cta {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%) !important;
  color: #0b0f19 !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-nav-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.5) !important;
}

html.light .nav-header {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 12px 40px -8px rgba(15, 23, 42, 0.12) !important;
}

html.light .nav-header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(5, 150, 105, 0.3) !important;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.18) !important;
}

html.light .nav-link {
  color: #475569 !important;
}

html.light .nav-link:hover, html.light .nav-link.active {
  color: #059669 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
}


/* ===== PERFECTED FLOATING CAPSULE HEADER & MEGA MENU ADJUSTMENTS ===== */
.mega-menu-dropdown {
  top: calc(100% + 12px) !important;
}

@media (max-width: 991px) {
  .nav-header {
    top: 12px !important;
    width: calc(100% - 24px) !important;
    height: 56px !important;
    padding: 0 16px !important;
    border-radius: 100px !important;
  }
  .nav-brand-logo {
    width: 30px !important;
    height: 30px !important;
  }
  .brand-name {
    font-size: 17px !important;
  }
}


/* ===== OPTION A: MICRO-LABEL CHIP LOGO TEXT (VERCEL/LINEAR STYLE) ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.brand-wordmark {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.brand-tech-badge {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #34d399 !important;
  background: rgba(52, 211, 153, 0.12) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  padding: 2px 7px !important;
  border-radius: 6px !important;
  line-height: 1.1 !important;
  display: inline-block !important;
  vertical-align: middle !important;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.15) !important;
}

html.light .brand-wordmark {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech-badge {
  color: #059669 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
  box-shadow: none !important;
}


/* ===== OPTION B: PERFECT BASELINE DUAL TONE LOGO TEXT ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.brand-name, .footer-brand-name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
}

.brand-zava {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 900 !important;
}

.brand-tech {
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
  font-weight: 800 !important;
  margin-left: 4px !important;
}

.brand-dot {
  color: #34d399 !important;
  font-weight: 900 !important;
  margin-left: 0px !important;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}


/* ===== ULTIMATE PERFECT TYPOGRAPHIC LOGO STYLE ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.brand-name, .footer-brand-name {
  display: inline-flex !important;
  align-items: baseline !important;
}

.brand-zava {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.brand-tech {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 12.5px !important;
  font-weight: 750 !important;
  letter-spacing: 0.18em !important;
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
  text-transform: uppercase !important;
  margin-left: 6px !important;
  line-height: 1 !important;
}

.brand-dot {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 20px !important;
  color: #34d399 !important;
  font-weight: 900 !important;
  margin-left: 1px !important;
  line-height: 1 !important;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}

html.light .brand-dot {
  color: #059669 !important;
}


/* ===== 100% EQUAL SIZE BALANCED LOGO STYLE ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
}

.brand-name, .footer-brand-name {
  display: inline-flex !important;
  align-items: center !important;
}

.brand-zava {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.brand-tech {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
  text-transform: uppercase !important;
  margin-left: 4px !important;
  line-height: 1 !important;
}

.brand-dot {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 19px !important;
  color: #34d399 !important;
  font-weight: 900 !important;
  margin-left: 0px !important;
  line-height: 1 !important;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}

html.light .brand-dot {
  color: #059669 !important;
}


/* ===== REFINED ELEGANT LOGO STYLE (15.5PX BOLD 800) ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
}

.nav-brand-logo {
  width: 28px !important;
  height: 28px !important;
}

.nav-brand-logo svg {
  width: 18px !important;
  height: 18px !important;
}

.brand-name, .footer-brand-name {
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.brand-zava {
  font-size: 15.5px !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.brand-tech {
  font-size: 15.5px !important;
  font-weight: 800 !important;
  letter-spacing: -0.015em !important;
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
  margin-left: 4px !important;
}

.brand-dot {
  font-size: 15.5px !important;
  font-weight: 800 !important;
  color: #34d399 !important;
  margin-left: 1px !important;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}

html.light .brand-dot {
  color: #059669 !important;
}


/* ===== PERFECT SWEET SPOT LOGO STYLE (17.5PX BOLD) ===== */
.nav-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  text-decoration: none !important;
}

.nav-brand-logo {
  width: 30px !important;
  height: 30px !important;
}

.nav-brand-logo svg {
  width: 20px !important;
  height: 20px !important;
}

.brand-name, .footer-brand-name {
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 17.5px !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.brand-zava {
  font-size: 17.5px !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.brand-tech {
  font-size: 17.5px !important;
  font-weight: 850 !important;
  letter-spacing: -0.025em !important;
  color: #34d399 !important;
  -webkit-text-fill-color: #34d399 !important;
  margin-left: 4px !important;
}

.brand-dot {
  font-size: 17.5px !important;
  font-weight: 850 !important;
  color: #34d399 !important;
  margin-left: 1px !important;
}

html.light .brand-zava {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
}

html.light .brand-tech {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}

html.light .brand-dot {
  color: #059669 !important;
}


/* ===== LOGO ICON NO BORDER CLEAN VECTOR STYLE ===== */
.nav-brand-logo {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s ease !important;
}

.nav-brand-logo svg {
  width: 24px !important;
  height: 24px !important;
  color: #34d399 !important;
  filter: drop-shadow(0 2px 8px rgba(52, 211, 153, 0.45)) !important;
}

.nav-brand:hover .nav-brand-logo {
  transform: scale(1.12) rotate(-5deg) !important;
  box-shadow: none !important;
}

html.light .nav-brand-logo svg {
  color: #059669 !important;
  filter: drop-shadow(0 2px 6px rgba(5, 150, 105, 0.2)) !important;
}


/* ===== ULTRA-PREMIUM FULL-WIDTH GLASS BAR (VERCEL/APPLE ENTERPRISE STYLE) ===== */
.nav-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 70px !important;
  border-radius: 0 !important;
  background: rgba(3, 7, 18, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
  padding: 0 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  z-index: 9999 !important;
  transform: none !important;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-header.scrolled {
  top: 0 !important;
  background: rgba(3, 7, 18, 0.94) !important;
  border-bottom: 1px solid rgba(52, 211, 153, 0.3) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(52, 211, 153, 0.15) !important;
}

.nav-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 211, 153, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.mega-menu-dropdown {
  top: 100% !important;
}

html.light .nav-header {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05) !important;
}

html.light .nav-header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(5, 150, 105, 0.3) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1) !important;
}


/* ===== ULTRA-SUBTLE REFINED BORDER BOTTOM ===== */
.nav-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.nav-header.scrolled {
  border-bottom: 1px solid rgba(52, 211, 153, 0.2) !important;
}

.nav-header::after {
  display: none !important;
}

html.light .nav-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}

html.light .nav-header.scrolled {
  border-bottom: 1px solid rgba(5, 150, 105, 0.2) !important;
}


/* ===== ULTRA-PRO SCHEDULE CALL HEADER CTA ===== */
.btn-nav-schedule {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  background: rgba(52, 211, 153, 0.1) !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.12) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  animation: schedulePulse 2s infinite ease-in-out;
}

@keyframes schedulePulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.btn-nav-schedule svg {
  width: 14px;
  height: 14px;
  color: #34d399;
  transition: transform 0.25s ease;
}

.btn-nav-schedule:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%) !important;
  border-color: #34d399 !important;
  color: #0b0f19 !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.45) !important;
}

.btn-nav-schedule:hover .schedule-dot {
  background: #0b0f19;
  box-shadow: none;
}

.btn-nav-schedule:hover svg {
  color: #0b0f19;
  transform: translateX(3px);
}

html.light .btn-nav-schedule {
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
  color: #0f172a !important;
  box-shadow: none !important;
}

html.light .btn-nav-schedule:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: #ffffff !important;
}

html.light .btn-nav-schedule:hover svg {
  color: #ffffff;
}


/* ===== ULTRA-PRO FOOTER STYLING & TELEMETRY ===== */
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  font-size: 12px;
  font-weight: 700;
  color: #34d399;
  margin-bottom: 24px;
}

.footer-cta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-footer-cta-primary, .btn-footer-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.btn-footer-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  color: #0b0f19;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-footer-cta-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.6);
}

.btn-footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-footer-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(52, 211, 153, 0.4);
  color: #34d399;
  transform: translateY(-2px);
}

.footer-telemetry-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

.footer-sla-badge {
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
}


/* ===== CONCEPT A: BENTO BOX COMMAND CONSOLE FOOTER ===== */
.bento-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .bento-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.bento-footer-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(10, 14, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-footer-card:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(52, 211, 153, 0.12);
  transform: translateY(-3px);
}

.bento-brand-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 16px 0 20px;
}

.bento-terminal-box {
  background: rgba(3, 7, 18, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
}

.bento-terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-terminal-dots {
  display: flex;
  gap: 4px;
}

.bento-terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.bento-terminal-dots span:nth-child(1) { background: #ef4444; }
.bento-terminal-dots span:nth-child(2) { background: #f59e0b; }
.bento-terminal-dots span:nth-child(3) { background: #10b981; }

.bento-terminal-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10.5px;
}

.bento-terminal-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.term-prompt { color: #34d399; }
.term-green { color: #34d399; font-weight: 700; }
.term-mint { color: #6ee7b7; font-weight: 700; }

.bento-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #34d399;
  margin-bottom: 16px;
}

.bento-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.bento-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bento-pill:hover {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
  transform: translateY(-2px);
}

.bento-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bento-nav-links a {
  font-size: 12.5px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.bento-nav-links a:hover {
  color: #34d399;
}

.bento-sla-status {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.2);
  margin-bottom: 20px;
}

.sla-gauge-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle, #059669 0%, #10b981 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #0b0f19;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.3);
}

.sla-num { font-size: 12px; font-weight: 900; line-height: 1; }
.sla-lbl { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }

.sla-info strong { display: block; font-size: 13px; color: #ffffff; }
.sla-info p { margin: 2px 0 0; font-size: 11.5px; color: var(--text-2); }

.bento-location-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-loc-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bento-loc-row strong { display: block; font-size: 13px; color: var(--text); }
.bento-loc-row span { font-size: 11.5px; color: var(--text-3); }

html.light .bento-footer-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05);
}

html.light .bento-footer-card:hover {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
}

html.light .bento-terminal-box {
  background: #0f172a;
}

html.light .bento-pill {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
  color: #1e293b;
}

html.light .bento-pill:hover {
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.3);
  color: #059669;
}


/* ===== ULTRA-PROFESSIONAL B2B ENTERPRISE FOOTER ===== */
.footer-main {
  background: #030712 !important;
  padding: 80px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
  position: relative !important;
}

.footer-enterprise-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 48px 40px !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%) !important;
  border: 1px solid rgba(52, 211, 153, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  margin-bottom: 72px !important;
}

@media (max-width: 991px) {
  .footer-enterprise-cta {
    flex-direction: column !important;
    gap: 32px !important;
    text-align: center !important;
    padding: 36px 24px !important;
  }
}

.footer-cta-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  font-weight: 750 !important;
  color: #34d399 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 12px !important;
}

.cta-eyebrow-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #34d399 !important;
  box-shadow: 0 0 10px #34d399 !important;
}

.footer-cta-headline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 12px 0 !important;
}

.footer-cta-body {
  font-size: 15px !important;
  color: #94a3b8 !important;
  max-width: 620px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.footer-cta-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 640px) {
  .footer-cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  .btn-ent-primary, .btn-ent-secondary {
    width: 100% !important;
    justify-content: center !important;
  }
}

.btn-ent-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%) !important;
  color: #0b0f19 !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-ent-primary:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.6) !important;
}

.btn-ent-secondary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 14px 26px !important;
  border-radius: 100px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.btn-ent-secondary:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(52, 211, 153, 0.4) !important;
  color: #34d399 !important;
}

.footer-ent-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.1fr 1.4fr !important;
  gap: 40px !important;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 1100px) {
  .footer-ent-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 40px 30px !important;
  }
}

@media (max-width: 768px) {
  .footer-ent-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 500px) {
  .footer-ent-grid {
    grid-template-columns: 1fr !important;
  }
}

.footer-ent-desc {
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  line-height: 1.65 !important;
  margin: 18px 0 20px 0 !important;
  max-width: 320px !important;
}

.footer-cert-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.cert-badge {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #34d399 !important;
  background: rgba(52, 211, 153, 0.08) !important;
  border: 1px solid rgba(52, 211, 153, 0.2) !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
}

.footer-ent-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  color: #ffffff !important;
  margin: 0 0 20px 0 !important;
}

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

.footer-ent-links a {
  font-size: 13.5px !important;
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  display: inline-block !important;
}

.footer-ent-links a:hover {
  color: #34d399 !important;
  transform: translateX(3px) !important;
}

.ent-info-block {
  margin-bottom: 16px !important;
}

.ent-info-label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #64748b !important;
  margin-bottom: 4px !important;
}

.ent-info-val {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
}

.ent-info-email {
  display: inline-block !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  color: #34d399 !important;
  text-decoration: none !important;
}

.ent-info-email:hover {
  text-decoration: underline !important;
}

.footer-ent-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 28px 0 !important;
  font-size: 12.5px !important;
  color: #64748b !important;
}

@media (max-width: 768px) {
  .footer-ent-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    text-align: center !important;
  }
}

.footer-ent-legal {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.footer-ent-legal a {
  color: #64748b !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.footer-ent-legal a:hover {
  color: #94a3b8 !important;
}

.legal-sep {
  color: #334155 !important;
}

.sla-badge-subtle {
  font-size: 11.5px !important;
  font-weight: 700 !important;
  color: #34d399 !important;
}

html.light .footer-main {
  background: #f8fafc !important;
  border-top-color: rgba(15, 23, 42, 0.08) !important;
}

html.light .footer-enterprise-cta {
  background: #ffffff !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08) !important;
}

html.light .footer-cta-headline {
  color: #0f172a !important;
}

html.light .footer-ent-title {
  color: #0f172a !important;
}

html.light .footer-ent-links a {
  color: #475569 !important;
}

html.light .footer-ent-links a:hover {
  color: #059669 !important;
}

html.light .ent-info-val {
  color: #1e293b !important;
}


/* ===== ULTRA-PRO WORLD-CLASS ENTERPRISE FOOTER & WATERMARK ===== */
.footer-infra-strip {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 24px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  margin-bottom: 56px !important;
  font-size: 12.5px !important;
  color: #94a3b8 !important;
}

@media (max-width: 991px) {
  .footer-infra-strip {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }
}

.infra-pulse-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #34d399 !important;
  display: inline-block !important;
  margin-right: 6px !important;
  box-shadow: 0 0 10px #34d399 !important;
  animation: schedulePulse 2s infinite !important;
}

.infra-nodes {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
}

.infra-sep {
  color: rgba(255, 255, 255, 0.15) !important;
}

.footer-watermark-container {
  width: 100% !important;
  overflow: hidden !important;
  text-align: center !important;
  margin-top: 40px !important;
  margin-bottom: -10px !important;
  user-select: none !important;
  pointer-events: none !important;
}

.footer-brand-watermark {
  font-family: 'Bebas Neue', 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(60px, 13vw, 190px) !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  line-height: 0.85 !important;
  color: transparent !important;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06) !important;
  text-transform: uppercase !important;
  display: block !important;
  white-space: nowrap !important;
  opacity: 0.8 !important;
  transition: -webkit-text-stroke 0.3s ease !important;
}

html.light .footer-brand-watermark {
  -webkit-text-stroke: 1.5px rgba(15, 23, 42, 0.06) !important;
}

html.light .footer-infra-strip {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

html.light .infra-nodes {
  color: #1e293b !important;
}


/* ===== STYLE 1: ULTRA-FUTURISTIC CYBER COCKPIT HUD FOOTER ===== */
.cyber-hud-footer {
  background: #020617 !important;
  padding: 60px 0 0 !important;
  border-top: 1px solid rgba(52, 211, 153, 0.25) !important;
  position: relative !important;
  font-family: 'Space Mono', 'Plus Jakarta Sans', monospace !important;
}

.hud-top-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 24px !important;
  border-radius: 100px !important;
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  margin-bottom: 40px !important;
  backdrop-filter: blur(16px) !important;
  font-size: 12px !important;
  color: #94a3b8 !important;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.12) !important;
}

@media (max-width: 991px) {
  .hud-top-bar {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    border-radius: 20px !important;
  }
}

.hud-status-badge {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 750 !important;
  color: #34d399 !important;
  letter-spacing: 0.05em !important;
}

.hud-pulse-ring {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #34d399 !important;
  box-shadow: 0 0 12px #34d399 !important;
  animation: schedulePulse 1.5s infinite ease-in-out !important;
}

.hud-sys-info {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 11.5px !important;
}

.hud-divider {
  color: rgba(255, 255, 255, 0.15) !important;
}

.cyber-hud-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 1.6fr 1.1fr !important;
  gap: 24px !important;
  margin-bottom: 40px !important;
}

@media (max-width: 1024px) {
  .cyber-hud-grid {
    grid-template-columns: 1fr !important;
  }
}

.hud-panel {
  padding: 24px !important;
  border-radius: 20px !important;
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hud-panel:hover {
  border-color: rgba(52, 211, 153, 0.35) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(52, 211, 153, 0.15) !important;
  transform: translateY(-2px) !important;
}

.hud-panel-title {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  color: #34d399 !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
}

.radar-display-box {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.radar-circle {
  width: 96px !important;
  height: 96px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(52, 211, 153, 0.3) !important;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.1) 0%, transparent 70%) !important;
  position: relative !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}

.radar-sweep-line {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 50% !important;
  height: 2px !important;
  background: linear-gradient(90deg, #34d399 0%, transparent 100%) !important;
  transform-origin: 0% 50% !important;
  animation: radarSweep 4s linear infinite !important;
}

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

.radar-ping {
  position: absolute !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: #34d399 !important;
  box-shadow: 0 0 8px #34d399 !important;
}

.ping-dn { top: 30%; left: 45%; }
.ping-sf { top: 60%; left: 75%; }
.ping-ldn { top: 25%; left: 70%; }
.ping-syd { top: 75%; left: 35%; }

.radar-node-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

.radar-node-item {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 11.5px !important;
  color: #cbd5e1 !important;
  background: rgba(255, 255, 255, 0.03) !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
}

.node-ping {
  color: #34d399 !important;
  font-weight: 700 !important;
}

.holo-cards-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
}

@media (max-width: 640px) {
  .holo-cards-grid { grid-template-columns: 1fr !important; }
}

.holo-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.holo-card:hover {
  background: rgba(52, 211, 153, 0.1) !important;
  border-color: rgba(52, 211, 153, 0.35) !important;
  transform: translateY(-2px) !important;
}

.holo-num {
  font-size: 11px !important;
  font-weight: 900 !important;
  color: #34d399 !important;
  background: rgba(52, 211, 153, 0.15) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
}

.holo-info strong {
  display: block !important;
  font-size: 12px !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.holo-info span {
  font-size: 10.5px !important;
  color: #94a3b8 !important;
}

.hud-brand-box {
  margin-bottom: 12px !important;
}

.hud-desc {
  font-size: 12px !important;
  color: #94a3b8 !important;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

.btn-hud-emergency {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  border-radius: 100px !important;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%) !important;
  color: #0b0f19 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.35) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 12px !important;
}

.btn-hud-emergency:hover {
  transform: scale(1.03) !important;
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.55) !important;
}

.emergency-pulse {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #0b0f19 !important;
}

.hud-email-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #34d399 !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.hud-email-box:hover {
  background: rgba(52, 211, 153, 0.1) !important;
  border-color: rgba(52, 211, 153, 0.3) !important;
}


/* ===== STYLE 2: NEO-BRUTALIST LUXURY MONOLITH FOOTER ===== */
.luxury-monolith-footer {
  background: #09090b !important;
  padding: 90px 0 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative !important;
}

.monolith-cta-box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 56px 48px !important;
  border-radius: 28px !important;
  background: #121215 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 72px !important;
}

@media (max-width: 991px) {
  .monolith-cta-box {
    flex-direction: column !important;
    gap: 36px !important;
    text-align: center !important;
    padding: 40px 24px !important;
  }
}

.monolith-eyebrow {
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  color: #34d399 !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 12px !important;
}

.monolith-headline {
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-size: clamp(32px, 4.5vw, 54px) !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin: 0 0 14px 0 !important;
}

.monolith-headline em {
  font-style: italic !important;
  color: #34d399 !important;
}

.monolith-sub {
  font-size: 15px !important;
  color: #a1a1aa !important;
  max-width: 580px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.monolith-cta-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 991px) {
  .monolith-cta-right {
    align-items: center !important;
    width: 100% !important;
  }
}

.btn-monolith-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 15px 32px !important;
  border-radius: 100px !important;
  background: #ffffff !important;
  color: #09090b !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-monolith-primary:hover {
  background: #34d399 !important;
  color: #09090b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(52, 211, 153, 0.4) !important;
}

.monolith-email-link {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #a1a1aa !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.monolith-email-link:hover {
  color: #34d399 !important;
}

.monolith-grid {
  display: grid !important;
  grid-template-columns: 1.8fr 1.2fr 1.2fr 1.3fr !important;
  gap: 48px !important;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 991px) {
  .monolith-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 500px) {
  .monolith-grid {
    grid-template-columns: 1fr !important;
  }
}

.monolith-brand-desc {
  font-size: 13.5px !important;
  color: #a1a1aa !important;
  line-height: 1.65 !important;
  margin: 18px 0 20px 0 !important;
  max-width: 340px !important;
}

.monolith-trust-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #34d399 !important;
}

.trust-sep {
  color: rgba(255, 255, 255, 0.2) !important;
}

.monolith-nav-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  color: #ffffff !important;
  margin: 0 0 22px 0 !important;
}

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

.monolith-nav-list a {
  font-size: 13.5px !important;
  color: #a1a1aa !important;
  text-decoration: none !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  display: inline-block !important;
}

.monolith-nav-list a:hover {
  color: #34d399 !important;
  transform: translateX(3px) !important;
}

.monolith-info-item {
  margin-bottom: 18px !important;
}

.monolith-info-lbl {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #71717a !important;
  margin-bottom: 4px !important;
}

.monolith-info-val {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #e4e4e7 !important;
}

.monolith-info-email {
  display: inline-block !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  color: #34d399 !important;
  text-decoration: none !important;
}

.monolith-info-email:hover {
  text-decoration: underline !important;
}


/* ===== PERFECTED LUXURY MONOLITH FOOTER REFINEMENTS ===== */
.monolith-cta-box {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.monolith-cta-box:hover {
  border-color: rgba(52, 211, 153, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(52, 211, 153, 0.1) !important;
}

.monolith-newsletter-box {
  margin-bottom: 20px !important;
}

.monolith-newsletter-form {
  display: flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 100px !important;
  padding: 4px 6px 4px 16px !important;
  transition: border-color 0.3s ease !important;
}

.monolith-newsletter-form:focus-within {
  border-color: #34d399 !important;
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.2) !important;
}

.monolith-newsletter-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  width: 100% !important;
}

.monolith-newsletter-input::placeholder {
  color: #71717a !important;
}

.monolith-newsletter-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #34d399 !important;
  border: none !important;
  color: #09090b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s ease !important;
}

.monolith-newsletter-btn:hover {
  transform: scale(1.1) !important;
}

.monolith-nav-list a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.mono-arrow {
  font-size: 16px !important;
  color: #34d399 !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.monolith-nav-list a:hover .mono-arrow {
  opacity: 1 !important;
  transform: translateX(0) !important;
}


/* ===== ALTERNATING VISUAL RHYTHM SECTION BACKGROUNDS ===== */
/* Section 02: Client Logos & Marquee */
.client-trust-section, .marquee-section {
  background: #0b1120 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Section 04: Process / Methodology */
.process-section, .laser-pipeline-container {
  background: rgba(15, 23, 42, 0.75) !important;
  backdrop-filter: blur(16px) !important;
  border-top: 1px solid rgba(52, 211, 153, 0.15) !important;
  border-bottom: 1px solid rgba(52, 211, 153, 0.15) !important;
}

/* Section 06: Works / Case Studies */
.works-section, .case-studies-section {
  background: #0f172a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Section 07: FAQ Accordion */
.faq-section {
  background: #030712 !important;
}

/* Light Mode Overrides */
html.light .client-trust-section, html.light .marquee-section {
  background: #f1f5f9 !important;
  border-color: rgba(15, 23, 42, 0.06) !important;
}

html.light .process-section, html.light .laser-pipeline-container {
  background: #f8fafc !important;
  border-color: rgba(5, 150, 105, 0.15) !important;
}

html.light .works-section, html.light .case-studies-section {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.06) !important;
}

html.light .faq-section {
  background: #f8fafc !important;
}


/* ===== NEON.TECH INSPIRED ULTRA-PREMIUM UI/UX ENHANCEMENTS ===== */
/* Electric Neon Glow Cards & Sheen Overlay */
.service-card-modern, .stat-card-modern, .monolith-cta-box {
  position: relative !important;
  overflow: hidden !important;
  background: rgba(11, 17, 32, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card-modern::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.12), transparent) !important;
  transition: left 0.6s ease !important;
  pointer-events: none !important;
}

.service-card-modern:hover::before {
  left: 100% !important;
}

.service-card-modern:hover {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: rgba(52, 211, 153, 0.4) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(52, 211, 153, 0.15) !important;
  transform: translateY(-5px) !important;
}

/* Neon Glow Code Snippet Badges */
.neon-code-badge {
  font-family: 'Space Mono', monospace !important;
  font-size: 11px !important;
  color: #34d399 !important;
  background: rgba(52, 211, 153, 0.1) !important;
  border: 1px solid rgba(52, 211, 153, 0.25) !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  display: inline-block !important;
}

/* High-Contrast Interactive Accordion (Neon Style) */
.faq-item {
  border-radius: 16px !important;
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s ease !important;
  margin-bottom: 12px !important;
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(52, 211, 153, 0.3) !important;
  background: rgba(15, 23, 42, 0.85) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(52, 211, 153, 0.08) !important;
}

html.light .service-card-modern {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
}

html.light .service-card-modern:hover {
  border-color: rgba(5, 150, 105, 0.35) !important;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08) !important;
}


/* ===== STYLES FOR THE 4 NEW HOME PAGE SECTIONS ===== */
/* Section 02: Trust Stats & Marquee */
.trust-marquee-section {
  padding: 60px 0;
  background: #0b1120 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .trust-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.trust-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #34d399;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-lbl {
  font-size: 12.5px;
  color: #94a3b8;
  font-weight: 600;
}

.trust-marquee-label {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #64748b;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 30px;
  animation: marqueeScroll 25s linear infinite;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #e2e8f0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-dot { color: #34d399; }

/* Section 06: Tech Stack Grid */
.tech-stack-section {
  padding: 100px 0;
  background: #030712 !important;
}

.tech-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .tech-grid-container { grid-template-columns: repeat(2, 1fr); }
}

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

.tech-category-card {
  padding: 28px 22px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.tech-category-card:hover {
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(52, 211, 153, 0.12);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tech-icon { font-size: 20px; }

.tech-card-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.tech-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  font-size: 11.5px;
  font-weight: 700;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.tech-pill:hover {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}

/* Section 08: Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: #0f172a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  padding: 32px 28px;
  border-radius: 24px;
  background: rgba(10, 14, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-quote {
  font-size: 14.5px;
  color: #e2e8f0;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 24px 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
  color: #0b0f19;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name { display: block; font-size: 13.5px; color: #ffffff; }
.author-role { display: block; font-size: 11.5px; color: #94a3b8; }

/* Section 09: Scope Calculator */
.calculator-section {
  padding: 90px 0;
  background: #030712 !important;
}

.calc-widget-card {
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .calc-widget-card { padding: 28px 20px; }
}

.calc-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: #ffffff;
  margin: 12px 0 8px 0;
}

.calc-sub {
  font-size: 14.5px;
  color: #94a3b8;
  margin: 0 0 32px 0;
}

.calc-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #34d399;
  margin-bottom: 14px;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.calc-pill-btn {
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.calc-pill-btn.active, .calc-pill-btn:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: #34d399;
  color: #34d399;
}

.calc-result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

@media (max-width: 768px) {
  .calc-result-box {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

.result-lbl { display: block; font-size: 11.5px; color: #64748b; font-weight: 700; uppercase; }
.result-val { display: block; font-size: 18px; color: #34d399; font-weight: 800; }

.btn-calc-cta {
  padding: 12px 24px;
  border-radius: 100px;
  background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  color: #0b0f19;
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(52, 211, 153, 0.35);
  transition: all 0.3s ease;
}

.btn-calc-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(52, 211, 153, 0.5);
}


/* ===== CINEMATIC ULTRA-LUXURY OVERHAUL FOR HOME SECTIONS ===== */

/* Section 02: Trust Stats & Marquee */
.trust-marquee-section {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 0%, rgba(52, 211, 153, 0.05) 0%, #060913 70%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.trust-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.trust-stat-item {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-stat-item:hover {
  border-color: rgba(52, 211, 153, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(52, 211, 153, 0.1);
}

.trust-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-stat-lbl {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Section 06: Tech Stack Holographic Grid */
.tech-stack-section {
  padding: 110px 0;
  background: #030712 !important;
  position: relative;
}

.tech-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.tech-category-card {
  position: relative;
  padding: 32px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(7, 11, 21, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-category-card:hover::before {
  opacity: 1;
}

.tech-category-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(52, 211, 153, 0.15);
}

.tech-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tech-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.tech-card-header h3 {
  font-size: 17px;
  font-weight: 850;
  color: #ffffff;
  margin: 0;
}

.tech-pills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-pill {
  font-size: 11.5px;
  font-weight: 750;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.tech-pill:hover {
  color: #09090b;
  background: #34d399;
  border-color: #34d399;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
}

/* Section 08: Cinematic Testimonials Grid */
.testimonials-section {
  padding: 110px 0;
  background: #090d16 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testimonial-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.7) 0%, rgba(7, 11, 21, 0.85) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(52, 211, 153, 0.12);
}

.testi-stars {
  color: #34d399;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-quote {
  font-size: 15px;
  color: #f1f5f9;
  line-height: 1.7;
  font-weight: 450;
  margin: 0 0 28px 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
  color: #09090b;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.author-name { display: block; font-size: 14px; color: #ffffff; font-weight: 800; }
.author-role { display: block; font-size: 12px; color: #94a3b8; font-weight: 600; margin-top: 2px; }

/* Section 09: Luxury Consultation Console Calculator */
.calculator-section {
  padding: 100px 0;
  background: #030712 !important;
}

.calc-widget-card {
  padding: 56px 48px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 9, 18, 0.98) 100%);
  border: 1px solid rgba(52, 211, 153, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(52, 211, 153, 0.1);
  position: relative;
  overflow: hidden;
}

.calc-title {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 14px 0 10px 0;
}

.calc-sub {
  font-size: 15px;
  color: #a1a1aa;
  margin: 0 0 36px 0;
  line-height: 1.6;
}

.calc-label {
  display: block;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #34d399;
  margin-bottom: 16px;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.calc-pill-btn {
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 13.5px;
  font-weight: 750;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calc-pill-btn.active, .calc-pill-btn:hover {
  background: rgba(52, 211, 153, 0.18);
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.25);
  transform: translateY(-2px);
}

.calc-result-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-radius: 22px;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.result-lbl { display: block; font-size: 11px; color: #71717a; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.result-val { display: block; font-size: 20px; color: #34d399; font-weight: 850; }

.btn-calc-cta {
  padding: 14px 28px;
  border-radius: 100px;
  background: #ffffff;
  color: #09090b;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-calc-cta:hover {
  background: #34d399;
  color: #09090b;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(52, 211, 153, 0.4);
}


/* ===== INTERACTIVE TECH COMMAND STUDIO STYLES ===== */
.tech-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 36px;
}

.tech-tab-btn {
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-tab-btn.active, .tech-tab-btn:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.2);
  transform: translateY(-2px);
}

.tech-studio-container {
  max-width: 1000px;
  margin: 0 auto;
}

.tech-terminal-card {
  border-radius: 24px;
  background: #090d16;
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(52, 211, 153, 0.1);
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-filename {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #cbd5e1;
  font-weight: 700;
}

.terminal-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

.terminal-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  padding: 28px;
  background: #040711;
}

@media (max-width: 768px) {
  .terminal-body { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
}

.terminal-code-col pre {
  margin: 0;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: #34d399;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .terminal-metrics-col { padding-left: 0; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 16px; }
}

.metric-chip {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-lbl {
  display: block;
  font-size: 11px;
  color: #71717a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.metric-val {
  display: block;
  font-size: 14px;
  color: #ffffff;
  font-weight: 800;
}


/* ===== VISUAL INTERACTIVE SPEC GRID STYLES ===== */
.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .tech-spec-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.tech-spec-card {
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.8) 0%, rgba(6, 9, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tech-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #34d399, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tech-spec-card:hover::before {
  opacity: 1;
}

.tech-spec-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(52, 211, 153, 0.15);
}

.spec-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.spec-card-title {
  font-size: 16.5px;
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.spec-card-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.spec-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-metric-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: #34d399;
}

.spec-tech-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #a1a1aa;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}


/* ===== MINIMALIST TECH ECOSYSTEM BADGE MATRIX ===== */
.tech-badge-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .tech-badge-matrix { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .tech-badge-matrix { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .tech-badge-matrix { grid-template-columns: 1fr; }
}

.tech-badge-item {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tech-badge-item:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(52, 211, 153, 0.1);
}

.tech-dot-indicator {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.tech-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.tech-sub {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}


/* ===== PRODUCT SHOWCASE & GLOBAL COVERAGE SECTION STYLES ===== */
/* Product Showcase Section */
.product-showcase-section {
  padding: 100px 0;
  background: #060913 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.showcase-tab-btn {
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #a1a1aa;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 750;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-tab-btn.active, .showcase-tab-btn:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.2);
  transform: translateY(-2px);
}

.showcase-window-container {
  max-width: 1000px;
  margin: 0 auto;
}

.showcase-frame {
  border-radius: 24px;
  background: #090d16;
  border: 1px solid rgba(52, 211, 153, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(52, 211, 153, 0.12);
  overflow: hidden;
}

.frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.frame-dots {
  display: flex;
  gap: 8px;
}

.frame-url-bar {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #a1a1aa;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.frame-status {
  font-size: 10px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 8px;
  border-radius: 100px;
}

.showcase-view-body {
  padding: 32px;
  background: #030712;
  min-height: 320px;
}

.demo-ui-box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
}

@media (max-width: 768px) {
  .demo-ui-box { grid-template-columns: 1fr; }
}

.demo-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 20px;
}

.sidebar-logo {
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb-item {
  font-size: 13px;
  color: #94a3b8;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.sb-item.active {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  font-weight: 750;
}

.demo-header-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.demo-header-strip h3 {
  font-size: 18px;
  font-weight: 850;
  color: #ffffff;
  margin: 0;
}

.badge-green {
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.demo-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .demo-cards-row { grid-template-columns: 1fr; }
}

.d-card {
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: 12px;
}

.d-lbl { display: block; font-size: 11px; color: #71717a; margin-bottom: 4px; uppercase; }
.d-val { display: block; font-size: 17px; color: #ffffff; font-weight: 850; }

/* Global Coverage Section */
.global-coverage-section {
  padding: 100px 0;
  background: #030712 !important;
}

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

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

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

.region-card {
  padding: 30px 24px;
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.region-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(52, 211, 153, 0.12);
}

.hq-card {
  border-color: rgba(52, 211, 153, 0.35);
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.region-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.region-flag { font-size: 24px; }

.region-header h3 {
  font-size: 17px;
  font-weight: 850;
  color: #ffffff;
  margin: 0;
}

.region-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.region-badge {
  font-size: 11px;
  font-weight: 750;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.hq-badge {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.3);
}


/* ===== ULTRA-LUXURY STYLE REFINEMENTS & AMBIENT GLOW ===== */
.section-title-large {
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin-top: 10px !important;
  margin-bottom: 14px !important;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #6ee7b7 50%, #34d399 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}

.section-desc-center {
  font-size: 15.5px !important;
  color: #94a3b8 !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}

.showcase-frame {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 45px rgba(52, 211, 153, 0.15) !important;
}

.showcase-frame:hover {
  border-color: rgba(52, 211, 153, 0.45) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 0 55px rgba(52, 211, 153, 0.22) !important;
  transform: translateY(-4px) !important;
}

.region-card {
  position: relative !important;
  overflow: hidden !important;
}

.region-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.12), transparent) !important;
  transition: left 0.6s ease !important;
  pointer-events: none !important;
}

.region-card:hover::before {
  left: 100% !important;
}

.btn-explore-pill {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-explore-pill:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.25) !important;
}


/* ===== CINEMATIC DASHBOARD DEMO & LUXURY REGION CARDS STYLES ===== */
.pulse-green-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
  display: inline-block;
  margin-right: 4px;
}

.cinematic-dashboard-preview {
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}

.dash-top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dash-brand-name {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-right: 12px;
}

.dash-ver {
  font-size: 11px;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

.dash-metrics-strip {
  display: flex;
  gap: 16px;
}

.dash-chip { font-size: 12px; color: #94a3b8; }
.chip-val { color: #ffffff; }
.text-green { color: #34d399 !important; }

.dash-grid-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .dash-grid-main { grid-template-columns: 1fr; }
}

.dash-panel-card {
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 16px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-head h4 {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.panel-tag {
  font-size: 10px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
}

.chart-bars-visual {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 70px;
  margin-bottom: 14px;
}

.bar-col {
  flex: 1;
  background: rgba(52, 211, 153, 0.25);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.active-bar {
  background: linear-gradient(180deg, #34d399 0%, #059669 100%);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.5);
}

.panel-val-large {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.val-sub { font-size: 12px; color: #94a3b8; font-weight: 600; }

.services-mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mini-svc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 12px;
}

.svc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}

.svc-name { color: #e2e8f0; font-weight: 600; flex: 1; margin-left: 8px; }
.svc-ms { color: #34d399; font-weight: 750; font-family: "Space Mono", monospace; }

/* Region Card Upgrade */
.region-head-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.region-code-badge {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.hq-code {
  color: #ffffff;
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
  border: none;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.4);
}

.region-coord {
  font-family: "Space Mono", monospace;
  font-size: 10.5px;
  color: #64748b;
  font-weight: 600;
}

.region-title-text {
  font-size: 18px;
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 10px 0;
}

.region-footer-tag {
  font-size: 11.5px;
  font-weight: 750;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.hq-footer {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.35);
}


/* ===== DEFINITIVE FULL-WIDTH ULTRA-PREMIUM GLASS HEADER ===== */
.nav-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 70px !important;
  padding: 0 40px !important;
  border-radius: 0 !important;
  background: rgba(9, 13, 22, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  z-index: 9999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .nav-header {
    height: 64px !important;
    padding: 0 20px !important;
  }
}


/* ===== ULTRA-LUXURY BENTO PORTFOLIO SHOWCASE STYLES ===== */
.works-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .works-bento-grid { grid-template-columns: 1fr; }
}

.work-bento-card {
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.8) 0%, rgba(6, 9, 18, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.hero-work-card {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .hero-work-card { grid-column: span 1; }
}

.work-bento-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(52, 211, 153, 0.15);
}

.work-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.hero-work-card .work-card-media {
  height: 320px;
}

.work-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-bento-card:hover .work-media-img {
  transform: scale(1.06);
}

.work-media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 9, 18, 0.95) 100%);
}

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

.work-meta-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.work-badge {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
}

.work-client-tag {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 700;
}

.work-hero-title {
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.work-sub-title {
  font-size: 20px;
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
}

.work-hero-desc, .work-sub-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.work-stats-row {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.w-lbl { display: block; font-size: 11px; color: #64748b; font-weight: 700; uppercase; }
.w-val { display: block; font-size: 16px; color: #34d399; font-weight: 850; }

.work-cta-link {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.work-cta-link:hover {
  color: #34d399;
  transform: translateX(4px);
}


/* ===== HIGH-CONTRAST CLEAN WORKS GRID STYLES ===== */
.works-clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .works-clean-grid { grid-template-columns: 1fr; }
}

.work-clean-card {
  border-radius: 24px;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-clean-card:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(52, 211, 153, 0.15);
}

.work-img-frame {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #030712;
}

.work-clean-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-clean-card:hover .work-clean-img {
  transform: scale(1.05);
}

.work-clean-body {
  padding: 28px;
  background: #060913;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.work-clean-title {
  font-size: 22px;
  font-weight: 850;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.work-clean-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 20px 0;
}


/* ===== CINEMATIC ALTERNATING ROW SHOWCASE STYLES ===== */
.works-rows-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 56px;
}

.work-alt-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.75) 0%, rgba(6, 9, 18, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-alt-row.row-flipped {
  grid-template-columns: 1fr 1.15fr;
}

@media (max-width: 991px) {
  .work-alt-row, .work-alt-row.row-flipped {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
}

.work-alt-row:hover {
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(52, 211, 153, 0.12);
  transform: translateY(-4px);
}

.work-row-media {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.work-media-inner {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #030712;
}

@media (max-width: 768px) {
  .work-media-inner { height: 220px; }
}

.work-row-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-alt-row:hover .work-row-img {
  transform: scale(1.05);
}

.work-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6, 9, 18, 0.4) 100%);
}

.work-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-row-title {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.work-row-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 24px 0;
}

.work-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .work-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.w-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-radius: 14px;
}

.btn-work-cta {
  padding: 12px 24px;
  border-radius: 100px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-work-cta:hover {
  background: #34d399;
  color: #09090b;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.35);
  transform: translateY(-2px);
}


/* ===== COMPREHENSIVE LIGHT MODE (html.light) OVERRIDES ===== */
html.light body {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

html.light .section-title-large {
  color: #0f172a !important;
}

html.light .gradient-text {
  background: linear-gradient(135deg, #0f172a 0%, #059669 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

html.light .section-desc-center {
  color: #475569 !important;
}

/* Product Showcase Light Mode */
html.light .product-showcase-section {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

html.light .showcase-tab-btn {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
}

html.light .showcase-tab-btn.active, html.light .showcase-tab-btn:hover {
  background: rgba(5, 150, 105, 0.1) !important;
  border-color: #059669 !important;
  color: #059669 !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.15) !important;
}

html.light .showcase-frame {
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15) !important;
}

/* Works Showcase Light Mode */
html.light .works-section {
  background: #ffffff !important;
}

html.light .work-alt-row {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05) !important;
}

html.light .work-alt-row:hover {
  border-color: #059669 !important;
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.12) !important;
}

html.light .work-row-title {
  color: #0f172a !important;
}

html.light .work-row-desc {
  color: #475569 !important;
}

html.light .w-stat-box {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
}

html.light .w-lbl {
  color: #64748b !important;
}

html.light .w-val {
  color: #059669 !important;
}

html.light .btn-work-cta {
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.3) !important;
  color: #059669 !important;
}

html.light .btn-work-cta:hover {
  background: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25) !important;
}

/* Global Coverage Light Mode */
html.light .global-coverage-section {
  background: #f8fafc !important;
}

html.light .region-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

html.light .region-card:hover {
  border-color: #059669 !important;
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12) !important;
}

html.light .region-title-text {
  color: #0f172a !important;
}

html.light .region-desc {
  color: #475569 !important;
}

html.light .region-code-badge {
  color: #059669 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
}

html.light .region-footer-tag {
  color: #475569 !important;
  background: #f1f5f9 !important;
  border-color: #e2e8f0 !important;
}

html.light .hq-card {
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.05) 0%, #ffffff 100%) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
}


/* ===== DEDICATED MOBILE UI/UX & TOUCH OPTIMIZATIONS (<= 768px & <= 480px) ===== */
@media (max-width: 768px) {
  .nav-header {
    height: 60px !important;
    padding: 0 16px !important;
  }

  .nav-brand {
    font-size: 18px !important;
  }

  .nav-brand-logo {
    width: 26px !important;
    height: 26px !important;
  }

  .btn-nav-schedule {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  /* Horizontal Scrollable Tabs on Mobile */
  .showcase-tabs-nav, .tech-tabs-nav {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .showcase-tabs-nav::-webkit-scrollbar, .tech-tabs-nav::-webkit-scrollbar {
    display: none !important;
  }

  .showcase-tab-btn, .tech-tab-btn {
    flex-shrink: 0 !important;
    padding: 10px 18px !important;
    font-size: 12.5px !important;
  }

  .showcase-view-body {
    padding: 16px !important;
    min-height: auto !important;
  }

  .cinematic-dashboard-preview {
    padding: 16px !important;
  }

  .dash-top-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .dash-metrics-strip {
    width: 100% !important;
    justify-content: space-between !important;
  }

  .work-alt-row, .work-alt-row.row-flipped {
    grid-template-columns: 1fr !important;
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .work-media-inner {
    height: 200px !important;
  }

  .work-row-title {
    font-size: 22px !important;
  }

  .work-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .global-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .calc-result-box {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
  }

  .btn-calc-cta {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .btn-nav-schedule span:not(.schedule-dot) {
    display: none !important;
  }

  .btn-nav-schedule {
    padding: 8px 10px !important;
    border-radius: 50% !important;
  }

  .btn-nav-schedule svg {
    margin: 0 !important;
  }

  .footer-watermark {
    font-size: 80px !important;
    letter-spacing: 0.05em !important;
  }
}


/* ===== PRO ULTRA-LUXURY MOBILE HEADER & DRAWER MENU ===== */
@media (max-width: 768px) {
  .nav-header {
    height: 64px !important;
    padding: 0 18px !important;
    background: rgba(6, 9, 18, 0.92) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 9999 !important;
  }

  .nav-brand {
    font-size: 19px !important;
    font-weight: 900 !important;
    gap: 8px !important;
  }

  .nav-brand-logo {
    width: 28px !important;
    height: 28px !important;
  }

  .nav-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .btn-theme-toggle {
    width: 36px !important;
    height: 36px !important;
  }

  .btn-nav-schedule {
    padding: 8px 12px !important;
    font-size: 12px !important;
    border-radius: 100px !important;
  }

  .mobile-toggle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-toggle svg {
    width: 20px !important;
    height: 20px !important;
    stroke: #ffffff !important;
  }

  /* Mobile Drawer Menu Overhaul */
  .mobile-drawer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    background: rgba(6, 9, 18, 0.98) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .mobile-drawer.open, .mobile-drawer.active {
    transform: translateX(0) !important;
  }

  .drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .drawer-close, #mobile-drawer-close {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }

  .drawer-body, .mobile-drawer-content {
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
    overflow-y: auto !important;
  }

  .mobile-drawer-links a, .drawer-menu a {
    font-size: 19px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.25s ease !important;
  }

  .mobile-drawer-links a:hover, .mobile-drawer-links a.active {
    background: rgba(52, 211, 153, 0.12) !important;
    border-color: rgba(52, 211, 153, 0.35) !important;
    color: #34d399 !important;
  }

  .drawer-footer {
    padding: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .btn-drawer-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 16px !important;
    border-radius: 100px !important;
    background: #34d399 !important;
    color: #090d16 !important;
    font-weight: 850 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    box-shadow: 0 0 25px rgba(52, 211, 153, 0.3) !important;
  }
}


/* ===== WORLD-CLASS ENTERPRISE MOBILE DRAWER STYLES ===== */
.drawer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-status-pill {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 800;
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-nav-item:hover, .drawer-nav-item:active {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-2px);
}

.drawer-item-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  flex-shrink: 0;
}

.drawer-item-icon svg {
  width: 18px;
  height: 18px;
}

.drawer-item-title {
  font-size: 16px;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 2px;
}

.drawer-item-sub {
  font-size: 12px;
  color: #94a3b8;
}

.drawer-item-arrow {
  font-size: 16px;
  color: #64748b;
  transition: all 0.25s ease;
}

.drawer-nav-item:hover .drawer-item-arrow {
  color: #34d399;
  transform: translateX(4px);
}

.drawer-hubs-box {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 18px;
}

.drawer-box-title {
  font-size: 11px;
  font-weight: 800;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.drawer-hubs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hub-chip {
  font-size: 11.5px;
  font-weight: 750;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hq-chip {
  color: #34d399;
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
}

.drawer-contact-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  font-size: 12px;
  color: #64748b;
}

.drawer-contact-line a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 700;
}

.drawer-contact-line a:hover {
  color: #34d399;
}


/* ===== DEDICATED MOBILE LIGHT MODE (html.light) OVERRIDES ===== */
@media (max-width: 768px) {
  html.light .nav-header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  html.light .mobile-toggle {
    background: rgba(15, 23, 42, 0.05) !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #0f172a !important;
  }

  html.light .mobile-toggle svg {
    stroke: #0f172a !important;
  }

  html.light .mobile-drawer {
    background: rgba(255, 255, 255, 0.98) !important;
  }

  html.light .drawer-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  html.light .drawer-close, html.light #mobile-drawer-close {
    background: rgba(15, 23, 42, 0.06) !important;
    border: 1px solid rgba(15, 23, 42, 0.12) !important;
    color: #0f172a !important;
  }

  html.light #mobile-drawer-close svg {
    stroke: #0f172a !important;
  }

  html.light .drawer-nav-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
  }

  html.light .drawer-nav-item:hover, html.light .drawer-nav-item:active {
    background: rgba(5, 150, 105, 0.08) !important;
    border-color: #059669 !important;
  }

  html.light .drawer-item-icon {
    background: rgba(5, 150, 105, 0.08) !important;
    border-color: rgba(5, 150, 105, 0.25) !important;
    color: #059669 !important;
  }

  html.light .drawer-item-title {
    color: #0f172a !important;
  }

  html.light .drawer-item-sub {
    color: #64748b !important;
  }

  html.light .drawer-item-arrow {
    color: #94a3b8 !important;
  }

  html.light .drawer-nav-item:hover .drawer-item-arrow {
    color: #059669 !important;
  }

  html.light .drawer-hubs-box {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
  }

  html.light .drawer-box-title {
    color: #64748b !important;
  }

  html.light .hub-chip {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
  }

  html.light .hq-chip {
    color: #059669 !important;
    background: rgba(5, 150, 105, 0.1) !important;
    border-color: rgba(5, 150, 105, 0.3) !important;
  }

  html.light .drawer-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  html.light .btn-drawer-cta {
    background: #059669 !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.25) !important;
  }

  html.light .drawer-contact-line a {
    color: #475569 !important;
  }

  html.light .drawer-contact-line a:hover {
    color: #059669 !important;
  }
}
