/* =========================================
   TECHTURF TECHNOLOGIES — Global Stylesheet
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #A1A1AA;
  background: #03040A;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #F8FAFC;
}

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

/* --- Color Tokens --- */
:root {
  --accent:       #4F46E5;
  --accent-dark:  #3730A3;
  --accent-light: #C7D2FE;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --neutral-indigo: #06080F;
}

/* =========================================
   TYPOGRAPHY & UTILITIES
   ========================================= */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { font-size: 1.05rem; color: #A1A1AA; }
small { font-size: 0.8125rem; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #818CF8;
  background: rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(79, 70, 229, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }

.section     { padding: 8rem 1.5rem; }
.section-alt { background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 80%); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 18px rgba(124,58,237,0.40); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: #E2E8F0;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.25); }

.btn-ghost {
  color: var(--accent);
  padding: 0;
  border-radius: 0;
}
.btn-ghost::after {
  content: '';
  display: block;
  width: 0; height: 2px;
  background: currentColor;
  transition: width 0.2s;
}
.btn-ghost:hover::after { width: 100%; }

/* --- Cards --- */
.card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover { 
  border-color: rgba(79,70,229,0.4); 
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.2); 
  transform: translateY(-4px); 
}

/* --- Icon box --- */
.icon-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(79,70,229,0.05));
  border: 1px solid rgba(79,70,229,0.3);
  color: #818CF8;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.725rem; font-weight: 600;
  background: rgba(79, 70, 229, 0.06);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin: 0.2rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s;
}
#navbar.scrolled .nav-inner {
  background: rgba(10, 12, 16, 0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 1.25rem auto 0;
  padding-inline: 1.5rem;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(255,255,255,0.15);
  border-radius: 99px;
  transition: all 0.4s ease;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #fff;
  letter-spacing: -0.025em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.nav-cta) {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.8625rem;
  color: #A1A1AA;
  position: relative;
  padding: 0.25rem 0;
  text-decoration: none;
  background: none;
  transition: color 0.2s ease;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.22s ease, opacity 0.22s ease;
  border-radius: 1px;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { width: 100%; }
.nav-links a:not(.nav-cta):hover,
.nav-links a.active:not(.nav-cta) { color: #fff; transition: color 0.15s ease; }

/* nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  color: #fff;
  background: rgba(79, 70, 229, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(79, 70, 229, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
  border-color: rgba(79, 70, 229, 0.6);
}
.nav-cta i {
  font-size: 0.85em;
  transform: translateY(0.5px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Overlay Menu --- */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(3,4,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-overlay a {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-overlay a:hover { color: var(--accent); }

/* =========================================
    HERO  — enterprise-dark, structured
    ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06080F;
  overflow: hidden;
  padding-top: 62px;
}
.hero-inner-container {
  width: min(1280px, 100% - 3rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

/* Background — deep navy, not pure black */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1000px 800px at 20% 40%, rgba(79,70,229,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 80% 60%, rgba(55,48,163,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 900px 600px at 50% 90%, rgba(79,70,229,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}

/* Ambient glow orbs */
.hero .hero-orb-ambient-1 {
  position: absolute;
  inset: auto;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 50%, rgba(79,70,229,0.18) 0%, transparent 65%);
  top: -100px; right: -50px;
  pointer-events: none;
  z-index: 0;
  animation: orb-drift-a 25s ease-in-out infinite alternate;
}
.hero .hero-orb-ambient-2 {
  position: absolute;
  inset: auto;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 55%, rgba(55,48,163,0.15) 0%, transparent 65%);
  bottom: 50px; left: 25%;
  pointer-events: none;
  z-index: 0;
  animation: orb-drift-b 30s ease-in-out infinite alternate;
}
.hero .hero-orb-ambient-3 {
  position: absolute;
  inset: auto;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.12) 0%, transparent 60%);
  top: 15%; left: 5%;
  pointer-events: none;
  z-index: 0;
  animation: orb-drift-c 22s ease-in-out infinite alternate;
}

@keyframes orb-drift-a {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-18px,12px) scale(1.025); }
}
@keyframes orb-drift-b {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(22px,-10px) scale(1.020); }
}
@keyframes orb-drift-c {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(15px,-20px) scale(1.05); }
}

.hero .hero-grid-col {
  position: relative; z-index: 1;
}

/* ── Left: Content ── */
.hero-left {
  padding: 7rem 1.75rem 6rem;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(201,200,245,0.80);
  background: rgba(93,82,176,0.14);
  border: 1px solid rgba(93,82,176,0.24);
  padding: 0.38rem 1rem;
  border-radius: 99px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}
.hero-eyebrow:hover { border-color: rgba(93,82,176,0.40); }

.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 540px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
}
.hero h1 .accent-highlight {
  background: linear-gradient(135deg, #E0E7FF 0%, #818CF8 50%, #C7D2FE 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shine 5s linear infinite;
}
@keyframes text-shine {
  to { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(241,245,249,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

/* ── Buttons ── */
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero .btn-primary {
  background: linear-gradient(180deg, rgba(99,102,241,1) 0%, rgba(79,70,229,1) 100%);
  color: #fff;
  padding: 0.7rem 1.5rem;
  font-size: 0.9375rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), 0 2px 12px rgba(79,70,229,0.3);
  transition: all 0.25s ease;
}
.hero .btn-primary:hover {
  background: linear-gradient(180deg, rgba(129,140,248,1) 0%, rgba(99,102,241,1) 100%);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 6px 20px rgba(79,70,229,0.45);
  transform: translateY(-2px);
}

.hero .btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  font-size: 0.9375rem;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}
.hero .btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Right: Visual card stack ── */
.hero-right {
  padding: 7rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  max-width: 580px;
  perspective: 1200px;
}

.hero-vis-card {
  background: rgba(15,23,42,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform-style: preserve-3d;
  animation: card-float-a 8s ease-in-out infinite alternate;
}

/* Top floating card (slightly deeper) */
.hero-vis-card.stack-top {
  position: absolute;
  top: -15%;
  right: -5%;
  width: 70%;
  padding: 1.25rem;
  animation: card-float-b 10s ease-in-out infinite alternate;
  box-shadow: 0 16px 64px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.1);
}

/* Main card */
.hero-vis-card.stack-main {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.1),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 120px rgba(79,70,229,0.15);
}

@keyframes card-float-a {
  from { transform: translateY(0) rotateX(2deg) rotateY(-1deg); }
  to   { transform: translateY(-8px) rotateX(1deg) rotateY(1deg); }
}
@keyframes card-float-b {
  from { transform: translateY(0) rotateX(-1deg) rotateY(1.5deg); }
  to   { transform: translateY(12px) rotateX(1.5deg) rotateY(-1deg); }
}

/* Card "window" chrome */
.hero-vis-chrome {
  display: flex; align-items: center; gap: 0.45rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(93,82,176,0.10);
}
.hero-vis-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-vis-dot.red   { background: #FF4D5F; }
.hero-vis-dot.amber { background: #FFA853; }
.hero-vis-dot.green { background: #46D173; }
.hero-vis-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.725rem; font-weight: 500;
  color: rgba(201,200,245,0.36);
  margin-left: 0.5rem;
  letter-spacing: 0.04em;
}

/* Card content skeleton */
.hero-vis-line {
  height: 6px;
  border-radius: 4px;
  background: rgba(201,200,245,0.065);
  margin-bottom: 0.5rem;
}
.hero-vis-line.w55 { width: 55%; }
.hero-vis-line.w72 { width: 72%; }
.hero-vis-line.w90 { width: 90%; }
.hero-vis-line.w38 { width: 38%; }
.hero-vis-line.w62 { width: 62%; }
.hero-vis-line.w85 { width: 85%; }
.hero-vis-line.w48 { width: 48%; }

.hero-vis-tag-row {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin: 0.75rem 0;
}
.hero-vis-tag {
  padding: 0.22rem 0.6rem;
  border-radius: 5px;
  background: rgba(93,82,176,0.14);
  border: 1px solid rgba(93,82,176,0.20);
  font-family: 'Inter', sans-serif;
  font-size: 0.63rem; font-weight: 500;
  color: rgba(201,200,245,0.70);
  letter-spacing: 0.02em;
}

/* Mock Chart */
.hero-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 64px;
  margin: 1.25rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-mock-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(99,102,241,0.85) 0%, rgba(79,70,229,0.2) 100%);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 0 12px rgba(99,102,241,0.25);
  animation: chart-rise 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
.hero-mock-chart .bar:nth-child(1) { animation-delay: 0.1s; }
.hero-mock-chart .bar:nth-child(2) { animation-delay: 0.2s; }
.hero-mock-chart .bar:nth-child(3) { animation-delay: 0.3s; }
.hero-mock-chart .bar:nth-child(4) { animation-delay: 0.4s; }
.hero-mock-chart .bar:nth-child(5) { animation-delay: 0.5s; }
.hero-mock-chart .bar:nth-child(6) { animation-delay: 0.6s; }
.hero-mock-chart .bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes chart-rise {
  to { transform: scaleY(1); }
}

.hero-vis-green-line {
  height: 5px;
  border-radius: 3px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(70,209,115,0.55) 0%, rgba(70,209,115,0.12) 80%);
}
.hero-vis-reset { height: 5px; border-radius: 3px; background: rgba(201,200,245,0.04); }
.hero-vis-reset-blue {
  height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, rgba(93,82,176,0.35) 0%, rgba(93,82,176,0.08) 85%);
}

/* ── Trust bar ── */
.trust-bar-section {
  background: #06080F;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}
.trust-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.trust-items {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.trust-item:hover { color: #fff; }
.trust-item i {
  color: rgba(99,102,241,0.85);
  font-size: 1.15rem;
}

/* =========================================
   SERVICES (Cards)
   ========================================= */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header p { color: #A1A1AA; margin-top: 0.85rem; }

.service-card { cursor: default; }
.service-card .icon-box i { font-size: 1.5rem; }
.service-card h3 { margin-bottom: 0.65rem; }
.service-card p  { color: #A1A1AA; font-size: 0.9375rem; line-height: 1.65; }
.service-links { margin-top: 1.25rem; }
.service-links a { font-size: 0.875rem; }

/* =========================================
   STATS
   ========================================= */
.stats-section {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.stats-grid { display: flex; justify-content: space-around; text-align: center; gap: 2rem; flex-wrap: wrap; }
.stat-item { padding: 1rem; }
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #9CA3AF;
  margin-top: 0.25rem;
}

/* =========================================
   LOCATIONS
   ========================================= */
.location-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.location-card:hover { 
  border-color: rgba(79,70,229,0.4); 
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.2); 
  transform: translateY(-4px); 
}

.loc-banner {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: rgba(0,0,0,0.3);
}
.loc-banner.blr { background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(79,70,229,0.02)); }
.loc-banner.lon { background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(56,189,248,0.02)); }

.loc-info { padding: 1.75rem; }
.loc-info h3 { margin-bottom: 0.4rem; }
.loc-info p { color: #A1A1AA; font-size: 0.875rem; line-height: 1.65; }
.loc-info .loc-label {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--accent);
  border-radius: 20px;
  padding: 4.5rem 3rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 2rem; }
.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.cta-banner .btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.15); transform: translateY(-1px); }

/* =========================================
   PAGE HERO
   ========================================= */
.page-hero {
  padding: 10rem 1.5rem 5rem;
  background: #03040A;
  background-image: radial-gradient(at 50% 0%, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { 
  margin-bottom: 1rem; 
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  letter-spacing: -0.04em;
  color: #F8FAFC;
}
.page-hero p  { 
  color: #A1A1AA; 
  font-size: 1.05rem;
  max-width: 580px; 
  margin-inline: auto; 
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.breadcrumb a { color: #A1A1AA; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: #9CA3AF; margin: 0 0.4rem; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.value-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover {
  border-color: rgba(79,70,229,0.4); 
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.2); 
  transform: translateY(-4px);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #A78BFA);
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover { 
  border-color: rgba(79,70,229,0.4); 
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.2); 
  transform: translateY(-4px); 
}
.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 2rem auto 1rem;
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-card .role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.team-card p { font-size: 0.9rem; color: #A1A1AA; padding: 0 1.5rem 1.5rem; }

.presence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.presence-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 3rem;
  display: flex; flex-direction: column;
}
.presence-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }
.presence-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.presence-card h3 { margin-bottom: 0.5rem; }
.presence-card p { color: #A1A1AA; font-size: 0.9375rem; }

/* =========================================
   SERVICES PAGE
   ========================================= */
.service-detail { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.service-detail-icon { font-size: 2.75rem; color: var(--accent); margin-bottom: 1rem; }
.service-detail h2 { font-size: 1.75rem; margin-bottom: 0.85rem; }
.service-detail > p:first-of-type { color: #A1A1AA; font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; }

.service-features li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.6rem 0;
  color: #E2E8F0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-features li:last-child { border-bottom: none; }
.service-features li i { color: var(--accent); font-size: 0.9rem; margin-top: 4px; flex-shrink: 0; }

/* Process */
.process-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  margin: 4rem 0 2.5rem;
}
.process-bar::before {
  content: '';
  position: absolute;
  top: 26px; left: 60px; right: 60px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 0.5rem;
}
.process-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}
.process-step:hover .process-num {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
  color: #fff;
  transform: translateY(-2px);
}
.process-step h4 { font-size: 0.9375rem; margin-bottom: 0.35rem; color: #E2E8F0; }
.process-step p  { font-size: 0.85rem; color: #A1A1AA; }

.stack-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; }

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  padding: 3rem;
}
.form-group { margin-bottom: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(79,70,229,0.6);
  box-shadow: 0 0 0 1px rgba(79,70,229,0.6), inset 0 2px 4px rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.3);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-detail-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  padding: 2rem;
  margin-bottom: 1.25rem;
  display: flex; gap: 1.15rem;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-detail-card:hover { 
  border-color: rgba(79,70,229,0.4); 
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(79,70,229,0.2); 
  transform: translateY(-4px); 
}

.cci {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-card h4 { font-size: 0.9375rem; margin-bottom: 0.3rem; }
.contact-detail-card p { font-size: 0.875rem; color: #A1A1AA; }

/* Maps */
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 0.5rem; }
.maps-grid iframe { height: 220px; border: 0; border-radius: 12px; }
.maps-label { display: block; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #03040A;
  border-top: 1px solid rgba(255,255,255,0.03);
  color: #94A3B8;
  padding: 6rem 1.5rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}
.footer-col p { color: #9CA3AF; font-size: 0.875rem; line-height: 1.7; }
.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem; display: block;
}
.footer-logo span { color: var(--accent); }

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.875rem; color: #9CA3AF; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-office-item { margin-bottom: 1rem; }
.footer-office-item .ofi { font-size: 0.72rem; text-transform: uppercase; color: #6B7280; margin-bottom: 0.25rem; }
.footer-office-item p { color: #9CA3AF; font-size: 0.875rem; line-height: 1.6; }

.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: #6B7280; }
.social-links { display: flex; gap: 0.85rem; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #374151;
  color: #9CA3AF;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--accent); color: #fff; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  .hero { display: block; }
  .hero-grid-col { max-width: 100%; padding: 5rem 1.25rem 4rem; }
  .hero-right { display: none; }

  .stats-grid { gap: 1.5rem; }
  .stat-number { font-size: 2.25rem; }

  .presence-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .maps-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 4rem 1.25rem; }
  .page-hero { padding: 5.5rem 1.25rem 3rem; }

  .cta-banner { padding: 3rem 1.5rem; border-radius: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
