/* ═══════════════════════════════════════════════════════
   BHASAKA TECHNOLOGIES — Premium SaaS Design System
   Theme: Clean Light + Amber→Pink→Crimson gradient brand
   Inspired by: Stripe, Vercel, Linear
   Font: Plus Jakarta Sans (display) + Outfit (body)
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* Brand Gradient */
  --grad:        linear-gradient(135deg, #F59E0B 0%, #EC4899 55%, #BE185D 100%);
  --grad-hover:  linear-gradient(135deg, #D97706 0%, #DB2777 55%, #9D174D 100%);
  --grad-soft:   linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(236,72,153,0.08) 100%);
  --grad-text:   linear-gradient(135deg, #F59E0B, #EC4899);
  --grad-border: linear-gradient(135deg, rgba(245,158,11,0.4), rgba(236,72,153,0.4));

  /* Accent Colors */
  --amber:       #F59E0B;
  --pink:        #EC4899;
  --crimson:     #BE185D;
  --amber-light: rgba(245,158,11,0.1);
  --pink-light:  rgba(236,72,153,0.1);

  /* Backgrounds */
  --bg:          #FAFAFA;
  --bg-white:    #FFFFFF;
  --bg-soft:     #F4F4F6;
  --bg-muted:    #EDEDF0;
  --bg-dark:     #0A0A0F;
  --bg-dark-2:   #111118;

  /* Text */
  --text-primary:   #0A0A0F;
  --text-secondary: #52525B;
  --text-muted:     #A1A1AA;
  --text-light:     rgba(255,255,255,0.9);
  --text-light-dim: rgba(255,255,255,0.5);

  /* Borders */
  --border:       rgba(10,10,15,0.08);
  --border-med:   rgba(10,10,15,0.12);
  --border-dark:  rgba(255,255,255,0.08);

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 1px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.04);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.10), 0 0 1px rgba(0,0,0,0.04);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.14);
  --shadow-glow: 0 8px 32px rgba(245,158,11,0.25), 0 2px 8px rgba(236,72,153,0.2);

  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* Spacing */
  --section-pad: clamp(5rem, 9vw, 5rem);
  --container:   1300px;
  --nav-h:       68px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-secondary); line-height: 1.75; }
em { font-style: normal; }

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}
.eyebrow.light { background: none; -webkit-text-fill-color: rgba(255,255,255,0.45); color: rgba(255,255,255,0.45); }
.eyebrow.muted { background: none; -webkit-text-fill-color: var(--text-muted); color: var(--text-muted); }

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section     { padding-block: var(--section-pad); }
.section-sm  { padding-block: clamp(3rem, 5vw, 5rem); }
.section-xs  { padding-block: clamp(1.5rem, 3vw, 2.5rem); }

.section-light { background: var(--bg-white); }
.section-soft  { background: var(--bg-soft); }
.section-dark  { background: var(--bg-dark); }

.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.section-header { text-align: center; max-width: 660px; margin-inline: auto; margin-bottom: 3.5rem; }
.section-header p { margin-top: 0.85rem; }
.section-header.center { text-align: center; }

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.nav.nav-dark { background: var(--bg-dark); }
.nav.nav-dark .nav-link { color: #fff}
.nav.nav-dark .nav-link:hover,
.nav.nav-dark .nav-link.active { color: #fff; }
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav.scrolled .nav-link { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--text-primary); }
.nav-dark.scrolled { background: rgba(10,10,15,0.92); }
.nav-dark.scrolled .nav-link { color: #fff; }
.nav-dark.scrolled .nav-link:hover,
.nav-dark.scrolled .nav-link.active { color: #fff;
                                      background: rgba(255, 255, 255, 0.08) !important; }

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; }
.brand img { height: 55px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.975rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-md);
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.nav.nav-dark .nav-link:hover { background: rgba(255,255,255,0.08); }
.nav.scrolled .nav-link:hover { background: var(--bg-soft); }

.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background 0.2s;
  margin-left: auto;
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.25s;
  display: block;
}
.nav.scrolled .hamburger span { background: var(--text-primary); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  color: var(--text-primary);
  border-radius: var(--r-md);
}
.mobile-menu .nav-link:hover { background: var(--bg-soft); }
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.2rem;
  padding: 0.5rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--r-lg);
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.3), 0 4px 12px rgba(236,72,153,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-med);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm  { padding: 0.45rem 1rem; font-size: 0.82rem; border-radius: var(--r-md); }
.btn-lg  { padding: 0.85rem 1.85rem; font-size: 0.95rem; }

/* ─── BADGES ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-adobe {
  background: rgba(245,158,11,0.1);
  color: #D97706;
  border: 1px solid rgba(245,158,11,0.25);
}
.badge-gold {
  background: rgba(250,204,21,0.1);
  color: #B45309;
  border: 1px solid rgba(250,204,21,0.3);
}
.badge-accent {
  background: rgba(236,72,153,0.1);
  color: #BE185D;
  border: 1px solid rgba(236,72,153,0.25);
}

/* ─── CARDS ─────────────────────────────────────────── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-soft);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.card-icon svg { width: 20px; height: 20px; }
.card-icon.accent { background: rgba(236,72,153,0.1); border-color: rgba(236,72,153,0.2); }
.card-icon.gold   { background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.3); }
.card-icon.green  { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.2); }
.card-icon.blue   { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.2); }
.card h3, .card h4 { position: relative; z-index: 1; margin-bottom: 0.6rem; }
.card p { position: relative; z-index: 1; font-size: 0.9rem; }

/* Premium Card Variant */
.premium-card { padding: 2rem; }
.premium-card .card-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1.5rem; }
.premium-icon { display: flex; align-items: center; justify-content: center; }
.premium-icon svg { width: 22px; height: 22px; color: var(--amber); }
.premium-icon.red svg { color: var(--pink); }
.premium-icon.gold svg { color: #B45309; }
.premium-icon.green svg { color: #16A34A; }
.premium-btn { margin-top: 1.5rem; }

/* Value Card */
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}
.value-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.65rem;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero .container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.18) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(236,72,153,0.14) 0%, transparent 70%);
}
.hero-orb-3 {
  width: 400px; height: 400px;
  top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(190,24,93,0.1) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: ghostwhite;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  font-family: 'JetBrains Mono', monospace;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-title em {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ─── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: var(--bg-dark);
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at bottom left, rgba(236,72,153,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 820px; font-size: 65px;}
.page-hero p { color: rgba(255,255,255,0.55); max-width: 580px; margin-top: 1.1rem; font-size: 1.05rem; }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── PARTNER BAR ────────────────────────────────────── */
.partner-bar {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-block: 0.85rem;
}
.partner-bar-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  flex-shrink: 0;
  padding-inline: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color:#2f6f68;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partner-item::after {
  content: '·';
  margin-left: 2rem;
  color: var(--border-med);
}

/* ─── ADOBE PARTNER BLOCK ────────────────────────────── */
.adobe-partner-block {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient( 92.7deg,  rgba(245,212,212,1) 8.5%, rgba(252,251,224,1) 90.2% );
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.adobe-logo-wrap { flex-shrink: 0; }
.adobe-logo-wrap img { height: 32px; width: auto; filter: saturate(1.2); }
.adobe-partner-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: red;
  margin-bottom: 0.2rem;
}
.adobe-partner-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.adobe-partner-sub { font-size: 0.8rem; color: var(--grad); margin-top: 0.2rem; }
.adobe-partner-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-left: auto; }

/* ─── SERVICES GRID ──────────────────────────────────── */

/* ─── STAT GRID ──────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ─── TIMELINE ───────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  position: relative;
  padding: 0 0 2rem 2.5rem;
  border-left: 2px solid var(--border);
}
.timeline-item:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.timeline-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}
.timeline-item h4 { margin-bottom: 0.35rem; font-size: 0.95rem; }
.timeline-item p { font-size: 0.85rem; }

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-2xl);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.5); max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BLOG CARDS ─────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.blog-card {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.blog-card-img {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body {
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--amber-light);
  color: #D97706;
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
}
.blog-card-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 0.55rem; }
.blog-card p  { font-size: 0.875rem; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.85rem;
}

/* Preview Blog Cards */
.preview-blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-xs);
}
.preview-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.preview-blog-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.preview-blog-card:hover .preview-blog-img img { transform: scale(1.04); }
.preview-blog-body { padding: 1.35rem; flex: 1; }
.preview-blog-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D97706;
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 0.65rem;
}
.preview-blog-body h4 { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.3; }
.preview-blog-body p  { font-size: 0.82rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.sidebar-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}
.sidebar-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.sidebar-recent-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}
.sidebar-recent-item:last-child { border-bottom: none; }
.sidebar-recent-item:hover { transform: translateX(3px); }
.sidebar-recent-img { width: 44px; height: 44px; border-radius: var(--r-md); overflow: hidden; background: var(--bg-soft); flex-shrink: 0; }
.sidebar-recent-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-title { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); line-height: 1.3; margin-bottom: 0.2rem; }
.sidebar-recent-date { font-size: 0.72rem; color: var(--text-muted); }
.sidebar-cats { display: flex; flex-direction: column; gap: 0.35rem; }
.sidebar-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-md);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.sidebar-cat:hover { background: var(--bg-soft); color: var(--text-primary); }
.sidebar-cat.active { background: var(--amber-light); color: #D97706; font-weight: 600; }
.sidebar-cat-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: var(--r-full);
  color: var(--text-muted);
}
.sidebar-cta {
  background: var(--bg-dark) !important;
  border-color: rgba(255,255,255,0.06) !important;
}
.sidebar-cta h4 { color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta p  { color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* Blog Detail */
.blog-detail-hero {
  background: var(--bg-dark);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.blog-detail-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.1) 0%, transparent 60%);
}
.blog-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.blog-detail-breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.blog-detail-breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.blog-detail-title { color: #fff; max-width: 820px; }
.blog-detail-content { max-width: 720px; line-height: 1.8; }
.blog-detail-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.blog-detail-content p { margin-bottom: 1.25rem; }
.blog-detail-content ul, .blog-detail-content ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.blog-detail-content li { margin-bottom: 0.5rem; color: var(--text-secondary); }
.blog-detail-content blockquote {
  border-left: 3px solid;
  border-image: var(--grad) 1;
  padding: 1.25rem 1.5rem;
  background: var(--bg-soft);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.blog-author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.blog-author-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.15rem; }
.blog-author-role { font-size: 0.78rem; color: var(--text-muted); }

/* Reading Progress */
#reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-med);
  background: var(--bg-white);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--border-med); background: var(--bg-soft); }
.filter-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ─── SERVICES PAGE ──────────────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.flip { direction: rtl; }
.service-row.flip > * { direction: ltr; }

.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--amber-light);
  color: #D97706;
  border: 1px solid rgba(245,158,11,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.service-features { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.service-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}
.service-visual {
  aspect-ratio: 1/1;
  border-radius: var(--r-2xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Tag List */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  padding: 0.3rem 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ─── PRACTICES PAGE ─────────────────────────────────── */
.practice-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.practice-block:hover { box-shadow: var(--shadow-lg); border-color: rgba(245,158,11,0.2); }
.practice-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

/* ─── CAREERS PAGE ───────────────────────────────────── */
.career-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.career-stat-cell {
  padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.career-stat-cell:last-child { border-right: none; }
.career-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.career-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

.job-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-xs);
}
.job-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.job-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.job-card-body { flex: 1; min-width: 0; }
.job-card-title { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); margin-bottom: 0.35rem; }
.job-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.job-card-meta-item { font-size: 0.75rem; color: var(--text-muted); }

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
  padding-top: 5rem;
}
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-partner-card {
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}
.contact-partner-card h4 { color: darkorange; margin-bottom: 0.5rem; }
.contact-partner-card p  { color: ghostwhite; font-size: 0.85rem; }
.contact-next-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
}
.contact-next-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; margin-bottom: 1.25rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; }
.contact-next-step { display: flex; gap: 1rem; margin-bottom: 1.1rem; }
.contact-next-step:last-child { margin-bottom: 0; }
.contact-next-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #D97706;
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.25rem 0.5rem;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  height: fit-content;
}
.contact-next-step strong { font-size: 0.875rem; display: block; margin-bottom: 0.2rem; }
.contact-next-step p { font-size: 0.8rem; }
.form-success-msg { text-align: center; padding: 3rem 2rem; }

/* ─── FORMS ──────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border-med);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--amber);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  padding: 1.35rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--amber); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.35rem;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 50px; width: auto; margin-bottom: 1rem; }
.footer-brand > p { color: ghostwhite; font-size: 0.875rem; max-width: 240px; }
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: deeppink;
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.875rem;
  color: ghostwhite;
  transition: color 0.2s;
}

.footer-links .btn {
  align-self: flex-start; /* 👈 prevents full width */
}

a.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: ghostwhite; }
.footer-adobe {
  font-size: 0.78rem;
  color: ghostwhite;
  font-weight: 500;
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3      { grid-template-columns: 1fr 1fr; }
  .grid-4      { grid-template-columns: 1fr 1fr; }
  .stat-grid   { grid-template-columns: 1fr 1fr; }
  .career-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.flip { direction: ltr; }
}
@media (max-width: 768px) {
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:nth-child(2n) { border-right: none; }
  .career-stats { grid-template-columns: 1fr 1fr; }
  .career-stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .blog-card { flex-direction: column; }
  .blog-card-img { width: 100%; height: 180px; }
  .blog-card-body { padding: 1.25rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .adobe-partner-block { flex-direction: column; align-items: flex-start; }
  .adobe-partner-badges { margin-left: 0; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .career-stats { grid-template-columns: 1fr; }
  .career-stat-cell { border-right: none; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; scrollbar-width: none; }
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.35;
  filter: blur(20px) saturate(110%);

  pointer-events: none;
}

/* ========================================
   PREMIUM CUSTOM CURSOR (SAAS STYLE)
======================================== */

.custom-cursor-pro {
  position: fixed;
  top: 0;
  left: 0;

  width: 80px;
  height: 80px;

  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 600;
  color: #fff;

  pointer-events: none;
  z-index: 999;

  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Show on hover */
.cursor-active .custom-cursor-pro {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* PAGE BACKGROUND */
.section-light {
  background: #F4F4F6;
}

/* 2 COLUMN BLOG LAYOUT (NO TOC) */
.blog-layout-2col {
  display: grid;
  grid-template-columns: minmax(0, 895px) 300px;
  gap: 2.5rem;
  margin: 0 auto;
}


/* SCROLLABLE LIST (COMMON) */
.scrollable-list {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 6px;
}

/* LIMIT TO 5 ITEMS VISUALLY */
.scrollable-list > *:nth-child(n+6) {
  opacity: 0.85;
}

/* NICE SCROLLBAR */
.scrollable-list::-webkit-scrollbar {
  width: 6px;
}

.scrollable-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 10px;
}

/* CONTENT CARD */
.blog-content-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
}

.blog-main {
  display: block;
  justify-content: center;
}

.related-wrapper {
  width: 100%;
  margin-top: 3rem;
}

/* related articles full width */
#related-articles {
  max-width: 740px;
  margin: 3rem auto 0;
}



/* SHARE BOX */
.share-box {
  margin-top: 2rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* SIDEBAR SCROLL BLOCK SPACING */
.blog-sidebar .sidebar-block {
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .blog-layout-2col {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    order: 3;
  }

  .blog-main {
    order: 1;
  }

}

/* ===== INDUSTRY SLIDER (BHASAKA) ===== */

.bhasaka-industry-section {
  padding: 5rem 0;
}

.bhasaka-industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.bhasaka-industry-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

.bhasaka-industry-arrows {
  display: flex;
  gap: 1rem;
}

.bhasaka-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.bhasaka-arrow:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* CARD */
.bhasaka-industry-card {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE SIDE */
.bhasaka-industry-card .card-image {
  position: absolute;
  inset: 0;
  transition: 0.4s ease;
}

.bhasaka-industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bhasaka-industry-card .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* ===== INDUSTRY CARD H4 CUSTOM COLOR ===== */

/* Front overlay title */
.bhasaka-industry-card .overlay h4 {
  color: #f5f5f5;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* Back (hover) title */
.bhasaka-industry-card .card-detail h4 {
 color: var(--text-primary);
}

.bhasaka-industry-card .card-detail p {
 color: var(--text-primary);
}

.tags span {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
  padding: 6px 10px;
  border: 1px solid #fff;
  border-radius: 8px;
}

/* DETAIL SIDE */
.card-detail {
  position: absolute;
  inset: 0;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease;
}

.card-detail h5 {
  margin-top: 10px;
}

.card-detail ul {
  padding-left: 0;
  list-style: none;
}

.card-detail li {
  margin-bottom: 6px;
}

/* HOVER EFFECT */
.bhasaka-industry-card:hover .card-image {
  opacity: 0;
}

.bhasaka-industry-card:hover .card-detail {
  opacity: 1;
  transform: translateY(0);
}

/* COLORS */
.bg-1 { background: #85BAA1; }
.bg-2 { background: #6E8894; }
.bg-3 { background: #C398A3; }
.bg-4 { background: #847897; }
.bg-5 { background: #DB8356; }

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

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

/* ===== GLOBAL MAP SECTION ===== */

.global-offices {
  padding: 4rem 0;
  background: #f7f7f9;
  border-top: 1px solid var(--border);
}

.global-header {
  text-align: center;
  margin-bottom: 2rem;
}

.global-header h2 {
  font-size: 2.2rem;
}

.global-header h2 span {
  background: linear-gradient(135deg, #ff7a18, #ff3d77);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.global-header .sub {
  color: #777;
  font-size: 0.9rem;
}

.contact-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

/* MAP */
/* MAP CONTAINER */
.map-container {
  position: relative;
  height: 420px;
  background: #eef1f6;
  border-radius: 20px;
  overflow: hidden;
}

/* ===== GLOBAL OFFICES SECTION ===== */

.global-offices {
  padding: 4rem 0;
  background: #f5f7fb;
}

.global-header span {
  background: linear-gradient(135deg, #ff7a18, #ff3d77);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== MAP CONTAINER (HIGHLIGHTED CARD) ===== */
.map-container.enhanced {
  position: relative;
  height: 460px;
  border-radius: 24px;
  background: #eef1f7;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* ===== MAP IMAGE ===== */
.map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 removes white gaps */
  opacity: 0.65;
}

/* ===== CONNECTION LINE ===== */
.map-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ===== PINS ===== */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Marker Style */
.pin-marker {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #ff7a18, #ff3d77);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 20px rgba(255, 61, 119, 0.4);
}

/* Pin Positions (aligned) */
.map-pin.usa {
  top: 34%;
  left: 19%;
}

.map-pin.india {
  top: 58%;
  left: 70%;
}

/* ===== CARDS ===== */
.map-card {
  position: absolute;
  width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  font-size: 0.82rem;
  z-index: 3;
}

/* Card Positions */
.usa-card {
  top: 50%;
  left: 20%;
}

.india-card {
  top: 50%; /* 🔥 raised */
  left: 72%;
}

/* ===== CARD HEADER ===== */
.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ===== FLAGS ===== */
.flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===== LINKS ===== */
.map-card a {
  display: inline-block;
  margin-top: 0.5rem;
  color: #ff3d77;
  font-weight: 600;
  text-decoration: none;
}

/* ===== CONTACT STRIP ===== */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.strip-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  align-items: center;
  border-right: 1px solid var(--border);
}

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

.strip-item .icon {
  font-size: 1.2rem;
}

.strip-item small {
  display: block;
  color: #888;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .map-container.enhanced {
    height: 420px;
  }

  .map-card {
    display: none; /* clean mobile */
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }
}
