/* ==========================================================================
   ADAURAA — OBSIDIAN KINETIC DESIGN SYSTEM
   Adopted from Google Stitch (Project 11366829899075378904)
   High-velocity, tech-enabled enterprise digital growth & BPO solutions
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Obsidian Kinetic Surface Palette */
  --surface: #0f131d;
  --surface-dim: #0b0f19;
  --surface-bright: #353944;
  --surface-container-lowest: #0a0e18;
  --surface-container-low: #171b26;
  --surface-container: #1c1f2a;
  --surface-container-high: #262a35;
  --surface-container-highest: #313540;
  --surface-variant: #313540;

  /* Text & Typography Colors */
  --on-surface: #dfe2f1;
  --on-surface-variant: #ccc3d8;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Brand Accents - Adauraa Emerald (#1bd146) */
  --primary: #1bd146;
  --primary-container: #15b03b;
  --on-primary: #041407;
  --on-primary-container: #e6fcee;
  --inverse-primary: #0f8f2d;

  --secondary: #4cd7f6;
  --secondary-container: #03b5d3;
  --on-secondary: #003640;
  --on-secondary-container: #00424e;

  --tertiary: #a3f7b5;
  --tertiary-container: #128a30;
  --on-tertiary-container: #f0fdf4;

  /* Borders & Outlines */
  --outline: rgba(255, 255, 255, 0.08);
  --outline-variant: #1e3a24;
  --outline-border: #334155;

  /* Glow Footprints */
  --glow-violet: rgba(27, 209, 70, 0.35);
  --glow-green: rgba(27, 209, 70, 0.35);
  --glow-cyan: rgba(6, 182, 212, 0.25);

  /* Legacy color aliases mapped to Obsidian Kinetic */
  --bg: var(--surface);
  --surface-sub: var(--surface-container-low);
  --ink: var(--text-primary);
  --muted: var(--text-secondary);
  --accent: var(--secondary);
  --accent-soft: var(--primary-container);

  /* Font Stacks */
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-headline: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-metric: 'Space Grotesk', monospace, sans-serif;
  --font-utility: 'Space Grotesk', monospace, sans-serif;

  /* Spacing Cadence */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --gutter-sm: 1rem;
  --gutter-md: 1.5rem;
  --gutter-lg: 2rem;
  --page-margin: clamp(1.25rem, 4vw, 3rem);
  --max-w: 1280px;

  /* Radii */
  --rounded-sm: 0.25rem;
  --rounded-md: 0.75rem;
  --rounded-lg: 1rem;
  --rounded-xl: 1.5rem;
  --rounded-full: 9999px;
}

/* Base resets & typography */
html {
  background-color: var(--surface);
  color: var(--on-surface);
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  background-color: var(--surface);
  color: var(--on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--primary-container);
  color: #ffffff;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

/* Material Symbols sizing helper */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* Subtle Film Grain */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
  mix-blend-mode: overlay;
}

/* Cursor Elements */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.15s ease-out;
  display: none;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--secondary);
  opacity: 0.4;
  transition: width 0.25s, height 0.25s, opacity 0.25s, transform 0.1s ease-out, border-color 0.25s;
}
body.hovering .cursor-ring {
  width: 50px;
  height: 50px;
  opacity: 0.7;
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--primary-container);
}
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    display: block;
  }
}

/* Layout Container */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--page-margin);
}

/* Typography Utility Classes */
.font-display-hero {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.font-headline-lg {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.font-headline-md {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.font-headline-sm {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.font-metric-xl {
  font-family: var(--font-metric);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.font-metric-md {
  font-family: var(--font-metric);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.font-label-caps {
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-body-lg {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.text-body-md {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.text-body-sm {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.gradient-text-primary {
  background: linear-gradient(135deg, #1bd146 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-cyan {
  background: linear-gradient(135deg, #4cd7f6 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text {
  background: linear-gradient(135deg, #1bd146 0%, #4cd7f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ambient Radial Glow Leaks */
.ambient-glow-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.glow-orb-violet, .glow-orb-green {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 209, 70, 0.22) 0%, rgba(27, 209, 70, 0) 70%);
  filter: blur(50px);
}
.glow-orb-cyan {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0) 70%);
  filter: blur(50px);
}

/* Glassmorphism Surface Classes */
.glass-panel {
  background: rgba(23, 27, 38, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-xl);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.glass-panel:hover {
  border-color: rgba(27, 209, 70, 0.35);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.5), 0 0 20px -4px rgba(27, 209, 70, 0.2);
}

.glass-card {
  background: rgba(28, 31, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 209, 70, 0.35);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 24px -6px rgba(27, 209, 70, 0.25);
}

/* Pill Badges */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--rounded-full);
  background: rgba(38, 42, 53, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  backdrop-filter: blur(8px);
}
.pill-badge--primary {
  background: rgba(27, 209, 70, 0.15);
  border-color: rgba(27, 209, 70, 0.35);
  color: #a3f7b5;
}
.ping-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--secondary);
  position: relative;
  flex-shrink: 0;
}
.ping-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--secondary);
  opacity: 0.7;
  animation: pingPulse 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes pingPulse {
  0% { transform: scale(1); opacity: 0.7; }
  75%, 100% { transform: scale(2.4); opacity: 0; }
}

/* Button System (High-Converting Consultation CTAs) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  min-height: 48px;
  border-radius: var(--rounded-full);
  background: linear-gradient(135deg, #1bd146 0%, #10b981 100%);
  color: #041407 !important;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px -4px rgba(27, 209, 70, 0.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -4px rgba(27, 209, 70, 0.65);
  filter: brightness(1.08);
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  min-height: 48px;
  border-radius: var(--rounded-full);
  background: rgba(28, 31, 42, 0.8);
  color: var(--text-primary) !important;
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(38, 42, 53, 0.95);
  border-color: var(--secondary);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR (Frosted Sticky Header)
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(15, 19, 29, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--outline);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
  padding-block: 0.85rem;
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.nav.scrolled {
  padding-block: 0.6rem;
  background: rgba(11, 15, 25, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav__logo-img {
  height: 2.3rem;
  width: auto;
  display: block;
}
.nav__brand-info {
  display: flex;
  flex-direction: column;
}
.nav__brand-title-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav__brand-name {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav__brand-location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--rounded-full);
  background: rgba(27, 209, 70, 0.15);
  color: var(--primary);
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
}
.nav__brand-tagline {
  font-family: var(--font-utility);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-headline);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  padding-block: 0.35rem;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-container), var(--secondary));
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text-primary);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-container-high);
  color: var(--secondary);
  border: 1px solid var(--outline);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.nav__icon-btn:hover {
  background: var(--surface-container-highest);
  color: #ffffff;
  transform: translateY(-1px);
}
.nav__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-container);
  color: var(--text-primary);
  border: 1px solid var(--outline);
  cursor: pointer;
}

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .nav__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Bottom Navigation Bar (Stitch Match) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(15, 19, 29, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--outline);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  padding: 0.5rem var(--space-xs);
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}
.mobile-bottom-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 52px;
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 54px;
  height: 48px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-utility);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.mobile-nav-item.active {
  color: var(--secondary);
  font-weight: 700;
}
.mobile-nav-item .material-symbols-outlined {
  font-size: 20px;
}
.mobile-nav-pill-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--rounded-full);
  background: var(--primary);
  color: #041407 !important;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(27, 209, 70, 0.4);
}
@media (max-width: 820px) {
  .mobile-bottom-nav {
    display: block;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ==========================================================================
   HERO MODULE
   ========================================================================== */
.hero {
  position: relative;
  padding-top: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 0.5rem;
}

/* Trust Metrics Bar / Bento */
.trust-metrics-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-lg);
  padding: 1.25rem 1rem;
  width: 100%;
  margin-top: 0.75rem;
  text-align: center;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
}
.trust-metric-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.trust-metric-val {
  font-family: var(--font-metric);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
}
.trust-metric-val--cyan {
  color: var(--secondary);
}
.trust-metric-val--violet,
.trust-metric-val--green {
  color: var(--primary);
}
.trust-metric-label {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Visual Showcase */
.hero__visual-card {
  position: relative;
  border-radius: var(--rounded-xl);
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.7);
  background: var(--surface-container-low);
}
.hero__visual-img {
  width: 100%;
  height: clamp(280px, 35vw, 420px);
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero__visual-card:hover .hero__visual-img {
  transform: scale(1.03);
}
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 24, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

/* ==========================================================================
   STRATEGIC FOOTHOLD & AHMEDABAD ANCHOR SECTION
   ========================================================================== */
.foothold-card {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-xl);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.foothold-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 860px) {
  .foothold-grid {
    grid-template-columns: 1fr;
  }
}
.foothold-img-box {
  position: relative;
  height: 240px;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  border: 1px solid var(--outline);
}
.foothold-badge-overlay {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1rem;
  border-radius: var(--rounded-md);
  border: 1px solid var(--outline);
}
.foothold-pillars-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}
.foothold-mini-card {
  background: var(--surface-container);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-md);
  padding: 1rem;
}

/* ==========================================================================
   5 STRATEGIC PILLARS GRID
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}
.pillar-card {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 209, 70, 0.4);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.6), 0 0 20px -4px rgba(27, 209, 70, 0.25);
}
.pillar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon-box--violet,
.pillar-icon-box--green {
  background: rgba(27, 209, 70, 0.15);
  color: var(--primary);
}
.pillar-icon-box--cyan {
  background: rgba(6, 182, 212, 0.15);
  color: var(--secondary);
}
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.pillar-tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: var(--rounded-sm);
  background: var(--surface-container);
  color: var(--on-surface);
  font-size: 12px;
  border: 1px solid var(--outline);
}

/* ==========================================================================
   CASE STUDY SPOTLIGHT (Sanand Group & Metrics Bento)
   ========================================================================== */
.case-spotlight-card {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.6);
  margin-bottom: var(--space-3xl);
}
.case-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 860px) {
  .case-spotlight-grid {
    grid-template-columns: 1fr;
  }
}
.case-kpi-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-block: 1rem;
}
.kpi-box {
  background: var(--surface-container);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-md);
  padding: 1rem;
}

/* ==========================================================================
   INSTANT GROWTH AUDIT FORM CARD
   ========================================================================== */
.audit-section-card {
  background: linear-gradient(180deg, var(--surface-container-high) 0%, var(--surface-container-low) 100%);
  border: 1px solid rgba(27, 209, 70, 0.35);
  border-radius: var(--rounded-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.7), 0 0 35px -8px rgba(27, 209, 70, 0.25);
  margin-bottom: var(--space-3xl);
  position: relative;
  overflow: hidden;
}
.audit-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .audit-form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-label {
  display: block;
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}
.input-wrap {
  display: flex;
  align-items: center;
  height: 50px;
  border-radius: var(--rounded-md);
  background: var(--surface-container-lowest);
  border: 1px solid var(--outline-border);
  padding-inline: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input-wrap:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
}
.input-wrap .material-symbols-outlined {
  color: var(--text-muted);
  margin-right: 0.6rem;
  font-size: 20px;
}
.input-field {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14.5px;
}
.input-field::placeholder {
  color: var(--text-muted);
}
.radio-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.radio-chip-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--rounded-md);
  background: var(--surface-container);
  border: 1px solid var(--outline);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--on-surface);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.radio-chip-label:hover {
  background: var(--surface-container-high);
  border-color: rgba(27, 209, 70, 0.35);
}

/* ==========================================================================
   HUB / TRUST PILLS SECTION
   ========================================================================== */
.hubs-section {
  text-align: center;
  padding-block: var(--space-2xl);
}
.hubs-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hub-pill {
  padding: 0.45rem 1.1rem;
  border-radius: var(--rounded-full);
  background: var(--surface-container);
  border: 1px solid var(--outline);
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ==========================================================================
   SERVICES CATALOG PAGE (services.html filters)
   ========================================================================== */
.filter-pills-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
}
.filter-pills-bar::-webkit-scrollbar {
  display: none;
}
.filter-pill-btn {
  padding: 0.5rem 1.15rem;
  border-radius: var(--rounded-full);
  background: var(--surface-container-high);
  color: var(--text-secondary);
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--outline);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.filter-pill-btn:hover {
  color: var(--text-primary);
  background: var(--surface-container-highest);
}
.filter-pill-btn.active {
  background: var(--primary);
  color: #041407;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(27, 209, 70, 0.4);
}

.service-catalog-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--rounded-lg);
  background: var(--surface-container);
  border: 1px solid var(--outline);
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-catalog-item:hover {
  background: var(--surface-container-high);
  border-color: rgba(27, 209, 70, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   FAQ ACCORDION & REVIEWS
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.faq-item {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-lg);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-inline: 1.5rem;
}
.faq-item__answer p {
  padding-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER (Deep Obsidian Glass)
   ========================================================================== */
.footer {
  background: var(--surface-dim);
  border-top: 1px solid var(--outline);
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-col-title {
  font-family: var(--font-utility);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--text-primary);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--outline);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Compatibility helpers for existing pages */
.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}
.section__title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section__lede {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.6;
}
.upward-bar {
  width: 3px;
  background: var(--primary-container);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
}
.upward-bar.active {
  transform: scaleY(1);
}

/* Page Hero for Secondary Pages */
.page-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.page-hero__content {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--page-margin);
}
.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-block: 0.75rem 1.5rem;
}
.page-hero__title-accent {
  background: linear-gradient(135deg, #1bd146 0%, #4cd7f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-utility);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--text-muted);
}
.breadcrumb a:hover {
  color: var(--secondary);
}

/* Case Studies Cards */
.case-study__challenge {
  background: var(--surface-container-low) !important;
  border: 1px solid var(--outline) !important;
  border-radius: var(--rounded-xl) !important;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.5) !important;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.case-study__challenge:hover {
  border-color: rgba(27, 209, 70, 0.35) !important;
  transform: translateY(-2px);
}
.case-study__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .case-study__grid {
    grid-template-columns: 1fr;
  }
}
.article__tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--rounded-full);
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(6, 182, 212, 0.15) !important;
  color: var(--secondary) !important;
  border: 1px solid rgba(6, 182, 212, 0.35) !important;
}

/* Process Steps */
.process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.process__step {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-lg);
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.process__step:hover {
  border-color: rgba(27, 209, 70, 0.4);
  transform: translateY(-3px);
}
.process__number {
  font-family: var(--font-metric);
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.5rem;
}
.process__heading {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.process__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* CTA Bar */
.cta-bar {
  background: linear-gradient(180deg, var(--surface-container-high) 0%, var(--surface-container-low) 100%);
  border: 1px solid rgba(27, 209, 70, 0.35);
  border-radius: var(--rounded-xl);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.6);
}
.cta-bar__title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.cta-bar__subtitle {
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.cta-bar__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Blog Cards */
.blog-card {
  background: var(--surface-container-low);
  border: 1px solid var(--outline);
  border-radius: var(--rounded-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(27, 209, 70, 0.4);
}
.blog-card__category {
  font-family: var(--font-utility);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-family: var(--font-headline);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.blog-card__excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.whatsapp-float-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}
.whatsapp-float-widget:hover {
  transform: translateY(-4px) scale(1.04);
  filter: brightness(1.08);
}
.whatsapp-float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px -2px rgba(37, 211, 102, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.2);
  position: relative;
  flex-shrink: 0;
}
.whatsapp-float-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: waPingPulse 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes waPingPulse {
  0% { transform: scale(0.95); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.whatsapp-float-tooltip {
  background: rgba(15, 19, 29, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(27, 209, 70, 0.3);
  color: #f8fafc;
  padding: 8px 14px;
  border-radius: 9999px;
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.whatsapp-float-tooltip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
}
@media (max-width: 820px) {
  .whatsapp-float-widget {
    bottom: 82px;
    right: 18px;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}


