/* ==========================================================
   SmartWorkNetwork.in — Dark Premium Tech SaaS
   Style: Vercel/Linear/Saasfly · DM Sans · Indigo→Violet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Surfaces */
  --bg: #07070A;            /* near-black w/ slight blue */
  --bg-2: #0B0B10;          /* section alt */
  --surface: #0E0E14;       /* cards */
  --surface-2: #14141B;     /* elevated */

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-mid: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --text: #FAFAFA;
  --text-2: #E4E4E7;
  --text-dim: #A1A1AA;
  --text-muted: #71717A;

  /* Brand */
  --primary: #6366F1;       /* indigo */
  --primary-2: #818CF8;
  --accent: #A78BFA;        /* violet */
  --accent-2: #C084FC;
  --cta: #FAFAFA;           /* white CTA on dark */
  --success: #10B981;
  --gold: #F59E0B;          /* premium accent */

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6366F1 0%, #A78BFA 100%);
  --grad-text: linear-gradient(180deg, #FAFAFA 0%, #A1A1AA 100%);
  --grad-text-brand: linear-gradient(120deg, #818CF8 0%, #C084FC 50%, #F472B6 100%);
  --grad-glow: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.35), transparent 60%);
  --grad-glow-2: radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.25), transparent 60%);

  /* Effects */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.6);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.35);

  /* Type */
  --font-display: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1200px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  /* Subtle dotted grid background */
  background-image:
    radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Selection ---------- */
::selection { background: var(--primary); color: white; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; position: relative; }
@media (max-width: 760px) { section { padding: 64px 0; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 600;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 600; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -0.03em; }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; font-weight: 600; }
p  { margin: 0 0 16px; color: var(--text-dim); }

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

/* Eyebrow chip */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  color: var(--text-dim);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}
.section-sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 680px;
  margin: 0 0 56px;
  line-height: 1.6;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(7, 7, 10, 0.7);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand-mark {
  display: none;
}
.brand-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(99, 102, 241, 0.45));
}
.nav-links {
  display: flex; align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--text) !important;
  color: var(--bg) !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 6px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--text-2) !important;
  color: var(--bg) !important;
}
.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--text);
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 70px; left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-2);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
    gap: 2px;
    display: none;
    backdrop-filter: blur(16px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  transition: all var(--transition);
  background: var(--surface);
  color: var(--text);
}
.btn:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover {
  background: var(--text-2);
  color: var(--bg);
  border-color: var(--text-2);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}
.btn-brand {
  background: var(--grad-primary);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}
.btn-brand:hover {
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
  color: white;
}
.btn .ico { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40%; left: 50%;
  width: 1200px; height: 1200px;
  transform: translateX(-50%);
  background: var(--grad-glow);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(167, 139, 250, 0.10), transparent 50%);
  pointer-events: none;
}

.hero-center {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* above orb video AND vignette */
}

/* ---------- Hero atmospheric background video ---------- */
.hero-orb-bg {
  position: absolute;
  /* Repositioned: lower (60%) and slightly right (56%) — sits behind hero,
     not directly behind the words "business growth" */
  top: 60%;
  left: 56%;
  /* JS parallax will compose translateX/Y onto this base centering */
  transform: translate(-50%, -50%);
  width: 1000px;
  max-width: 95vw;
  height: auto;
  z-index: 1;
  /* Reduced from 0.35 — supports the headline, doesn't compete */
  opacity: 0.26;
  /* Halved from 2px — center orb stays recognizable.
     Slight saturate boost compensates for blur dulling the violet/pink. */
  filter: blur(1px) saturate(1.15);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  /* Tighter inner mask: center sharper (35% solid), outer fades earlier (78%) —
     keeps main orb visible, outer orbital spheres fade naturally */
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
  animation: none;
  will-change: transform, opacity;
  /* CSS-driven smoothing for parallax + scroll fade — works even when rAF is throttled.
     Slow ease-out feels luxurious; never snaps to cursor. */
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}
@media (max-width: 760px) {
  .hero-orb-bg {
    width: 680px;
    top: 70%; /* even lower on mobile so it doesn't crowd cramped headlines */
    left: 50%;
  }
}

/* ---------- Hero vignette — embeds the orb into the section ---------- */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2; /* between orb video (1) and content (3) */
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 50% at 56% 60%,
    transparent 0%,
    transparent 30%,
    rgba(7, 7, 10, 0.55) 70%,
    var(--bg) 100%
  );
}
@media (max-width: 760px) {
  .hero-vignette {
    background: radial-gradient(
      ellipse 70% 45% at 50% 70%,
      transparent 0%,
      transparent 30%,
      rgba(7, 7, 10, 0.55) 70%,
      var(--bg) 100%
    );
  }
}
.hero-center h1 { margin: 22px 0 22px; }
.hero-center p.lead {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-stats > div {
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stats > div:last-child { border-right: none; }
.hero-stats h3 {
  font-size: 36px;
  font-weight: 600;
  background: var(--grad-text-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stats > div:last-child { border-bottom: none; }
}

/* ---------- Marquee / Trust ---------- */
.trust {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 48px;
  align-items: center;
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: color var(--transition), opacity var(--transition);
}
.trust-logo:hover { color: var(--text-dim); opacity: 1; }

/* ---------- Bento services grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.bento-cell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-cell::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cell-glow, radial-gradient(circle at 30% 0%, rgba(99,102,241,0.12), transparent 60%));
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.bento-cell:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.bento-cell:hover::before { opacity: 1; }
.bento-cell > * { position: relative; z-index: 1; }
.bento-cell h4 { color: var(--text); font-size: 19px; margin: 16px 0 6px; }
.bento-cell p { color: var(--text-dim); margin: 0; font-size: 14px; }
.bento-cell .link {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color var(--transition);
}
.bento-cell .link:hover { color: var(--primary-2); }

.ico-tile {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
}
.ico-tile svg {
  width: 22px; height: 22px;
  stroke: var(--text-2);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bento-cell.b-web   { grid-column: span 3; --cell-glow: radial-gradient(circle at 30% 0%, rgba(99,102,241,0.18), transparent 60%); }
.bento-cell.b-web .ico-tile { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.3); }
.bento-cell.b-web .ico-tile svg { stroke: #818CF8; }

.bento-cell.b-crm   { grid-column: span 3; --cell-glow: radial-gradient(circle at 30% 0%, rgba(167,139,250,0.18), transparent 60%); }
.bento-cell.b-crm .ico-tile { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.3); }
.bento-cell.b-crm .ico-tile svg { stroke: #C084FC; }

.bento-cell.b-mkt   { grid-column: span 2; --cell-glow: radial-gradient(circle at 30% 0%, rgba(245,158,11,0.18), transparent 60%); }
.bento-cell.b-mkt .ico-tile { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }
.bento-cell.b-mkt .ico-tile svg { stroke: #FBBF24; }

.bento-cell.b-bpo   { grid-column: span 2; --cell-glow: radial-gradient(circle at 30% 0%, rgba(16,185,129,0.18), transparent 60%); }
.bento-cell.b-bpo .ico-tile { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); }
.bento-cell.b-bpo .ico-tile svg { stroke: #34D399; }

.bento-cell.b-cta   {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(167,139,250,0.18));
  border-color: rgba(99,102,241,0.3);
}
.bento-cell.b-cta h4 { font-size: 22px; }
.bento-cell.b-cta a {
  background: var(--text);
  color: var(--bg);
  padding: 9px 14px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  margin-top: 14px;
  font-size: 13.5px;
  transition: background var(--transition);
}
.bento-cell.b-cta a:hover { background: var(--text-2); }

@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.b-web, .bento-cell.b-crm,
  .bento-cell.b-mkt, .bento-cell.b-bpo,
  .bento-cell.b-cta { grid-column: span 2; }
}

/* ---------- Service cards (compact, reused) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.card .ico-tile { margin-bottom: 18px; }
.card h3 { color: var(--text); margin: 0 0 8px; font-size: 19px; }
.card p { color: var(--text-dim); margin: 0 0 14px; font-size: 14.5px; line-height: 1.55; }
.card a.link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-2);
  display: inline-flex; gap: 6px; align-items: center;
  transition: color var(--transition);
}
.card a.link:hover { color: var(--primary-2); }

.card.col-web .ico-tile { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.3); }
.card.col-web .ico-tile svg { stroke: #818CF8; }
.card.col-crm .ico-tile { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.3); }
.card.col-crm .ico-tile svg { stroke: #C084FC; }
.card.col-mkt .ico-tile { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }
.card.col-mkt .ico-tile svg { stroke: #FBBF24; }
.card.col-bpo .ico-tile { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); }
.card.col-bpo .ico-tile svg { stroke: #34D399; }

/* ---------- Features (why us) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.feature {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.feature:hover { border-color: var(--border-strong); }
.feature .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-2);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.feature h4 { color: var(--text); margin: 0 0 6px; font-size: 17px; }
.feature p { color: var(--text-dim); margin: 0; font-size: 14.5px; line-height: 1.55; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.testimonial:hover { border-color: var(--border-strong); }
.testimonial .quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 20px;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
}
.testimonial .author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.2;
}
.testimonial .author-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 64px 56px;
  text-align: center;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: -50%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.25), transparent 60%);
  z-index: -1;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: -1;
  opacity: 0.6;
}
.cta-banner h2 { margin: 0 0 12px; }
.cta-banner p { color: var(--text-dim); font-size: 17px; margin: 0 auto 28px; max-width: 560px; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute; z-index: -1;
  top: -60%; left: 50%;
  width: 1200px; height: 1000px;
  transform: translateX(-50%);
  background: var(--ph-glow, radial-gradient(circle at 50% 50%, rgba(99,102,241,0.3), transparent 55%));
}
.page-hero h1 { margin: 22px 0 18px; max-width: 900px; }
.page-hero p.lead {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.55;
}

/* ---------- Split layouts ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
}

.checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.35);
  border-radius: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23A5B4FC' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  margin-top: 3px;
}

.visual-card {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.visual-card::before {
  content: "";
  position: absolute; inset: -50%;
  background: var(--vc-glow, radial-gradient(circle at 30% 20%, rgba(99,102,241,0.3), transparent 50%));
  z-index: -1;
}
.visual-card .ico-tile {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.visual-card .ico-tile svg { width: 38px; height: 38px; stroke: var(--text); }
.visual-card h3 { color: var(--text); margin: 0 0 8px; font-size: 24px; }
.visual-card p { margin: 0; color: var(--text-dim); font-size: 15px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  counter-reset: step;
}
.step {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
  transition: border-color var(--transition), background var(--transition);
}
.step:hover { border-color: var(--border-strong); background: var(--surface-2); }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 12px;
  color: var(--primary-2);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.step h4 { color: var(--text); margin: 0 0 6px; font-size: 16px; }
.step p { color: var(--text-dim); margin: 0; font-size: 14px; }

/* ---------- Pricing tiles ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.tile {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  position: relative;
}
.tile:hover { border-color: var(--border-strong); }
.tile.featured {
  background:
    linear-gradient(180deg, rgba(99,102,241,0.08), transparent 60%),
    var(--surface);
  border-color: rgba(99,102,241,0.4);
}
.tile.featured::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(99,102,241,0.18), transparent 30%);
  pointer-events: none;
}
.tile .badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(99,102,241,0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.tile h4 { color: var(--text); margin: 0 0 6px; font-size: 17px; }
.tile .price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  margin: 4px 0 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.tile ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tile li { color: var(--text-dim); font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; line-height: 1.55; }
.tile li::before {
  content: "";
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23A5B4FC' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 11 8 15 16 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.contact-info li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-dim);
}
.contact-info li strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; font-size: 14.5px; }
.contact-info li a { color: var(--text-dim); transition: color var(--transition); font-size: 14.5px; }
.contact-info li a:hover { color: var(--text); }
.contact-info .ci-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-info .ci-icon svg { width: 18px; height: 18px; stroke: #A5B4FC; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.form-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}
.field input, .field select, .field textarea {
  background: var(--bg);
  border: 1px solid var(--border-mid);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { cursor: pointer; }

.form-success {
  display: none;
  padding: 14px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #6EE7B7;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-grid h5 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 18px;
  font-family: var(--font-mono);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-grid a:hover { color: var(--text); }
.footer-grid p { color: var(--text-dim); font-size: 14.5px; margin: 14px 0 16px; max-width: 320px; line-height: 1.55; }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- Orb animations ---------- */
@keyframes orb-hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate3d(0, -42px, 0) rotate(5deg) scale(1.03); }
}
@keyframes orb-vc-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate3d(0, -30px, 0) rotate(-5deg) scale(1.04); }
}
@keyframes orb-glow-pulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

/* ---------- Hero orb image ---------- */
.hero-orb {
  display: block;
  margin: 64px auto 8px;
  max-width: 620px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 40px 90px rgba(99, 102, 241, 0.5));
  user-select: none;
  -webkit-user-drag: none;
  /* Hide the PNG's square edges — orb fades into the page background */
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 82%);
  mask-image: radial-gradient(circle at center, black 50%, transparent 82%);
  animation: orb-hero-float 9s ease-in-out infinite, orb-glow-pulse 6s ease-in-out infinite;
  will-change: transform, opacity;
}
@media (max-width: 760px) { .hero-orb { max-width: 380px; margin-top: 40px; } }

/* When the orb is a <video> (image-to-video swap), disable the CSS float —
   the video provides its own motion. */
video.hero-orb, video.vc-orb { animation: none; will-change: auto; }
video.hero-orb, video.vc-orb, video.section-divider-img { object-fit: cover; }

/* ---------- Visual-card orb image (service pages) ---------- */
.vc-orb {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: -24px auto 4px;
  filter: drop-shadow(0 20px 56px rgba(99, 102, 241, 0.4));
  align-self: center;
  user-select: none;
  -webkit-user-drag: none;
  /* Hide the PNG's square edges — orb fades into the visual-card glow */
  -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 82%);
  mask-image: radial-gradient(circle at center, black 50%, transparent 82%);
  animation: orb-vc-float 7s ease-in-out infinite;
  will-change: transform;
}

/* ---------- Service page page-hero orb backdrop ---------- */
.page-hero-orb-bg {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 720px;
  max-width: 95%;
  height: auto;
  z-index: 0;
  opacity: 0.35;
  filter: blur(1.5px) saturate(1.15);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: radial-gradient(circle at center, black 38%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 38%, transparent 80%);
  animation: page-hero-orb-drift 14s ease-in-out infinite,
             page-hero-orb-pulse 7s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes page-hero-orb-drift {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50%      { transform: translate(calc(-50% + 14px), calc(-50% - 18px)) rotate(4deg) scale(1.04); }
}
@keyframes page-hero-orb-pulse {
  0%, 100% { opacity: 0.30; }
  50%      { opacity: 0.42; }
}
@media (max-width: 760px) {
  .page-hero-orb-bg {
    width: 460px;
    top: 70%;
    opacity: 0.24;
  }
}

/* Per-service color halo */
.page-hero-orb-bg.is-web { filter: blur(1.5px) saturate(1.15) drop-shadow(0 0 80px rgba(99, 102, 241, 0.4)); }
.page-hero-orb-bg.is-crm { filter: blur(1.5px) saturate(1.15) drop-shadow(0 0 80px rgba(167, 139, 250, 0.4)); }
.page-hero-orb-bg.is-mkt { filter: blur(1.5px) saturate(1.15) drop-shadow(0 0 80px rgba(245, 158, 11, 0.4)); }
.page-hero-orb-bg.is-bpo { filter: blur(1.5px) saturate(1.15) drop-shadow(0 0 80px rgba(16, 185, 129, 0.4)); }

/* When swapped to a video, the video's own motion replaces the CSS animation */
video.page-hero-orb-bg {
  animation: none;
  object-fit: cover;
  will-change: auto;
}

/* Make sure page-hero content stays above the orb */
.page-hero > .container { position: relative; z-index: 1; }

/* ---------- Service page section with atmospheric orb backdrop ---------- */
.service-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-bg-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  height: auto;
  z-index: 1;
  opacity: 0.18;
  filter: blur(2px) saturate(1.1);
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  animation: orb-bg-drift 14s ease-in-out infinite;
  will-change: transform;
}
@keyframes orb-bg-drift {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(calc(-50% + 8px), calc(-50% - 6px)); }
}
@media (max-width: 920px) {
  .service-bg-orb {
    width: 520px;
    opacity: 0.14;
  }
}
video.service-bg-orb { object-fit: cover; animation: none; }

/* Per-service color identity — drop-shadow halo tints the orb glow */
.service-bg-orb.is-web { filter: blur(1px) saturate(1.1) drop-shadow(0 0 80px rgba(99, 102, 241, 0.4)); }
.service-bg-orb.is-crm { filter: blur(1px) saturate(1.1) drop-shadow(0 0 80px rgba(167, 139, 250, 0.4)); }
.service-bg-orb.is-mkt { filter: blur(1px) saturate(1.1) drop-shadow(0 0 80px rgba(245, 158, 11, 0.4)); }
.service-bg-orb.is-bpo { filter: blur(1px) saturate(1.1) drop-shadow(0 0 80px rgba(16, 185, 129, 0.4)); }

/* Bento grid of capability cards (replaces flat checklist) */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 40px auto 0;
  max-width: 960px;
  position: relative;
  z-index: 2;
}
.capability-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.capability-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.capability-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.28);
}
.capability-icon svg {
  width: 18px; height: 18px;
  stroke: #818CF8;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.capability-card h4 {
  font-size: 14.5px;
  margin: 0;
  color: var(--text-2);
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* Per-service color identity */
.capabilities-grid.is-crm .capability-icon { background: rgba(167,139,250,0.12); border-color: rgba(167,139,250,0.28); }
.capabilities-grid.is-crm .capability-icon svg { stroke: #C084FC; }
.capabilities-grid.is-mkt .capability-icon { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.28); }
.capabilities-grid.is-mkt .capability-icon svg { stroke: #FBBF24; }
.capabilities-grid.is-bpo .capability-icon { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.28); }
.capabilities-grid.is-bpo .capability-icon svg { stroke: #34D399; }

/* Centered content layout for the refactored service sections */
.service-content {
  position: relative;
  z-index: 2;
}
.service-content-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.service-checklist-wrap {
  max-width: 560px;
  margin: 32px auto 0;
}
.service-tagline {
  max-width: 540px;
  margin: 48px auto 0;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.service-tagline h3 {
  font-size: 22px;
  margin: 0 0 8px;
}
.service-tagline p {
  color: var(--text-dim);
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- "Why us" section with atmospheric orb backdrop ---------- */
.why-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.why-bg-orbs {
  position: absolute;
  /* Center vertically + horizontally behind the section content */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  max-width: none;
  height: auto;
  z-index: 1;
  opacity: 0.4;
  /* Soft fade on all four edges so it embeds rather than tiles */
  -webkit-mask-image:
    radial-gradient(ellipse 75% 90% at center, black 30%, transparent 75%);
  mask-image:
    radial-gradient(ellipse 75% 90% at center, black 30%, transparent 75%);
  /* Screen blend strips the PNG's black background — only the bright orbs remain */
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 760px) {
  .why-bg-orbs {
    width: 180%; /* zoom in on mobile so orbs aren't lost in the layout */
    opacity: 0.32;
  }
}
video.why-bg-orbs { object-fit: cover; }

/* ---------- Decorative section divider image (full-bleed) ---------- */
.section-divider-img {
  display: block;
  width: 100%;
  max-width: 100%;   /* full-bleed — spans entire viewport */
  margin: 0;
  height: auto;
  /* Wider crossfade on the horizontal edges so the band feels infinite/cosmic
     instead of like a hard banner */
  opacity: 0.7;
  user-select: none;
  -webkit-user-drag: none;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  /* Screen blend hides the dark PNG background, so only the bright orbs remain */
  mix-blend-mode: screen;
  pointer-events: none;
}
video.section-divider-img {
  /* Crop video to remove letterbox bands when stretched edge-to-edge */
  max-height: 460px;
  object-fit: cover;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
