/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --dark:         #0a0a0a;
  --dark2:        #0d0d10;
  --dark3:        #111215;
  --cyan:         #00d4ff;
  --violet:       #a855f7;
  --silver:       #e5e7eb;
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --max-w:        1380px;
  --ease:         0.28s ease;
  --ff-head:      'Inter', system-ui, -apple-system, sans-serif;
  --ff-body:      'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--silver);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   INTERACTIVE GRADIENT BG (minimal)
=========================== */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: var(--dark);
  overflow: hidden;
  pointer-events: none;
}
.bg-animation::before,
.bg-animation::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}
.bg-animation::before {
  width: 55vmax; height: 55vmax;
  background: radial-gradient(circle, rgba(0,212,255,0.18), transparent 65%);
  top: 0; left: 0;
  transform: translate3d(calc(var(--mx, 50vw) - 27.5vmax), calc(var(--my, 50vh) - 27.5vmax), 0);
}
.bg-animation::after {
  width: 45vmax; height: 45vmax;
  background: radial-gradient(circle, rgba(168,85,247,0.13), transparent 65%);
  top: 0; left: 0;
  transform: translate3d(calc(var(--mx, 50vw) - 32vmax), calc(var(--my, 50vh) - 12vmax), 0);
}

/* Hide cyber elements */
.grid-overlay,
.particles { display: none !important; }

/* ===========================
   CUSTOM CURSOR — futuristic reticule
=========================== */
.cursor, .cursor-ring {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}
.cursor {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 10px var(--cyan),
    0 0 22px rgba(0,212,255,0.45);
}
.cursor-ring {
  width: 30px; height: 30px;
  border: none;
  background:
    linear-gradient(#00d4ff,#00d4ff) top    left  / 8px 1px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) top    left  / 1px 8px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) top    right / 8px 1px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) top    right / 1px 8px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) bottom left  / 8px 1px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) bottom left  / 1px 8px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) bottom right / 8px 1px no-repeat,
    linear-gradient(#00d4ff,#00d4ff) bottom right / 1px 8px no-repeat;
  filter: drop-shadow(0 0 4px rgba(0,212,255,0.55));
  opacity: 0.85;
}
@media (hover: none) { .cursor, .cursor-ring { display: none; } }
body { cursor: none; }
@media (hover: none) { body { cursor: auto; } }

/* ===========================
   LOADING SCREEN
=========================== */

/* Skip-loader class added by inline head script on return visits */
.skip-loader #loader { display: none !important; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}
.loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-canvas {
  position: absolute;
  inset: 0;
  display: block;
}

.loader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}

.loader-agency-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 60px rgba(255,255,255,0.15);
}

.loader-status {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.loader-status::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-left: 0.2em;
  animation: dotPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(0,212,255,0.8);
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.1); }
}

.loader-bar {
  width: 220px; height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.6);
  animation: barFill 2.2s ease-out forwards;
}
@keyframes barFill { from { width: 0; } to { width: 100%; } }

/* ===========================
   NAVIGATION
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: border-color var(--ease);
}
#navbar.scrolled { border-bottom-color: rgba(0,212,255,0.18); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 42px;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.35));
}
.nav-logo-text {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--silver);
}
.nav-links {
  display: flex;
  gap: 0;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.6);
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 1px; left: 0.85rem; right: 0.85rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  font-family: var(--ff-head);
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--dark);
  font-weight: 700;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.nav-cta:hover { opacity: 0.8; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.mobile-nav.open { transform: none; }
.mobile-nav a {
  display: block;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.65);
  border-bottom: 1px solid var(--glass-border);
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--cyan);
  padding-left: 2.5rem;
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 2rem; }
.page-body { padding-top: 72px; }

/* ===========================
   GEOMETRIC DECORATIONS
=========================== */

/* Corner bracket on any element */
.bracket {
  position: relative;
}
.bracket::before, .bracket::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
}
.bracket::before {
  top: 0; left: 0;
  border-top: 1.5px solid var(--cyan);
  border-left: 1.5px solid var(--cyan);
  opacity: 0.5;
}
.bracket::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid var(--violet);
  border-right: 1.5px solid var(--violet);
  opacity: 0.5;
}

/* Small tag label above headings */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.tag::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}

/* Diamond shape accent */
.diamond {
  width: 10px; height: 10px;
  background: var(--cyan);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Cross/plus marker */
.cross-mark {
  position: relative;
  width: 16px; height: 16px;
}
.cross-mark::before, .cross-mark::after {
  content: '';
  position: absolute;
  background: rgba(0,212,255,0.4);
}
.cross-mark::before { width: 1.5px; height: 100%; left: 50%; top: 0; margin-left: -0.75px; }
.cross-mark::after  { width: 100%; height: 1.5px; top: 50%; left: 0; margin-top: -0.75px; }

/* Dot grid section overlay */
.dot-grid {
  background-image: radial-gradient(circle, rgba(0,212,255,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Diagonal section separator (top edge) */
.slant-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  margin-top: -3%;
  position: relative;
  z-index: 1;
}

/* Gradient horizontal line */
.geo-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  opacity: 0.3;
  margin: 0;
}

/* Decorative corner frame (larger) */
.frame-corner {
  position: absolute;
}
.frame-corner.tl { top: 1rem; left: 1.5rem; }
.frame-corner.tr { top: 1rem; right: 1.5rem; }
.frame-corner.br { bottom: 1rem; right: 1.5rem; }
.frame-corner.bl { bottom: 1rem; left: 1.5rem; }
.frame-corner::before, .frame-corner::after {
  content: '';
  position: absolute;
  border-color: rgba(0,212,255,0.25);
  border-style: solid;
}
.frame-corner.tl::before { width: 30px; height: 0; border-top-width: 1px; top: 0; left: 0; }
.frame-corner.tl::after  { width: 0; height: 30px; border-left-width: 1px; top: 0; left: 0; }
.frame-corner.tr::before { width: 30px; height: 0; border-top-width: 1px; top: 0; right: 0; }
.frame-corner.tr::after  { width: 0; height: 30px; border-right-width: 1px; top: 0; right: 0; }

/* ===========================
   HOLOGRAPHIC ORB
=========================== */
.orb {
  border-radius: 50%;
  background: conic-gradient(from 0deg, #00d4ff 0%, #0044ff 22%, #a855f7 45%, #ff00cc 68%, #ff6600 82%, #00d4ff 100%);
  box-shadow: 0 0 60px rgba(0,212,255,0.28), 0 0 120px rgba(168,85,247,0.12);
  position: relative;
  flex-shrink: 0;
  animation: orbHue 9s linear infinite;
}
.orb::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 65%);
}
@keyframes orbHue {
  from { filter: hue-rotate(0deg) brightness(1.05); }
  to   { filter: hue-rotate(360deg) brightness(1.05); }
}
.orb-lg { width: 260px; height: 260px; }
.orb-md { width: 180px; height: 180px; }
.orb-sm { width: 90px;  height: 90px;  }

/* ===========================
   HERO (HOME)
=========================== */
.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.hero-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.38);
  line-height: 2;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}
.stat .num {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--silver);
}
.stat .lbl {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.38);
  line-height: 1.7;
}
.hero-reach {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity var(--ease);
}
.hero-reach:hover { opacity: 0.6; }
.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -3px;
  text-transform: uppercase;
  text-align: right;
  background: linear-gradient(135deg, var(--silver) 25%, var(--cyan) 55%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Decorative geo shapes floating in hero */
.hero-geo {
  position: absolute;
  pointer-events: none;
}
.hero-geo-1 {
  top: 15%;
  left: 45%;
  width: 60px; height: 60px;
  border: 1px solid rgba(0,212,255,0.12);
  transform: rotate(45deg);
  animation: geoFloat 8s ease-in-out infinite;
}
.hero-geo-2 {
  bottom: 20%;
  left: 40%;
  width: 30px; height: 30px;
  border: 1px solid rgba(168,85,247,0.18);
  transform: rotate(20deg);
  animation: geoFloat 12s ease-in-out infinite reverse;
}
.hero-geo-3 {
  top: 30%;
  right: 5%;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, rgba(0,212,255,0.25), transparent);
  animation: geoFloat 10s ease-in-out infinite 2s;
}
@keyframes geoFloat {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  50%      { transform: rotate(55deg) translate(8px,-8px); }
}

/* ===========================
   PAGE HERO (subpages)
=========================== */
.page-hero {
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--silver) 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(229,231,235,0.6);
  max-width: 560px;
  line-height: 1.75;
}
/* Decorative frame top-right of page heroes */
.page-hero::before, .page-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.page-hero::before {
  top: 1.5rem; right: 2.5rem;
  width: 50px; height: 50px;
  border-top: 1.5px solid rgba(0,212,255,0.3);
  border-right: 1.5px solid rgba(0,212,255,0.3);
}
.page-hero::after {
  bottom: 1.5rem; right: 5rem;
  width: 25px; height: 25px;
  border-bottom: 1.5px solid rgba(168,85,247,0.3);
  border-right: 1.5px solid rgba(168,85,247,0.3);
}

/* ===========================
   SECTION HEADINGS
=========================== */
.sh {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--silver) 40%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}
.sh.right  { text-align: right; }
.sh.center { text-align: center; }

/* ===========================
   ABOUT STRIP
=========================== */
.about-strip {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 4rem 2rem;
}
.about-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.about-strip-text p {
  font-size: 0.7rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.45);
  line-height: 2.4;
  max-width: 700px;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(168,85,247,0.03));
  border-top: 1px solid rgba(0,212,255,0.12);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  padding: 3rem 2rem;
}
.stats-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item .big-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}
.stat-item .big-lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.4);
  margin-top: 0.3rem;
}

/* ===========================
   SERVICES (home bento)
=========================== */
.services-section {
  background: var(--dark3);
  padding: 6rem 2rem;
}
.services-bento {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
}
.services-label .sh { margin-bottom: 0; }
.service-list { display: flex; flex-direction: column; gap: 0.7rem; }
.service-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--silver);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}
/* Scan line */
.service-list-item::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.5), transparent);
  animation: scanLine 3.5s linear infinite;
}
@keyframes scanLine { to { left: 140%; } }

.service-list-item:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.25);
  transform: translateX(4px);
}
.service-list-item.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(168,85,247,0.08));
  border-color: rgba(0,212,255,0.35);
}
.service-list-item.featured:hover {
  border-color: rgba(0,212,255,0.5);
}
.service-item-text h3 {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.3rem;
}
.service-item-text p {
  font-size: 0.67rem;
  letter-spacing: 0.5px;
  color: rgba(229,231,235,0.45);
  line-height: 1.7;
  max-width: 480px;
}
.svc-arrow {
  font-size: 1.1rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.service-list-item:hover .svc-arrow { transform: translate(3px,-3px); }

/* ===========================
   APPROACH
=========================== */
.approach-section {
  background: var(--dark);
  padding: 6rem 2rem;
}
.approach-inner { max-width: var(--max-w); margin: 0 auto; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.approach-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
/* corner bracket geo */
.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border-top: 1.5px solid rgba(0,212,255,0.45);
  border-left: 1.5px solid rgba(0,212,255,0.45);
}
.approach-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 18px; height: 18px;
  border-bottom: 1.5px solid rgba(168,85,247,0.35);
  border-right: 1.5px solid rgba(168,85,247,0.35);
}
.approach-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.approach-card.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(168,85,247,0.06));
  border-color: rgba(0,212,255,0.28);
}
.approach-card h3 {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.9rem;
}
.approach-card p {
  font-size: 0.7rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.48);
  line-height: 1.9;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--dark2);
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  position: relative;
}
/* Big decorative geo lines in CTA background */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), rgba(168,85,247,0.08), transparent);
}
.cta-top {
  max-width: var(--max-w);
  margin: 0 auto 3rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}
.cta-copy p {
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.45);
  line-height: 2.1;
  max-width: 360px;
  text-align: right;
  margin-bottom: 1.5rem;
}
.cta-headline {
  max-width: var(--max-w);
  margin: 0 auto;
  font-family: var(--ff-head);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -4px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--silver) 20%, var(--cyan) 50%, var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: var(--dark);
  border-radius: 4px;
  transition: opacity var(--ease), transform var(--ease);
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  border-radius: 4px;
  transition: background var(--ease), transform var(--ease);
}
.btn-outline:hover { background: rgba(0,212,255,0.08); transform: translateY(-2px); }

/* ===========================
   GLASS CARDS (generic)
=========================== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease);
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-top: 1.5px solid rgba(0,212,255,0.4);
  border-left: 1.5px solid rgba(0,212,255,0.4);
}
.glass-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 16px; height: 16px;
  border-bottom: 1.5px solid rgba(168,85,247,0.35);
  border-right: 1.5px solid rgba(168,85,247,0.35);
}
.glass-card:hover { border-color: rgba(0,212,255,0.28); transform: translateY(-4px); }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-card h3 {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--silver);
  margin-bottom: 0.75rem;
}
.glass-card p { font-size: 0.86rem; color: rgba(229,231,235,0.6); line-height: 1.7; }

/* Card grids */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ===========================
   FEATURE LIST (service pages)
=========================== */
.feature-list { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.6rem 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  border-left: 2px solid rgba(0,212,255,0.4);
  transition: border-left-color var(--ease), background var(--ease);
  position: relative;
}
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 1px solid rgba(0,212,255,0.3);
  border-left: 1px solid rgba(0,212,255,0.3);
  opacity: 0;
  transition: opacity var(--ease);
}
.feature-item:hover::before { opacity: 1; }
.feature-item:hover { border-left-color: var(--violet); background: rgba(0,212,255,0.03); }
.feature-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(0,212,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(0,212,255,0.15);
  flex-shrink: 0;
}
.feature-item h3 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--silver);
  margin-bottom: 0.4rem;
}
.feature-item p { font-size: 0.85rem; color: rgba(229,231,235,0.58); line-height: 1.7; }

/* ===========================
   PROCESS STEPS
=========================== */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 0; bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, rgba(0,212,255,0.2), transparent);
}
.step-num {
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(0,212,255,0.12);
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--silver);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}
.step p { font-size: 0.88rem; color: rgba(229,231,235,0.58); line-height: 1.7; }

/* ===========================
   TWO-COL LAYOUT
=========================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.flipped > *:first-child { order: 2; }
.two-col.flipped > *:last-child  { order: 1; }

/* ===========================
   CONTACT FORM
=========================== */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.45);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--silver);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(229,231,235,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}
.form-group select option { background: var(--dark); }

/* ===========================
   CONTACT INFO
=========================== */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.88rem;
  color: rgba(229,231,235,0.6);
  line-height: 1.6;
  transition: color var(--ease);
}
.contact-info-item a:hover { color: var(--cyan); }

/* ===========================
   BLOG CARDS
=========================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  color: var(--silver);
  transition: border-color var(--ease), transform var(--ease);
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-top: 1px solid rgba(0,212,255,0.35);
  border-left: 1px solid rgba(0,212,255,0.35);
  opacity: 0;
  transition: opacity var(--ease);
}
.blog-card:hover::before { opacity: 1; }
.blog-card:hover { border-color: rgba(0,212,255,0.25); transform: translateY(-4px); }
.blog-card-body { padding: 1.75rem; }
.blog-tag {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  display: block;
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.3px;
  color: var(--silver);
  margin-bottom: 0.75rem;
}
.blog-card p { font-size: 0.82rem; color: rgba(229,231,235,0.5); line-height: 1.65; }
.blog-card-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(229,231,235,0.3);
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-brand-logo img { height: 38px; }
.footer-brand-logo span {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  color: var(--silver);
}
.footer-about {
  font-size: 0.82rem;
  color: rgba(229,231,235,0.45);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(229,231,235,0.5);
  margin-bottom: 0.5rem;
}
.footer-contact-line i { color: var(--cyan); width: 14px; font-size: 0.75rem; }
.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-list a {
  font-size: 0.82rem;
  color: rgba(229,231,235,0.48);
  transition: color var(--ease);
}
.footer-nav-list a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(229,231,235,0.28); letter-spacing: 0.5px; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(229,231,235,0.45);
  font-size: 0.85rem;
  transition: color var(--ease), border-color var(--ease);
}
.footer-socials a:hover { color: var(--cyan); border-color: rgba(0,212,255,0.4); }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===========================
   3D GEO CANVAS
=========================== */
.geo-canvas { display: block; flex-shrink: 0; }
.geo-lg { width: 260px; height: 260px; }
.geo-md { width: 180px; height: 180px; }
.geo-sm { width: 90px;  height: 90px;  }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-right        { align-items: flex-start; }
  .hero-headline     { text-align: left; }
  .services-bento    { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach-grid     { grid-template-columns: 1fr; }
  .cta-top           { flex-direction: column; align-items: flex-start; }
  .cta-copy p        { text-align: left; }
  .grid-3            { grid-template-columns: 1fr 1fr; }
  .blog-grid         { grid-template-columns: 1fr 1fr; }
  .two-col           { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.flipped > *:first-child { order: 0; }
  .two-col.flipped > *:last-child  { order: 0; }
  .about-strip-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 4rem 1.5rem; }
  .hero      { padding: 3rem 1.5rem 4rem; }
  .page-hero { padding: 4rem 1.5rem 3rem; }
  .grid-3    { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row  { grid-template-columns: 1fr; }
  .cta-headline { letter-spacing: -2px; }
}
@media (max-width: 480px) {
  .stats-bar-inner   { grid-template-columns: 1fr 1fr; }
  .stats-row         { gap: 1.5rem; }
  .hero-headline     { font-size: clamp(2.2rem, 12vw, 3rem); letter-spacing: -1px; }
  .cta-headline      { font-size: clamp(3rem, 15vw, 5rem); letter-spacing: -1px; }
}
