/* ============================================================
   GreenCodeX — Premium Landing Page CSS
   greencodex.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  --color-bg:          #0b0e0c;
  --color-bg-dark:     #080a09;
  --color-surface:     #f8f9f7;
  --color-surface-2:   #f1f3f0;
  --color-white:       #ffffff;
  --color-green:       #22c55e;
  --color-green-dark:  #16a34a;
  --color-green-dim:   rgba(34, 197, 94, 0.10);
  --color-green-line:  rgba(34, 197, 94, 0.22);

  /* Accent palette for multi-industry colour variety */
  --color-blue:        #3b82f6;
  --color-blue-dim:    rgba(59, 130, 246, 0.10);
  --color-blue-line:   rgba(59, 130, 246, 0.25);
  --color-orange:      #f97316;
  --color-orange-dim:  rgba(249, 115, 22, 0.10);
  --color-orange-line: rgba(249, 115, 22, 0.25);
  --color-purple:      #8b5cf6;
  --color-purple-dim:  rgba(139, 92, 246, 0.10);
  --color-purple-line: rgba(139, 92, 246, 0.25);
  --color-teal:        #14b8a6;
  --color-teal-dim:    rgba(20, 184, 166, 0.10);
  --color-teal-line:   rgba(20, 184, 166, 0.25);
  --color-amber:       #f59e0b;
  --color-amber-dim:   rgba(245, 158, 11, 0.10);
  --color-amber-line:  rgba(245, 158, 11, 0.25);
  --color-text:        #0f1710;
  --color-text-2:      #374151;
  --color-text-muted:  #6b7280;
  --color-text-faint:  #9ca3af;
  --color-border:      #e5e7eb;
  --color-border-dark: rgba(255,255,255,0.08);
  --color-nav-dark:    rgba(11,14,12,0.92);

  --font:              'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.18);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:    180ms;
  --dur-med:     320ms;
  --dur-slow:    480ms;

  --container:   1240px;
  --nav-h:       72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}
::selection {
  background: rgba(34, 197, 94, 0.25);
  color: var(--color-text);
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.gcx-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gcx-section {
  padding: 96px 0;
}

.gcx-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 16px;
}

.gcx-h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

.gcx-h2-light {
  color: var(--color-white);
}

.gcx-subtext {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 580px;
}

/* Reveal animations */
.gcx-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.gcx-reveal.visible {
  opacity: 1;
  transform: none;
}
.gcx-reveal-delay-1 { transition-delay: 80ms; }
.gcx-reveal-delay-2 { transition-delay: 160ms; }
.gcx-reveal-delay-3 { transition-delay: 240ms; }
.gcx-reveal-delay-4 { transition-delay: 320ms; }
.gcx-reveal-delay-5 { transition-delay: 400ms; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION (Clean Light Theme)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}

.gcx-nav.gcx-nav--dark {
  background: rgba(255, 255, 255, 0.96);
}

.gcx-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.gcx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  gap: 16px;
}

/* Brand */
.gcx-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.gcx-nav__logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.gcx-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gcx-nav__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-transform: uppercase;
}

.gcx-nav__tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Links */
.gcx-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.gcx-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text-2);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.gcx-nav__link:hover,
.gcx-nav__link.active {
  color: var(--color-green-dark);
  background: var(--color-green-dim);
}

.gcx-nav__link svg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
  transition: transform var(--dur-fast);
}

.gcx-nav__link:hover svg {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.gcx-nav__item {
  position: relative;
}

.gcx-nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

/* Invisible hit-area bridge spanning top gap so cursor transition never drops hover state */
.gcx-nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.gcx-nav__item:hover .gcx-nav__dropdown,
.gcx-nav__dropdown:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.gcx-nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-2);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.gcx-nav__dropdown a:hover {
  color: var(--color-green-dark);
  background: var(--color-green-dim);
}

/* CTA */
.gcx-nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.gcx-nav__cta:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

/* Hamburger */
.gcx-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px;
}

.gcx-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med);
}

.gcx-nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gcx-nav__hamburger.open span:nth-child(2) { opacity: 0; }
.gcx-nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.gcx-nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  z-index: 999;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.gcx-nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.gcx-nav__mobile a {
  display: block;
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-2);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--dur-fast);
}

.gcx-nav__mobile a:hover { color: var(--color-green-dark); }

.gcx-nav__mobile .gcx-nav__mobile-cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  border-bottom: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-hero {
  position: relative;
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 20px;
}

/* Subtle noise texture overlay */
.gcx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Subtle green radial accent bottom-right */
.gcx-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gcx-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 0;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.gcx-hero__left {
  flex: 0 0 460px;
  max-width: 460px;
  padding-top: 0;
  padding-bottom: 20px;
}

.gcx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 14px;
}

.gcx-hero__eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
}

.gcx-hero__h1 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.gcx-hero__h1 em {
  font-style: normal;
  color: var(--color-green);
}

.gcx-hero__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 420px;
}

.gcx-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gcx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}

.gcx-btn-primary:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

.gcx-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}

.gcx-btn-ghost:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* Hero visual / carousel */
.gcx-hero__right {
  flex: 1;
  min-width: 0;
  position: relative;
}

.gcx-carousel {
  position: relative;
  width: 100%;
}

.gcx-carousel__track {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.gcx-carousel__slide {
  display: none;
  position: relative;
}

.gcx-carousel__slide.active {
  display: block;
}

.gcx-carousel__slide img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

/* Slide fade transition */
.gcx-carousel__slide {
  animation: slideIn var(--dur-slow) var(--ease) both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

/* Controls */
.gcx-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
}

.gcx-carousel__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.gcx-carousel__label em {
  font-style: normal;
  color: rgba(255,255,255,0.7);
}

.gcx-carousel__dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.gcx-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast), width var(--dur-med);
  padding: 0;
}

.gcx-carousel__dot.active {
  background: var(--color-green);
  width: 24px;
  border-radius: var(--radius-full);
}

.gcx-carousel__arrows {
  display: flex;
  gap: 8px;
}

.gcx-carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}

.gcx-carousel__arrow:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.2);
}

.gcx-carousel__arrow svg {
  width: 14px;
  height: 14px;
}

/* Slide title strip */
.gcx-carousel__slide-titles {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}

.gcx-slide-tab {
  flex: 1;
  padding: 7px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  text-align: center;
  transition: all var(--dur-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gcx-slide-tab.active {
  color: var(--color-green);
  border-color: var(--color-green-line);
  background: var(--color-green-dim);
}

.gcx-slide-tab:hover:not(.active) {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-trust {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 32px 0;
}

.gcx-trust__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.gcx-trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  white-space: nowrap;
}

.gcx-trust__divider {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  flex-shrink: 0;
}

.gcx-trust__statement {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-2);
  text-align: center;
  max-width: 680px;
  line-height: 1.5;
}

.gcx-trust__pillars {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.gcx-trust__pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-2);
}

.gcx-trust__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-products {
  background: var(--color-white);
  padding: 96px 0;
}

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

.gcx-products__view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap var(--dur-fast);
}

.gcx-products__view-all:hover { gap: 10px; }

.gcx-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.gcx-product-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  transition: border-color var(--dur-med), box-shadow var(--dur-med), transform var(--dur-med);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.gcx-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, var(--color-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}

/* Per-card accent colours */
.gcx-product-card--fintech    { --card-accent: var(--color-blue); }
.gcx-product-card--commerce   { --card-accent: var(--color-orange); }
.gcx-product-card--restaurant { --card-accent: var(--color-teal); }
.gcx-product-card--beverage   { --card-accent: var(--color-amber); }
.gcx-product-card--mobile     { --card-accent: var(--color-purple); }
.gcx-product-card--custom     { --card-accent: var(--color-purple); }

/* Card hover border colour matches accent */
.gcx-product-card--fintech:hover    { border-color: var(--color-blue-line); box-shadow: 0 12px 36px rgba(59,130,246,0.1), var(--shadow-md); }
.gcx-product-card--commerce:hover   { border-color: var(--color-orange-line); box-shadow: 0 12px 36px rgba(249,115,22,0.1), var(--shadow-md); }
.gcx-product-card--restaurant:hover { border-color: var(--color-teal-line); box-shadow: 0 12px 36px rgba(20,184,166,0.1), var(--shadow-md); }
.gcx-product-card--beverage:hover   { border-color: var(--color-amber-line); box-shadow: 0 12px 36px rgba(245,158,11,0.1), var(--shadow-md); }
.gcx-product-card--mobile:hover     { border-color: var(--color-purple-line); box-shadow: 0 12px 36px rgba(139,92,246,0.1), var(--shadow-md); }
.gcx-product-card--custom:hover     { border-color: var(--color-purple-line); box-shadow: 0 12px 36px rgba(139,92,246,0.1), var(--shadow-md); }

.gcx-product-card:hover {
  transform: translateY(-4px);
}

.gcx-product-card:hover::before {
  transform: scaleX(1);
}

.gcx-product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.gcx-product-card__tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.gcx-product-card__icon {
  width: 42px;
  height: 42px;
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-2);
  transition: background var(--dur-fast), color var(--dur-fast);
  flex-shrink: 0;
}

/* Per-industry icon accent colours */
.gcx-product-card--fintech   .gcx-product-card__icon { color: var(--color-blue); }
.gcx-product-card--commerce  .gcx-product-card__icon { color: var(--color-orange); }
.gcx-product-card--restaurant .gcx-product-card__icon { color: var(--color-teal); }
.gcx-product-card--beverage  .gcx-product-card__icon { color: var(--color-amber); }
.gcx-product-card--mobile    .gcx-product-card__icon { color: var(--color-purple); }
.gcx-product-card--custom    .gcx-product-card__icon { color: var(--color-purple); }

.gcx-product-card--fintech:hover   .gcx-product-card__icon { background: var(--color-blue-dim); }
.gcx-product-card--commerce:hover  .gcx-product-card__icon { background: var(--color-orange-dim); }
.gcx-product-card--restaurant:hover .gcx-product-card__icon { background: var(--color-teal-dim); }
.gcx-product-card--beverage:hover  .gcx-product-card__icon { background: var(--color-amber-dim); }
.gcx-product-card--mobile:hover    .gcx-product-card__icon { background: var(--color-purple-dim); }
.gcx-product-card--custom:hover    .gcx-product-card__icon { background: var(--color-purple-dim); }

.gcx-product-card__icon svg {
  width: 22px;
  height: 22px;
}

.gcx-product-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.gcx-product-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
}

/* Mini realistic software UI preview */
.gcx-product-card__ui {
  background: #0d120f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  height: 98px;
  overflow: hidden;
  position: relative;
  margin-top: auto;
}

.gcx-ui-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.gcx-ui-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gcx-ui-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
}

.gcx-ui-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.gcx-ui-pill {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* FinTech UI preview */
.gcx-ui-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gcx-ui-stat {
  display: flex;
  flex-direction: column;
}

.gcx-ui-stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.45);
}

.gcx-ui-stat-val {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.gcx-ui-stat-val--accent {
  color: #60a5fa;
}

.gcx-ui-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.gcx-ui-progress-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 2px;
}

/* Commerce UI preview */
.gcx-ui-rows {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gcx-ui-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 6px;
  border-radius: 4px;
}

.gcx-ui-thumb {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(249, 115, 22, 0.25);
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.gcx-ui-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gcx-ui-line--full {
  height: 3px;
  width: 75%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
}

.gcx-ui-line--sub {
  height: 3px;
  width: 45%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.gcx-ui-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
}

.gcx-ui-tag--green {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.gcx-ui-tag--accent {
  background: rgba(249, 115, 22, 0.18);
  color: #fb923c;
}

/* Hospitality POS UI preview */
.gcx-ui-pos-grid {
  display: flex;
  gap: 6px;
}

.gcx-ui-pos-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 5px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gcx-ui-pos-card--active {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.35);
}

.gcx-ui-pos-num {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
}

.gcx-ui-pos-status {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
}

.gcx-ui-pos-card--active .gcx-ui-pos-status {
  color: #2dd4bf;
}

/* Mobile App UI preview */
.gcx-ui-mobile-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gcx-ui-mobile-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcx-ui-mobile-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.25);
  border: 1px solid rgba(139, 92, 246, 0.4);
}

.gcx-ui-tag--purple {
  background: rgba(139, 92, 246, 0.18);
  color: #c084fc;
}

/* Beverage chart UI preview */
.gcx-ui-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 38px;
  padding-top: 4px;
}

.gcx-ui-chart-col {
  flex: 1;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 2px 2px 0 0;
}

.gcx-ui-chart-col--accent {
  background: #f59e0b;
}

/* Custom Workflow UI preview */
.gcx-ui-nodes {
  display: flex;
  align-items: center;
  gap: 4px;
}

.gcx-ui-node {
  font-size: 9px;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.gcx-ui-node--accent {
  background: rgba(139, 92, 246, 0.18);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c084fc;
}

.gcx-ui-node-link {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.gcx-product-card__cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--card-accent, var(--color-green));
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--dur-fast);
  text-decoration: none;
}

.gcx-product-card:hover .gcx-product-card__cta { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOLUTIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-solutions {
  background: var(--color-surface);
  padding: 96px 0;
}

.gcx-solutions__header {
  margin-bottom: 56px;
}

.gcx-solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gcx-solution-item {
  background: var(--color-white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--dur-fast);
}

.gcx-solution-item:hover {
  background: var(--color-surface-2);
}

.gcx-solution-item__icon {
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
}

/* Alternate icon colours for visual variety in the solutions grid */
.gcx-solution-item:nth-child(1) .gcx-solution-item__icon { color: var(--color-blue); }
.gcx-solution-item:nth-child(2) .gcx-solution-item__icon { color: var(--color-green); }
.gcx-solution-item:nth-child(3) .gcx-solution-item__icon { color: var(--color-orange); }
.gcx-solution-item:nth-child(4) .gcx-solution-item__icon { color: var(--color-purple); }
.gcx-solution-item:nth-child(5) .gcx-solution-item__icon { color: var(--color-teal); }
.gcx-solution-item:nth-child(6) .gcx-solution-item__icon { color: var(--color-amber); }
.gcx-solution-item:nth-child(7) .gcx-solution-item__icon { color: var(--color-blue); }
.gcx-solution-item:nth-child(8) .gcx-solution-item__icon { color: var(--color-orange); }

.gcx-solution-item__icon svg {
  width: 100%;
  height: 100%;
}

.gcx-solution-item__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.gcx-solution-item__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ENGINEERING PROCESS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-process {
  background: var(--color-white);
  padding: 96px 0;
}

.gcx-process__header {
  margin-bottom: 64px;
  max-width: 640px;
}

.gcx-process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.gcx-process__track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-green) 0%, rgba(34,197,94,0.3) 100%);
  z-index: 0;
}

.gcx-process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gcx-process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-faint);
  margin-bottom: 20px;
  transition: border-color var(--dur-med), color var(--dur-med), background var(--dur-med);
  position: relative;
}

.gcx-process-step.active .gcx-process-step__num,
.gcx-process-step:hover .gcx-process-step__num {
  border-color: var(--color-green);
  color: var(--color-green);
  background: var(--color-green-dim);
}

.gcx-process-step__verb {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.gcx-process-step__desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CASE STUDIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-cases {
  background: var(--color-surface);
  padding: 96px 0;
}

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

.gcx-cases__view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap var(--dur-fast);
}

.gcx-cases__view-all:hover { gap: 10px; }

.gcx-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gcx-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-med), transform var(--dur-med);
}

.gcx-case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gcx-case-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  background: var(--color-surface-2);
}

.gcx-case-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gcx-case-card__industry {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--industry-color, var(--color-green-dark));
  background: var(--industry-bg, var(--color-green-dim));
  border-radius: var(--radius-full);
  width: fit-content;
}

/* Per-industry badge colours */
.gcx-badge--fintech     { --industry-color: #1d4ed8; --industry-bg: rgba(59,130,246,0.10); }
.gcx-badge--restaurant  { --industry-color: #0f766e; --industry-bg: rgba(20,184,166,0.10); }
.gcx-badge--ecommerce   { --industry-color: #c2410c; --industry-bg: rgba(249,115,22,0.10); }
.gcx-badge--mobile      { --industry-color: #6d28d9; --industry-bg: rgba(139,92,246,0.10); }

.gcx-case-card__product {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.gcx-case-card__problem {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

.gcx-case-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  transition: gap var(--dur-fast);
}

.gcx-case-card:hover .gcx-case-card__cta { gap: 10px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY GREENCODEX
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-why {
  background: var(--color-white);
  padding: 96px 0;
}

.gcx-why__header {
  margin-bottom: 56px;
}

.gcx-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.gcx-why-block {
  padding: 32px 0;
  border-top: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--dur-fast);
}

.gcx-why-block:nth-child(1):hover { border-color: var(--color-blue); }
.gcx-why-block:nth-child(2):hover { border-color: var(--color-orange); }
.gcx-why-block:nth-child(3):hover { border-color: var(--color-teal); }
.gcx-why-block:nth-child(4):hover { border-color: var(--color-purple); }

.gcx-why-block__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
}

.gcx-why-block__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.gcx-why-block__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TECHNOLOGY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-tech {
  background: var(--color-surface);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.gcx-tech__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
}

.gcx-tech__tagline {
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}

.gcx-tech__strip {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  overflow: hidden;
}

.gcx-tech-item {
  flex: 1;
  min-width: 96px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--color-border);
  transition: background var(--dur-fast);
  cursor: default;
}

.gcx-tech-item:last-child {
  border-right: none;
}

.gcx-tech-item:hover {
  background: var(--color-surface-2);
}

.gcx-tech-item__logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text);
  border-radius: 6px;
}

.gcx-tech-item__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}

/* Tech SVG icons */
.tech-svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-cta {
  background: var(--color-bg-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Network dot pattern */
.gcx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Subtle green glow */
.gcx-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.gcx-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gcx-cta__h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-white);
}

.gcx-cta__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}

/* .gcx-cta__sub is used on the services CTA (same as body) */
.gcx-cta__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
}

/* Small trust-signal strip below CTA buttons */
.gcx-cta__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-top: -4px;
}

.gcx-cta__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Ghost button on dark CTA — override the white-bg hero ghost default */
.gcx-cta .gcx-btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
  background: transparent;
}

.gcx-cta .gcx-btn-ghost:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
}

.gcx-btn-primary--large {
  padding: 16px 32px;
  font-size: 15px;
}

.gcx-btn-ghost--light {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.14);
}

.gcx-btn-ghost--light:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — WHITE ENTERPRISE DESIGN (MATCHING SPECIFICATION)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-footer {
  background: #ffffff;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: 32px 0 0;
  font-family: var(--font);
}

.gcx-footer__top-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 24px;
}

@media (max-width: 1100px) {
  .gcx-footer__top-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .gcx-footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .gcx-footer__top-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.gcx-footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 20px;
}

.gcx-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcx-footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.gcx-footer__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.gcx-footer__bio {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 320px;
}

.gcx-footer__col-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.gcx-footer__col-title::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-green);
  margin-top: 4px;
  border-radius: 2px;
}

.gcx-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gcx-footer__links li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-2);
  transition: all var(--dur-fast);
  line-height: 1.4;
}

.gcx-footer__links li a::before {
  content: '›';
  font-size: 15px;
  font-weight: 800;
  color: var(--color-green);
  line-height: 1;
  transition: transform var(--dur-fast);
}

.gcx-footer__links li a:hover {
  color: var(--color-green-dark);
  transform: translateX(3px);
}

/* Footer Bottom Bar */
.gcx-footer__bottom {
  padding: 14px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--color-text-muted);
}

.gcx-footer__copyright {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.gcx-footer__legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gcx-footer__legal a {
  font-size: 12.5px;
  color: var(--color-text-muted);
  transition: color var(--dur-fast);
}

.gcx-footer__legal a:hover {
  color: var(--color-green-dark);
}

.gcx-footer__legal-sep {
  color: var(--color-border);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .gcx-nav__inner {
    padding: 0 16px;
    gap: 12px;
  }

  .gcx-nav__link {
    padding: 6px 8px;
    font-size: 13px;
  }

  .gcx-nav__cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .gcx-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gcx-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .gcx-footer__grid > *:nth-child(5),
  .gcx-footer__grid > *:nth-child(6) {
    grid-column: auto;
  }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .gcx-hero__content {
    flex-direction: column;
    gap: 48px;
    padding-top: calc(var(--nav-h) + 56px);
    padding-bottom: 0;
  }

  .gcx-hero__left {
    flex: none;
    max-width: 100%;
    padding-bottom: 0;
  }

  .gcx-hero__right {
    width: 100%;
  }

  .gcx-process__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .gcx-process__track::before {
    display: none;
  }

  .gcx-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcx-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcx-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .gcx-footer__grid > *:first-child {
    grid-column: 1 / -1;
  }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .gcx-container, .gcx-nav__inner { padding-left: 20px; padding-right: 20px; }

  .gcx-section, .gcx-products, .gcx-solutions, .gcx-process, .gcx-cases, .gcx-why { padding: 64px 0; }

  .gcx-nav__links { display: none; }
  .gcx-nav__cta   { display: none; }
  .gcx-nav__hamburger { display: flex; }

  .gcx-hero__left {
    text-align: center;
  }

  .gcx-hero__eyebrow {
    justify-content: center;
  }

  .gcx-hero__body { max-width: 100%; }

  .gcx-hero__actions {
    justify-content: center;
  }

  .gcx-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gcx-products__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gcx-cases__grid {
    grid-template-columns: 1fr;
  }

  .gcx-cases__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gcx-why__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gcx-why-block {
    padding: 24px 0;
  }

  .gcx-solutions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gcx-process__track {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gcx-tech__strip {
    flex-wrap: wrap;
  }

  .gcx-tech-item {
    flex: 0 0 calc(20% - 1px);
    border-right: 1px solid var(--color-border);
  }

  .gcx-cta { padding: 80px 0; }

  .gcx-cta__h2 { font-size: 28px; }

  .gcx-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gcx-footer__grid > *:first-child {
    grid-column: 1 / -1;
  }

  .gcx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .gcx-slide-tab {
    font-size: 10px;
    padding: 6px 8px;
  }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .gcx-products__grid {
    grid-template-columns: 1fr;
  }

  .gcx-solutions__grid {
    grid-template-columns: 1fr;
  }

  .gcx-tech-item {
    flex: 0 0 calc(33.33% - 1px);
  }

  .gcx-footer__grid {
    grid-template-columns: 1fr;
  }

  .gcx-carousel__slide-titles {
    flex-wrap: wrap;
  }

  .gcx-slide-tab {
    flex: 0 0 calc(50% - 2px);
  }

  .gcx-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .gcx-btn-primary,
  .gcx-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .gcx-trust__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .gcx-trust__divider { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES PAGE CUSTOM STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.gcx-pipeline {
  background: #0d120f;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.gcx-pipeline__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gcx-pipeline__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gcx-pipeline__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--color-green);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.gcx-pipeline__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: gcxPulse 2s infinite;
}

@keyframes gcxPulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.4; transform: scale(0.9); }
}

.gcx-pipeline__nodes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.gcx-pipeline__node {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: all var(--dur-fast);
}

.gcx-pipeline__node:hover,
.gcx-pipeline__node.active {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(4px);
}

.gcx-pipeline__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
}

.gcx-pipeline__node-text {
  flex: 1;
}

.gcx-pipeline__step-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.gcx-pipeline__step-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.gcx-pipeline__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.gcx-pipeline__arrow {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  margin: -2px 0;
}

/* Service Category Cards (5 Cards Section) */
.gcx-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.gcx-services-grid > article:last-child:nth-child(odd) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gcx-services-grid {
    grid-template-columns: 1fr;
  }
  .gcx-services-grid > article:last-child:nth-child(odd) {
    grid-column: span 1;
  }
}

.gcx-service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--dur-med);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.gcx-service-card:hover {
  border-color: var(--color-green-line);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.gcx-service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcx-service-card__icon svg {
  width: 24px;
  height: 24px;
}

.gcx-service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.gcx-service-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.gcx-service-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.gcx-pill-tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  color: var(--color-text-2);
  border: 1px solid var(--color-border);
  transition: all var(--dur-fast);
}

.gcx-service-card:hover .gcx-pill-tag {
  border-color: rgba(34, 197, 94, 0.25);
  background: var(--color-white);
}

.gcx-service-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  transition: gap var(--dur-fast);
  text-decoration: none;
}

.gcx-service-card:hover .gcx-service-card__cta {
  gap: 12px;
}

/* Featured AI Section */
.gcx-ai-feature {
  background: #070a08;
  color: #ffffff;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}

.gcx-ai-feature::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.gcx-ai-card {
  background: #0f1511;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--dur-med);
}

.gcx-ai-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: #131a15;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.08);
}

.gcx-ai-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-green-dim);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcx-ai-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.gcx-ai-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.gcx-ai-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.gcx-ai-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Horizontal Engineering Process */
.gcx-process-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
}

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

@media (max-width: 768px) {
  .gcx-process-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gcx-process-track {
    grid-template-columns: 1fr;
  }
}

.gcx-process-node {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: all var(--dur-fast);
}

.gcx-process-node:hover {
  border-color: var(--color-green-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gcx-process-node__step {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-transform: uppercase;
}

.gcx-process-node__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-process-node__desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Categorized Tech Stack */
.gcx-tech-category {
  margin-top: 36px;
}

.gcx-tech-category__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 16px;
}

.gcx-tech-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gcx-tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  transition: all var(--dur-fast);
}

.gcx-tech-chip:hover {
  border-color: var(--color-green-line);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

/* FAQ Accordion */
.gcx-faq-list {
  max-width: 840px;
  margin: 48px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gcx-faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast);
}

.gcx-faq-item.open {
  border-color: var(--color-green-line);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.gcx-faq-button {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  gap: 16px;
}

.gcx-faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--dur-fast);
  flex-shrink: 0;
}

.gcx-faq-item.open .gcx-faq-chevron {
  transform: rotate(180deg);
  color: var(--color-green);
}

.gcx-faq-answer {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  display: none;
}

.gcx-faq-item.open .gcx-faq-answer {
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES PAGE — ENGINEERING CAPABILITY PROFILE STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Engineering Flow Graphic (Hero) */
.gcx-hero-flow {
  background: #0d120f;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.gcx-hero-flow__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gcx-hero-flow__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gcx-hero-flow__status {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-green);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gcx-hero-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gcx-hero-flow__step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
}

.gcx-hero-flow__step.active,
.gcx-hero-flow__step:hover {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateX(4px);
}

.gcx-hero-flow__num {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-green);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gcx-hero-flow__name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  flex: 1;
}

.gcx-hero-flow__tag {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.gcx-hero-flow__conn {
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  margin: -2px 0;
}

/* Services Page: 2-Column Section Intro (Text + Image) */
.gcx-svc-section-intro {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.gcx-svc-section-intro__text {
  flex: 1;
  min-width: 0;
}

.gcx-svc-section-intro__visual {
  flex: 0 0 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.gcx-svc-section-intro__visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gcx-svc-section-intro--dark .gcx-svc-section-intro__visual {
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .gcx-svc-section-intro {
    flex-direction: column;
    gap: 24px;
  }
  .gcx-svc-section-intro__visual {
    flex: none;
    width: 100%;
  }
}

/* Section 1: Engineering Lifecycle Timeline */
.gcx-lifecycle-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  position: relative;
}

.gcx-lifecycle-stage {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: all var(--dur-med);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.gcx-lifecycle-stage:hover {
  border-color: var(--color-green-line);
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.gcx-lifecycle-stage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gcx-lifecycle-stage__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gcx-lifecycle-stage__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-green-dark);
  background: var(--color-green-dim);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.gcx-lifecycle-stage__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.gcx-lifecycle-stage__summary {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-top: 12px;
}

.gcx-lifecycle-stage__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .gcx-lifecycle-stage__details {
    grid-template-columns: 1fr;
  }
}

.gcx-lifecycle-detail-item {
  font-size: 12.5px;
  color: var(--color-text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.gcx-lifecycle-detail-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

/* Section 2: Discovery Grid */
.gcx-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

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

.gcx-discovery-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--dur-fast);
}

.gcx-discovery-card:hover {
  border-color: var(--color-green-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gcx-discovery-card__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-dark);
}

.gcx-discovery-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-discovery-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Section 3: Design Flow */
.gcx-design-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .gcx-design-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gcx-design-flow {
    grid-template-columns: 1fr;
  }
}

.gcx-design-node {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  transition: all var(--dur-fast);
}

.gcx-design-node:hover {
  border-color: var(--color-green-line);
  transform: translateY(-2px);
}

.gcx-design-node__step {
  font-size: 10px;
  font-weight: 800;
  color: var(--color-green);
}

.gcx-design-node__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-design-node__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* Section 4: Software Architecture Grid */
.gcx-arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

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

.gcx-arch-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--dur-fast);
}

.gcx-arch-card:hover {
  border-color: var(--color-green-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gcx-arch-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-arch-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gcx-arch-card__spec {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-green-dark);
  background: var(--color-green-dim);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
}

/* Section 5: AI Business Capability Cards */
.gcx-ai-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .gcx-ai-usecase-grid {
    grid-template-columns: 1fr;
  }
}

.gcx-ai-usecase-card {
  background: #0e1410;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gcx-ai-usecase-card__title {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.gcx-ai-usecase-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gcx-ai-usecase-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Section 6: Integration Pipeline */
.gcx-integration-track {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  justify-content: center;
}

.gcx-integration-node {
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gcx-integration-arrow {
  color: var(--color-green);
  font-weight: 800;
}

/* Section 7: Cloud Engineering Cards */
.gcx-cloud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

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

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

.gcx-cloud-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gcx-cloud-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-cloud-card__desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Section 8: Quality Engineering */
.gcx-qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

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

.gcx-qa-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gcx-qa-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-qa-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Section 9: Security & Compliance */
.gcx-security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

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

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

.gcx-sec-card {
  background: #0b100d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gcx-sec-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.gcx-sec-card__desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* Section 10: Engagement Models */
.gcx-engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

.gcx-engagement-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--dur-med);
  position: relative;
}

.gcx-engagement-card:hover {
  border-color: var(--color-green-line);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.gcx-engagement-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-engagement-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.gcx-engagement-card__usecase {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--color-text-2);
  margin-top: auto;
}

.gcx-engagement-card__usecase strong {
  color: var(--color-green-dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES PAGE — WHITE HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Entry animations */
@keyframes svc-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes svc-fade-right {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes svc-fade-left {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes svc-badge-pop {
  0%   { opacity: 0; transform: scale(0.8) translateY(8px); }
  60%  { transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes svc-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes svc-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes svc-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes svc-line-grow {
  from { width: 0; }
  to   { width: 48px; }
}
@keyframes svc-counter-badge {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.gcx-hero--services {
  background: #ffffff;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

/* Remove dark overlays */
.gcx-hero--services::before,
.gcx-hero--services::after {
  display: none;
}

/* Decorative background pattern */
.gcx-svc-hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* Subtle grid pattern across full hero */
.gcx-svc-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Left text column */
.gcx-svc-hero-left {
  position: relative;
  z-index: 2;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 64px 80px 64px;
}

/* Right image column */
.gcx-svc-hero-right {
  position: relative;
  flex: 0 0 50%;
  overflow: hidden;
}

.gcx-svc-hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Image overlay gradient for blend */
.gcx-svc-hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.18) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* Floating stats badges on image */
.gcx-svc-hero-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: svc-float 4s ease-in-out infinite, svc-badge-pop 0.6s var(--ease) both;
}

.gcx-svc-hero-badge--1 {
  top: 22%;
  left: -28px;
  animation-delay: 0s, 0.8s;
  animation-duration: 5s, 0.6s;
}
.gcx-svc-hero-badge--2 {
  bottom: 28%;
  left: -36px;
  animation-delay: 1.5s, 1.1s;
  animation-duration: 4.5s, 0.6s;
}
.gcx-svc-hero-badge--3 {
  top: 55%;
  right: 20px;
  animation-delay: 0.7s, 1.4s;
  animation-duration: 6s, 0.6s;
}

.gcx-svc-hero-badge__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gcx-svc-hero-badge__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.gcx-svc-hero-badge__value span {
  color: var(--color-green);
}
.gcx-svc-hero-badge__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  margin-right: 6px;
  animation: svc-pulse-ring 2s ease-out infinite;
}

/* Left column content styles */
.gcx-svc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-dark);
  margin-bottom: 20px;
  animation: svc-fade-right 0.7s var(--ease) 0.1s both;
}

.gcx-svc-hero-eyebrow::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--color-green);
  border-radius: 2px;
  animation: svc-line-grow 0.5s var(--ease) 0.3s both;
}

.gcx-svc-hero-h1 {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 20px;
  animation: svc-fade-up 0.8s var(--ease) 0.2s both;
}

.gcx-svc-hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #16a34a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: svc-shimmer 3s linear 1.5s infinite;
}

.gcx-svc-hero-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 460px;
  animation: svc-fade-up 0.8s var(--ease) 0.35s both;
}

.gcx-svc-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: svc-fade-up 0.8s var(--ease) 0.5s both;
}

/* Primary button override for white hero */
.gcx-svc-hero-actions .gcx-btn-primary {
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  animation: svc-pulse-ring 2.5s ease-out 2s infinite;
}

/* Ghost button dark override */
.gcx-svc-hero-actions .gcx-btn-ghost {
  color: var(--color-text-2);
  border-color: var(--color-border);
  background: transparent;
}
.gcx-svc-hero-actions .gcx-btn-ghost:hover {
  border-color: var(--color-green-line);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
}

/* Social proof strip below buttons */
.gcx-svc-hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  animation: svc-fade-up 0.8s var(--ease) 0.65s both;
}

.gcx-svc-hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gcx-svc-hero-proof-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.gcx-svc-hero-proof-num em {
  font-style: normal;
  color: var(--color-green);
}
.gcx-svc-hero-proof-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.gcx-svc-hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .gcx-svc-hero-left {
    padding: calc(var(--nav-h) + 40px) 40px 60px 40px;
  }
}

@media (max-width: 768px) {
  .gcx-svc-hero-wrap {
    flex-direction: column;
    min-height: auto;
  }
  .gcx-svc-hero-left {
    flex: none;
    padding: calc(var(--nav-h) + 40px) 24px 40px 24px;
  }
  .gcx-svc-hero-right {
    flex: none;
    height: 320px;
  }
  .gcx-svc-hero-badge--1,
  .gcx-svc-hero-badge--2 {
    left: 16px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOMEPAGE — WHITE HERO SECTION MODIFIER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gcx-hero--white {
  background: #ffffff;
}

.gcx-hero--white::before,
.gcx-hero--white::after {
  display: none;
}

.gcx-hero--white .gcx-hero__eyebrow {
  color: var(--color-green-dark);
}

.gcx-hero--white .gcx-hero__h1 {
  color: var(--color-text);
}

.gcx-hero--white .gcx-hero__h1 em {
  color: var(--color-green-dark);
}

.gcx-hero--white .gcx-hero__body {
  color: var(--color-text-muted);
}

.gcx-hero--white .gcx-btn-ghost {
  color: var(--color-text-2);
  border-color: var(--color-border);
  background: transparent;
}

.gcx-hero--white .gcx-btn-ghost:hover {
  border-color: var(--color-green-line);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
}

.gcx-hero--white .gcx-carousel__track {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.gcx-hero--white .gcx-carousel__label {
  color: var(--color-text-muted);
}

.gcx-hero--white .gcx-carousel__label em {
  color: var(--color-text);
}

.gcx-hero--white .gcx-carousel__dot {
  background: rgba(0, 0, 0, 0.15);
}

.gcx-hero--white .gcx-carousel__dot.active {
  background: var(--color-green);
}

.gcx-hero--white .gcx-carousel__arrow {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
}

.gcx-hero--white .gcx-carousel__arrow:hover {
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  border-color: var(--color-green-line);
}

.gcx-hero--white .gcx-slide-tab {
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.gcx-hero--white .gcx-slide-tab:hover {
  color: var(--color-text);
  border-color: var(--color-border-dark);
}

.gcx-hero--white .gcx-slide-tab.active {
  color: var(--color-green-dark);
  background: var(--color-green-dim);
  border-color: var(--color-green-line);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT US PAGE — STYLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Section 1: Contact Options Grid */
.gcx-contact-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

@media (max-width: 540px) {
  .gcx-contact-options-grid {
    grid-template-columns: 1fr;
  }
}

.gcx-contact-option-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--dur-med);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.gcx-contact-option-card:hover {
  border-color: var(--color-green-line);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.gcx-contact-option-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gcx-contact-option-card__icon svg {
  width: 22px;
  height: 22px;
}

.gcx-contact-option-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-contact-option-card__desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.gcx-contact-option-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap var(--dur-fast);
}

.gcx-contact-option-card:hover .gcx-contact-option-card__cta {
  gap: 10px;
}

/* Section 2: Contact Form Section */
.gcx-contact-form-container {
  max-width: 840px;
  margin: 48px auto 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 640px) {
  .gcx-contact-form-container {
    padding: 28px 20px;
  }
}

.gcx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

.gcx-form-group--full {
  grid-column: 1 / -1;
}

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

.gcx-form-input,
.gcx-form-select,
.gcx-form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--dur-fast);
}

.gcx-form-input:focus,
.gcx-form-select:focus,
.gcx-form-textarea:focus {
  background: var(--color-white);
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px var(--color-green-dim);
}

.gcx-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.gcx-form-submit-btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
}

.gcx-contact-success {
  text-align: center;
  padding: 36px 20px;
  background: var(--color-green-dim);
  border: 1px solid var(--color-green-line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.gcx-contact-success__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcx-contact-success__icon svg {
  width: 26px;
  height: 26px;
}

.gcx-contact-success__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-contact-success__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 480px;
}

/* Section 3: Why Contact Us Grid */
.gcx-why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

@media (max-width: 540px) {
  .gcx-why-contact-grid {
    grid-template-columns: 1fr;
  }
}

.gcx-why-contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--dur-fast);
}

.gcx-why-contact-card:hover {
  border-color: var(--color-green-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gcx-why-contact-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-why-contact-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Section 4: Office Info & Map */
.gcx-office-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .gcx-office-wrap {
    grid-template-columns: 1fr;
  }
}

.gcx-office-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.gcx-office-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
}

.gcx-office-card__item {
  display: flex;
  gap: 14px;
}

.gcx-office-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.gcx-office-card__icon svg {
  width: 18px;
  height: 18px;
}

.gcx-office-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.gcx-office-card__val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.5;
}

.gcx-office-map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 360px;
  box-shadow: var(--shadow-sm);
}

.gcx-office-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
}

/* Section 5: Consultation Process Track */
.gcx-process-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

@media (max-width: 540px) {
  .gcx-process-grid-4 {
    grid-template-columns: 1fr;
  }
}

.gcx-process-card-4 {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all var(--dur-fast);
}

.gcx-process-card-4:hover {
  border-color: var(--color-green-line);
  transform: translateY(-2px);
}

.gcx-process-card-4__step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-green-dark);
  background: var(--color-green-dim);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.gcx-process-card-4__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.gcx-process-card-4__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PREMIUM PRODUCT-FIRST BRAND ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Client Trust Bar (Clean Light Theme) */
.gcx-clients-trust {
  background: #f4f6f3;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
}

.gcx-clients-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.gcx-clients-trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.gcx-clients-trust__grid {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.gcx-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: all var(--dur-fast);
}

.gcx-client-badge:hover {
  background: var(--color-white);
  border-color: var(--color-green-line);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
  transform: translateY(-2px);
}

.gcx-client-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
}

.gcx-client-badge__sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 2px;
}

/* Product Suite Card Enhancements */
.gcx-suite-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.gcx-suite-badge--fintech { background: rgba(59, 130, 246, 0.12); color: var(--color-blue); border: 1px solid rgba(59, 130, 246, 0.25); }
.gcx-suite-badge--food { background: rgba(249, 115, 22, 0.12); color: var(--color-orange); border: 1px solid rgba(249, 115, 22, 0.25); }
.gcx-suite-badge--bi { background: rgba(34, 197, 94, 0.12); color: var(--color-green); border: 1px solid rgba(34, 197, 94, 0.25); }
.gcx-suite-badge--ops { background: rgba(139, 92, 246, 0.12); color: var(--color-purple); border: 1px solid rgba(139, 92, 246, 0.25); }
.gcx-suite-badge--crm { background: rgba(20, 184, 166, 0.12); color: var(--color-teal); border: 1px solid rgba(20, 184, 166, 0.25); }
.gcx-suite-badge--mis { background: rgba(245, 158, 11, 0.12); color: var(--color-amber); border: 1px solid rgba(245, 158, 11, 0.25); }

.gcx-product-card__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}

.gcx-module-pill {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  color: var(--color-text-2);
  border: 1px solid var(--color-border);
}

.gcx-product-card__client-proof {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px stroke var(--color-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gcx-product-card__client-proof strong {
  color: var(--color-green-dark);
}

/* Digital Marketing & Growth Section (Premium Gradient Theme) */
.gcx-marketing-section {
  background: linear-gradient(135deg, #091a10 0%, #050d08 40%, #0c2616 100%);
  color: var(--color-white);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.gcx-marketing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.18) 0%, transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

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

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

.gcx-marketing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--dur-med);
}

.gcx-marketing-card:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(34, 197, 94, 0.15);
}

.gcx-marketing-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(34, 197, 94, 0.12);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gcx-marketing-card__icon svg {
  width: 24px;
  height: 24px;
}

.gcx-marketing-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-white);
}

.gcx-marketing-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

.gcx-marketing-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}

.gcx-marketing-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Glassmorphic Call to Action */
.gcx-glass-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, rgba(34,197,94,0.14) 0%, rgba(11,14,12,0.9) 100%);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.gcx-glass-cta__content {
  max-width: 600px;
}

.gcx-glass-cta__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.gcx-glass-cta__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SOLUTIONS DIRECTORY & TECHNICAL SPECS PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Solution Header Banner */
.gcx-sol-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 48px;
}

.gcx-sol-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.gcx-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.gcx-breadcrumb a:hover {
  color: var(--color-green-dark);
}

.gcx-sol-hero__h1 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.gcx-sol-hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 720px;
}

/* Sticky Solution Spec Nav Pills */
.gcx-sol-nav-strip {
  position: sticky;
  top: var(--nav-h);
  z-index: 900;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.gcx-sol-nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.gcx-sol-nav-pills::-webkit-scrollbar { display: none; }

.gcx-sol-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-2);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--dur-fast);
}

.gcx-sol-pill:hover,
.gcx-sol-pill.active {
  color: var(--color-green-dark);
  background: var(--color-green-dim);
  border-color: var(--color-green-line);
}

/* Technical Solution Block */
.gcx-sol-block {
  padding: 32px 0 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.gcx-sol-block:nth-child(even) {
  background: var(--color-surface);
}

.gcx-sol-block__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gcx-sol-block__title-wrap {
  max-width: 720px;
}

.gcx-sol-block__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 8px;
  margin-bottom: 10px;
}

.gcx-sol-block__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.gcx-sol-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-2);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.gcx-sol-proof-badge svg {
  color: var(--color-green);
}

/* Tech Stack Grid & Engagement Models */
.gcx-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.gcx-tech-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--dur-med) var(--ease);
}

.gcx-tech-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-green-line);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.gcx-tech-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 8px;
}

.gcx-tech-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.gcx-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gcx-tech-tag {
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

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

@media (max-width: 992px) {
  .gcx-engage-grid {
    grid-template-columns: 1fr;
  }
}

.gcx-engage-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--dur-med) var(--ease);
}

.gcx-engage-card--featured {
  border-color: var(--color-green);
  box-shadow: 0 20px 48px rgba(34, 197, 94, 0.12);
}

.gcx-engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.1);
}

.gcx-engage-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--color-green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.gcx-engage-card__type {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.gcx-engage-card__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}

.gcx-engage-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.gcx-engage-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.gcx-engage-card__item {
  font-size: 13.5px;
  color: var(--color-text);
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.gcx-engage-card__item svg {
  width: 16px;
  height: 16px;
  color: var(--color-green);
  flex-shrink: 0;
}

/* Spec Tables */
.gcx-spec-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.gcx-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.gcx-spec-table th {
  background: #f8f9f7;
  padding: 14px 20px;
  font-weight: 700;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.gcx-spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-2);
  vertical-align: top;
  line-height: 1.6;
}

.gcx-spec-table tr:last-child td {
  border-bottom: none;
}

.gcx-spec-table td strong {
  color: var(--color-text);
}

/* Technical Matrix Table */
.gcx-matrix-section {
  padding: 80px 0;
  background: #090c0a;
  color: var(--color-white);
}

.gcx-matrix-table-wrap {
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.gcx-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.gcx-matrix-table th {
  background: rgba(255,255,255,0.06);
  padding: 16px 24px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gcx-matrix-table td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}

/* Solution Split Card & Image Frame Carousel Styles */
.gcx-sol-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .gcx-sol-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.gcx-sol-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12), 0 0 0 1px var(--color-border);
  background: var(--color-surface);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  width: 100%;
}

.gcx-sol-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.16), 0 0 0 1px var(--color-green-line);
}

.gcx-sol-carousel__slides {
  display: grid;
  grid-template-areas: "slide";
  width: 100%;
}

.gcx-sol-carousel__slide {
  grid-area: slide;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(1.01);
  z-index: 1;
}

.gcx-sol-carousel__slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.gcx-sol-carousel__slide img,
.gcx-sol-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gcx-sol-carousel__arrow {
  display: none !important;
}

.gcx-sol-carousel__dots {
  display: none !important;
}

.gcx-sol-feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 20px 0 28px 0;
}

@media (max-width: 540px) {
  .gcx-sol-feature-list {
    grid-template-columns: 1fr;
  }
}

.gcx-sol-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.gcx-sol-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-green-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   CASE STUDIES PAGE STYLES (casestudies.html)
   ========================================================================== */

.gcx-hero--cases {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.gcx-cs-hero-content {
  max-width: 800px;
}

.gcx-cs-hero-h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.gcx-cs-hero-h1 em {
  font-style: normal;
  color: var(--color-green-dark);
}

.gcx-cs-hero-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 680px;
}

.gcx-hero--cases .gcx-svc-hero-proof-item {
  color: var(--color-text);
}

.gcx-hero--cases .gcx-svc-hero-proof-num {
  color: var(--color-green-dark);
}

.gcx-hero--cases .gcx-svc-hero-proof-label {
  color: var(--color-text-muted);
}

.gcx-hero--cases .gcx-svc-hero-proof-divider {
  background: var(--color-border);
}

/* Case Study Deep-Dive Sections */
.gcx-cs-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 130px;
}

.gcx-cs-detail--alt {
  background: var(--color-surface);
}

.gcx-cs-detail__intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.gcx-cs-detail__intro--reverse {
  grid-template-columns: 1fr 1.2fr;
}

.gcx-cs-detail__intro--reverse .gcx-cs-detail__text {
  order: 2;
}

.gcx-cs-detail__intro--reverse .gcx-cs-detail__image {
  order: 1;
}

.gcx-cs-detail__client {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 8px;
  margin-bottom: 4px;
}

.gcx-cs-detail__project {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-green-dark);
  margin-bottom: 16px;
}

.gcx-cs-detail__summary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.gcx-cs-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
}

.gcx-cs-detail__image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}

/* Challenge & Solution Grid */
.gcx-cs-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.gcx-cs-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}

.gcx-cs-detail--alt .gcx-cs-block {
  background: var(--color-white);
}

.gcx-cs-block__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.gcx-cs-block__icon svg {
  width: 20px;
  height: 20px;
}

.gcx-cs-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.gcx-cs-block__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Tech Stack Strip */
.gcx-cs-tech {
  margin-bottom: 40px;
}

.gcx-cs-tech__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 12px;
}

/* Metrics Row */
.gcx-cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-border);
}

.gcx-cs-metric {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.gcx-cs-detail--alt .gcx-cs-metric {
  background: var(--color-white);
}

.gcx-cs-metric__value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-green-dark);
  line-height: 1.2;
}

.gcx-cs-metric__label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .gcx-cs-detail {
    padding: 48px 0;
    scroll-margin-top: 110px;
  }
  .gcx-cs-detail__intro,
  .gcx-cs-detail__intro--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gcx-cs-detail__intro--reverse .gcx-cs-detail__text {
    order: 1;
  }
  .gcx-cs-detail__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gcx-cs-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gcx-cs-detail__image img {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}

/* ==========================================================================
   CAREERS & INTERNSHIPS PAGE STYLES (careers.html)
   ========================================================================== */

.gcx-job-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  width: 100%;
}

.gcx-job-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--dur-med) var(--ease);
  position: relative;
}

.gcx-job-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-green-line);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.gcx-job-card--internship {
  border-left: 4px solid var(--color-green);
}

.gcx-job-card--fulltime {
  border-left: 4px solid var(--color-blue);
}

.gcx-job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.gcx-job-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
}

.gcx-job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.gcx-job-badge--fulltime {
  background: var(--color-blue-dim);
  color: var(--color-blue);
  border: 1px solid var(--color-blue-line);
}

.gcx-job-badge--internship {
  background: var(--color-green-dim);
  color: var(--color-green-dark);
  border: 1px solid var(--color-green-line);
}

.gcx-job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.gcx-job-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gcx-job-card__meta-item svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  color: var(--color-green-dark);
  flex-shrink: 0;
  display: inline-block;
}

.gcx-job-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.gcx-job-card__section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: 8px;
}

.gcx-job-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.gcx-job-detail-list li {
  font-size: 13px;
  color: var(--color-text-2);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.gcx-job-detail-list li::before {
  content: "•";
  color: var(--color-green);
  font-weight: bold;
}

.gcx-job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px dashed var(--color-border);
  margin-top: auto;
}

/* ==========================================================================
   COMPREHENSIVE TABLET & MOBILE RESPONSIVENESS AUDIT & FIXES
   ========================================================================== */

/* ── Sticky Nav Filter Pill Strips (Horizontal Scroll on Touch Devices) ── */
.gcx-sol-nav-strip {
  width: 100%;
  overflow: hidden;
}

.gcx-sol-nav-pills {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  gap: 10px;
  white-space: nowrap;
}

.gcx-sol-nav-pills::-webkit-scrollbar {
  height: 3px;
}

.gcx-sol-nav-pills::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 3px;
}

/* ── Tablet Breakpoint (max-width: 992px) ── */
@media (max-width: 992px) {
  .gcx-footer__top-row,
  .gcx-footer__middle-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
  }

  .gcx-contact-grid,
  .gcx-about-grid,
  .gcx-svc-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .gcx-job-card__footer {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ── Mobile Breakpoint (max-width: 768px) ── */
@media (max-width: 768px) {
  .gcx-section {
    padding: 48px 0 !important;
  }

  .gcx-h2 {
    font-size: 26px !important;
  }

  .gcx-h1, .gcx-cs-hero-h1 {
    font-size: 30px !important;
  }

  .gcx-svc-hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gcx-svc-hero-proof-divider {
    display: none;
  }

  .gcx-job-card {
    padding: 24px 18px !important;
  }

  .gcx-job-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gcx-job-card__meta {
    flex-direction: column;
    gap: 8px;
  }

  .gcx-footer__top-row,
  .gcx-footer__middle-row {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .gcx-footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }

  .gcx-form-grid {
    grid-template-columns: 1fr !important;
  }

  .gcx-form-group--full {
    grid-column: span 1 !important;
  }

  .gcx-contact-form-container {
    padding: 24px 18px !important;
  }
}

/* ── Small Mobile Breakpoint (max-width: 480px) ── */
@media (max-width: 480px) {
  .gcx-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .gcx-btn-primary, .gcx-btn-ghost {
    width: 100% !important;
    justify-content: center !important;
  }

  .gcx-job-card__footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .gcx-job-card__footer button {
    width: 100%;
    margin-top: 8px;
  }

  /* Case Studies Mobile Fixes */
  .gcx-cs-detail__grid {
    grid-template-columns: 1fr !important;
  }
  .gcx-cs-metrics {
    grid-template-columns: 1fr !important;
  }
  .gcx-cs-detail__image img {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }
}





