/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root {
  --bg:          #1c1c1c;
  --bg-dark:     #111111;
  --surface:     rgba(255,255,255,0.08);
  --surface-2:   rgba(255,255,255,0.13);
  --glass:       rgba(255,255,255,0.10);
  --glass-border:rgba(255,255,255,0.18);
  --orange:      #e8622a;
  --orange-dim:  rgba(232,98,42,0.15);
  --orange-glow: rgba(232,98,42,0.35);
  --white:       #ffffff;
  --muted:       #888888;
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.3s ease;
  --font:        'Inter', system-ui, sans-serif;
  --max-w:       1200px;
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS (IntersectionObserver driven)
══════════════════════════════════════════════════════ */
.reveal,
.stagger > * {
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim-hidden {
  opacity: 0 !important;
  transform: translateY(32px) !important;
}

/* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font); }

/* ══════════════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.orange { color: var(--orange); }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-dark); }
.text-center { text-align: center; }

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* Badge */
.badge {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid rgba(232,98,42,0.3);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--orange-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(17,17,17,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-text .gs-grip { color: var(--white); }
.logo-text .gs-scroll { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.85rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   VANTA / PAGE HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 160px 0 80px;
  overflow: hidden;
}
#vanta-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 20% 65%, rgba(232,98,42,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 78% 20%, rgba(232,98,42,0.07) 0%, transparent 45%);
}
.hero-content, .page-hero-content {
  position: relative;
  z-index: 2;
}
/* Gradient overlay so text stays readable */
.hero::before, .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.4) 60%,
    transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--orange); top: -100px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: #c44d1a; bottom: -50px; left: 10%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: var(--orange); top: 40%; left: 60%; animation-delay: -5s; }

@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

/* Hero typography */
.hero-content .badge { margin-bottom: 20px; }
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 0 60px rgba(232,98,42,0.15);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-ctas .btn { padding: 16px 36px; font-size: 1rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 20px var(--orange-glow);
}
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 44px; background: var(--glass-border); }

/* Page hero (subpages) */
.page-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════
   GLASS CARDS (base)
══════════════════════════════════════════════════════ */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card:hover {
  border-color: rgba(232,98,42,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(232,98,42,0.08);
}
.card-icon { font-size: 2.2rem; margin-bottom: 18px; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   3D FLIP CARDS (Services)
══════════════════════════════════════════════════════ */
.flip-card {
  perspective: 1200px;
  height: 280px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner { transform: rotateY(180deg); }

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flip-card-front {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  align-items: flex-start;
  justify-content: flex-start;
}
.flip-card-back {
  background: linear-gradient(135deg, var(--orange) 0%, #c44d1a 100%);
  transform: rotateY(180deg);
  align-items: flex-start;
}
.flip-card-back h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.flip-card-back p  { color: rgba(255,255,255,0.88); font-size: 0.875rem; line-height: 1.6; }
.flip-card-back .btn {
  margin-top: auto;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.85rem;
  padding: 9px 20px;
}
.flip-card-back .btn:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); }

.flip-hint {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════
   TILT CARDS (VanillaTilt wrapper)
══════════════════════════════════════════════════════ */
.tilt-wrap {
  transform-style: preserve-3d;
  border-radius: var(--radius);
}
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-content {
  transform: translateZ(20px);
}

/* ══════════════════════════════════════════════════════
   NICHE SECTION
══════════════════════════════════════════════════════ */
.niche-card { padding: 36px; }
.niche-icon { font-size: 2.8rem; margin-bottom: 20px; }
.niche-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.niche-card > p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.niche-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.niche-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.niche-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
}
.niche-featured {
  border-color: rgba(232,98,42,0.4) !important;
  background: linear-gradient(135deg, rgba(232,98,42,0.1), var(--glass)) !important;
}

/* ══════════════════════════════════════════════════════
   RESULT / CASE STUDY CARDS
══════════════════════════════════════════════════════ */
.result-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}
.result-card:hover {
  border-color: rgba(232,98,42,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.result-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.result-metric { margin-bottom: 14px; }
.big-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  text-shadow: 0 0 30px var(--orange-glow);
}
.result-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.result-card .result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.2s;
}
.result-card .result-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: center;
}
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
.pricing-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.pricing-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.plan-desc { color: var(--muted); font-size: 0.875rem; margin-bottom: 24px; line-height: 1.5; }
.price { font-size: 2.6rem; font-weight: 900; margin-bottom: 28px; }
.price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.plan-features li { font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.plan-features li.on  { color: var(--white); }
.plan-features li.off { opacity: 0.35; }
.plan-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.plan-features li.off::before { content: '✗'; color: var(--muted); }

.pricing-featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, rgba(232,98,42,0.12), var(--glass));
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(232,98,42,0.15);
}
.pricing-featured:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 36px;
}
.orange-link { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  border-color: rgba(232,98,42,0.25);
  transform: translateY(-5px);
}
.stars { color: var(--orange); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card > p {
  color: rgba(255,255,255,0.75);
  font-size: 0.925rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   STATS COUNTER SECTION
══════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.stat-box .count-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 40px var(--orange-glow);
}
.stat-box p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.process-step { text-align: center; padding: 0 16px; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 2px solid rgba(232,98,42,0.4);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--orange-glow);
}
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #e8622a 0%, #c44d1a 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.8rem,3vw,2.5rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  position: relative;
}
.cta-banner .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text h2 {
  font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-story-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.about-visual {
  position: relative;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  text-align: center;
  font-size: 5rem;
}
.about-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,98,42,0.1), transparent);
}

.team-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.team-card:hover { border-color: rgba(232,98,42,0.3); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c44d1a);
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-card h4 { font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--orange); font-weight: 600; }
.team-card p { color: var(--muted); font-size: 0.85rem; margin-top: 12px; line-height: 1.6; }

.value-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.value-card:hover { border-color: rgba(232,98,42,0.3); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { font-weight: 700; margin-bottom: 10px; }
.value-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.blog-card:hover { border-color: rgba(232,98,42,0.3); transform: translateY(-5px); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--orange-dim), rgba(196,77,26,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--glass-border);
}
.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--muted);
}
.blog-meta .cat {
  color: var(--orange);
  font-weight: 600;
}
.blog-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body p  { color: var(--muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   CASE STUDY DETAIL
══════════════════════════════════════════════════════ */
.case-hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.case-stat {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.case-stat .num { font-size: 2.5rem; font-weight: 900; color: var(--orange); }
.case-stat .lbl { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.case-body { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.case-section { margin-bottom: 40px; }
.case-section h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border); }
.case-section p  { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.case-section ul { display: flex; flex-direction: column; gap: 8px; }
.case-section ul li { color: var(--muted); font-size: 0.9rem; padding-left: 16px; position: relative; }
.case-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); }

.case-sidebar-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}
.case-sidebar-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 16px; }
.cs-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--glass-border); font-size: 0.875rem; }
.cs-item:last-child { border-bottom: none; }
.cs-val { color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-label { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-email { color: var(--orange); font-weight: 600; font-size: 0.95rem; transition: opacity 0.2s; }
.contact-email:hover { opacity: 0.75; }

.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 20px var(--orange-glow); }

.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: all 0.3s;
  resize: vertical;
}
.form-group select option { background: #1c1c1c; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,42,0.12);
  background: rgba(255,255,255,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 16px 0 20px;
  font-style: italic;
  max-width: 260px;
}
.footer-emails { display: flex; flex-direction: column; gap: 6px; }
.footer-emails a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-emails a:hover { color: var(--orange); }
.footer-links h4,
.footer-social-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { color: var(--muted); font-size: 0.875rem; padding: 5px 0; transition: all 0.2s; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.825rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.825rem; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ══════════════════════════════════════════════════════
   GSAP ANIMATION START STATES
══════════════════════════════════════════════════════ */
.gsap-fade { opacity: 0; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .about-story { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .case-body { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-featured { transform: scale(1); }
  .contact-grid { grid-template-columns: 1fr; }
  .case-hero-stats { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero { padding: 130px 0 80px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    margin-left: 0;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 12px 0; color: var(--white); }
  .nav-links a.active { color: var(--orange); }

  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .cta-banner { padding: 44px 24px; }
  .flip-card { height: 240px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }
}

/* ══════════════════════════════════════════════════════
   TRUST BAND / MARQUEE
══════════════════════════════════════════════════════ */
.trust-band {
  padding: 36px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.trust-band-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.marquee-wrap {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marqueeScroll 26s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color 0.3s;
}
.marquee-item::before { content: '✦ '; color: var(--orange); opacity: 0.6; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   WHY GRIPSCROLL SECTION
══════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.35s;
}
.why-card:hover { border-color: rgba(232,98,42,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.why-card::before {
  content: attr(data-num);
  position: absolute;
  top: -8px; right: 20px;
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(232,98,42,0.06);
  line-height: 1;
  pointer-events: none;
}
.why-icon { font-size: 2.2rem; margin-bottom: 18px; }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   BEFORE / AFTER PROOF STRIP
══════════════════════════════════════════════════════ */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.proof-cell {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.proof-cell:last-child { border-right: none; }
.proof-cell:hover { background: var(--surface-2); }
.proof-before { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.proof-num { font-size: 2.2rem; font-weight: 900; color: var(--orange); line-height: 1; text-shadow: 0 0 24px var(--orange-glow); }
.proof-label { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

/* ══════════════════════════════════════════════════════
   FLIP CARD HEIGHT FIX
══════════════════════════════════════════════════════ */
.flip-card { height: 360px; }

/* ══════════════════════════════════════════════════════
   TEAM — SINGLE FOUNDER CARD
══════════════════════════════════════════════════════ */
.single-team-wrap { max-width: 540px; margin: 0 auto; }
.team-card-featured {
  background: var(--glass);
  border: 1px solid rgba(232,98,42,0.35);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 80px rgba(232,98,42,0.08);
  transition: all 0.35s;
}
.team-card-featured:hover { box-shadow: 0 0 120px rgba(232,98,42,0.14); transform: translateY(-4px); }
.team-photo-wrap {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 3px solid var(--orange);
  box-shadow: 0 0 40px var(--orange-glow);
}
.team-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-avatar-fallback {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #c44d1a);
  color: var(--white);
  font-size: 3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 3px solid var(--orange);
  box-shadow: 0 0 40px var(--orange-glow);
}
.team-card-featured h4 { font-size: 1.7rem; font-weight: 800; margin-bottom: 4px; }
.team-role { display: block; font-size: 0.875rem; color: var(--orange); font-weight: 600; margin-bottom: 20px; margin-top: 6px; letter-spacing: 0.5px; }
.team-card-featured p { color: var(--muted); font-size: 0.92rem; line-height: 1.75; max-width: 400px; margin: 0 auto; }
.team-socials-row { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.team-social-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  transition: all 0.3s;
}
.team-social-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.team-social-pill:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* India badge */
.india-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,153,51,0.1);
  border: 1px solid rgba(255,153,51,0.3);
  color: #ff9933;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

/* Blog grid 2-col for featured display */
.blog-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-card-large .blog-thumb { height: 220px; }
.blog-card-large .blog-body h3 { font-size: 1.15rem; line-height: 1.35; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-cell:nth-child(2) { border-right: none; }
  .proof-cell:nth-child(3) { border-right: 1px solid var(--glass-border); }
  .proof-cell:nth-child(3), .proof-cell:nth-child(4) { border-top: 1px solid var(--glass-border); }
  .blog-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .flip-card { height: 320px; }
  .team-card-featured { padding: 36px 24px; }
}
