/* =========================================================
   MBI GROUP — Global Stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Lastica';
  src: url('../fonts/lastica-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------
   DESIGN TOKENS
   --------------------------------------------------------- */
:root {
  --bg:           #100f1e;
  --bg-card:      #17162a;
  --bg-elevated:  #1e1c33;
  --bg-input:     #131223;

  --text-1: #eeedf1;
  --text-2: #8a8899;
  --text-3: #44425a;

  --accent:        #d73cbe;
  --accent-bright: #e655d2;
  --accent-glow:   rgba(215, 60, 190, 0.22);
  --accent-subtle: rgba(215, 60, 190, 0.07);
  --accent-border: rgba(215, 60, 190, 0.22);

  --border:    rgba(255, 255, 255, 0.06);
  --border-md: rgba(255, 255, 255, 0.10);

  --font-h: 'Urbanist', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-logo: 'Lastica', sans-serif;

  --w:     1280px;
  --nav-h: 88px;
  --r:     12px;
  --r-lg:  20px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: transparent;
  color: var(--text-1);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ---------------------------------------------------------
   LAYOUT
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
}
section { position: relative; z-index: 2; }

/* ---------------------------------------------------------
   TYPOGRAPHY
   --------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(52px, 6.5vw, 96px); font-weight: 800; }
h2 { font-size: clamp(36px, 4vw, 62px); }
h3 { font-size: clamp(24px, 2.5vw, 36px); }
h4 { font-size: clamp(18px, 1.8vw, 24px); }

.gradient-text {
  background: linear-gradient(120deg, var(--accent) 0%, #f07de0 45%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-md);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.btn-accent-outline:hover {
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 15px; border-radius: 10px; }

/* ---------------------------------------------------------
   NAV
   --------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.nav-logo-name {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text-1);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-1); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ----- Services dropdown ----- */
.nav-has-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 0 2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-dropdown-trigger:hover,
.nav-has-dropdown.open .nav-dropdown-trigger { color: var(--text-1); }
.nav-dropdown-trigger svg {
  transition: transform 0.22s var(--ease);
  flex-shrink: 0;
}
.nav-has-dropdown:hover .nav-dropdown-trigger svg,
.nav-has-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: var(--r);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: background 0.18s var(--ease), color 0.18s;
  letter-spacing: 0.01em;
}
.nav-dropdown a:hover {
  background: var(--accent-subtle);
  color: var(--text-1);
}
.nav-dropdown a::after { display: none !important; }

/* Mobile services accordion */
.nav-mobile-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav-mobile-services-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-1);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-mobile-services-trigger:hover { color: var(--accent); }
.nav-mobile-services-trigger svg {
  transition: transform 0.25s var(--ease);
}
.nav-mobile-services.open .nav-mobile-services-trigger { color: var(--accent); }
.nav-mobile-services.open .nav-mobile-services-trigger svg { transform: rotate(180deg); }

.nav-mobile-services-list {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px 0 8px;
}
.nav-mobile-services.open .nav-mobile-services-list { display: flex; }
.nav-mobile-services-list a {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-mobile-services-list a:hover { color: var(--accent); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-1);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }

/* ---------------------------------------------------------
   LABELS & SECTION HEADERS
   --------------------------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head .label { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}
.section-head.center p { margin: 0 auto; }

/* ---------------------------------------------------------
   CARDS
   --------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.icon-box {
  width: 52px;
  height: 52px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------------------------------------------------------
   CTA SECTION
   --------------------------------------------------------- */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,60,190,0.08) 0%, transparent 65%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 20px; }
.cta-section p {
  color: var(--text-2);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------
   PAGE HERO (inner pages)
   --------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,60,190,0.09) 0%, transparent 65%);
  top: -150px; right: -200px;
  pointer-events: none;
}
.page-hero .label { margin-bottom: 24px; display: inline-flex; }
.page-hero h1 { margin-bottom: 24px; max-width: 820px; }
.page-hero p {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.75;
}

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 44px; height: 44px;
  object-fit: contain; opacity: 0.85;
}
.footer-logo-name {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-brand-tagline {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col h5 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--text-1); }
.footer-contact-info p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-contact-info a {
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--accent-bright); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ---------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------------------------------------------------------
   KEYFRAMES
   --------------------------------------------------------- */
@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-35px, 25px) scale(1.07); }
  66%       { transform: translate(25px, -18px) scale(0.95); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.7); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================================
   HOME PAGE
   ========================================================= */

/* --- HERO ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-a {
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,60,190,0.10) 0%, transparent 60%);
  top: -350px; right: -400px;
  animation: glow-drift 13s ease-in-out infinite;
}
.hero-glow-b {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,60,190,0.055) 0%, transparent 60%);
  bottom: -150px; left: -200px;
  animation: glow-drift 18s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: calc(var(--w) + 96px);
  margin: 0 auto;
  width: 100%;
  padding: calc(var(--nav-h) + 90px) 48px 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px 6px 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  animation: fade-up 0.8s var(--ease) both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease infinite;
}
.hero-h1 {
  max-width: 860px;
  margin-bottom: 30px;
  animation: fade-up 0.8s 0.08s var(--ease) both;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.75;
  animation: fade-up 0.8s 0.16s var(--ease) both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 0.8s 0.24s var(--ease) both;
}

/* stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}
.hero-stats-inner {
  max-width: calc(var(--w) + 96px);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  animation: fade-up 0.8s var(--ease) both;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 9px;
  color: var(--text-1);
}
.hero-stat-num .u { color: var(--accent); }
.hero-stat-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- SERVICES OVERVIEW ------------------------------------- */
.services-section { padding: 120px 0; }

.services-featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  transition: border-color 0.3s var(--ease);
}
.services-featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(215,60,190,0.055) 0%, transparent 55%);
  pointer-events: none;
}
.services-featured-card:hover { border-color: var(--accent-border); }

.sfc-pill {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.sfc-content { position: relative; }
.sfc-content h3 { margin-bottom: 14px; }
.sfc-content > p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 28px;
}
.sfc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.sfc-tag {
  padding: 6px 14px;
  border: 1px solid var(--border-md);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}

.sfc-visual {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.sfc-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(215,60,190,0.15), transparent 65%);
}
.sfc-visual-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  width: 100%;
}
.sfc-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--border-md);
  position: relative;
  overflow: hidden;
}
.sfc-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--accent);
  border-radius: 3px;
  animation: bar-grow 2.5s ease-in-out infinite alternate;
}
.sfc-bar:nth-child(1)::after { width: 78%; animation-delay: 0s; }
.sfc-bar:nth-child(2)::after { width: 55%; animation-delay: 0.3s; }
.sfc-bar:nth-child(3)::after { width: 90%; animation-delay: 0.6s; }
.sfc-bar:nth-child(4)::after { width: 40%; animation-delay: 0.9s; }
.sfc-bar:nth-child(5)::after { width: 68%; animation-delay: 1.2s; }

@keyframes bar-grow {
  from { opacity: 0.4; transform: scaleX(0.7); transform-origin: left; }
  to   { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* Home-page service grid */
.h-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.h-service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-1);
  transition: border-color 0.38s var(--ease), transform 0.38s var(--ease), box-shadow 0.38s var(--ease);
}
/* Pink top line on hover */
.h-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.38s var(--ease);
}
/* Radial glow on hover */
.h-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(215,60,190,0.09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.38s var(--ease);
  pointer-events: none;
}
.h-service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(215,60,190,0.07);
}
.h-service-card:hover::before { opacity: 1; }
.h-service-card:hover::after  { opacity: 1; }
.h-service-card > * { position: relative; z-index: 1; }
.h-service-card--full { grid-column: 1 / -1; }

.h-service-card .icon-box { margin-bottom: 28px; }
.h-service-card h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 12px; }
.h-service-card p  { color: var(--text-2); font-size: 15px; line-height: 1.72; flex-grow: 1; margin-bottom: 28px; }

.h-service-card:hover .icon-box {
  background: rgba(215,60,190,0.13);
  border-color: rgba(215,60,190,0.28);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.h-service-card:hover .svc-link { gap: 10px; color: var(--accent-bright); }
.svc-link svg { flex-shrink: 0; transition: transform 0.25s var(--ease); }
.h-service-card:hover .svc-link svg { transform: translateX(3px); }

/* Legacy .service-card (used on other pages) */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
.service-card h4 { margin-bottom: 12px; }
.service-card p { color: var(--text-2); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.service-card-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* --- WHY MBI ---------------------------------------------- */
.why-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(215,60,190,0.018) 50%, transparent);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-item {
  background: var(--bg);
  padding: 52px 48px;
  transition: background 0.3s var(--ease);
}
.why-item:hover { background: var(--bg-card); }
.why-num {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.why-item h4 { margin-bottom: 12px; }
.why-item p { color: var(--text-2); font-size: 15px; line-height: 1.72; }

/* --- RESULTS ---------------------------------------------- */
.results-section { padding: 120px 0; }
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.result-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}
.result-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 24px;
}
.result-big-num {
  font-family: var(--font-h);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.result-card h4 { font-size: 17px; margin-bottom: 12px; }
.result-card p { color: var(--text-2); font-size: 14px; line-height: 1.7; }

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.quote-mark {
  font-family: var(--font-h);
  font-size: 72px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 12px;
}
.quote-text {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.65;
  font-style: italic;
  color: var(--text-1);
  margin-bottom: 28px;
  font-weight: 300;
}
.quote-attribution { display: flex; flex-direction: column; gap: 4px; }
.quote-name { font-weight: 600; font-size: 15px; }
.quote-role { font-size: 13.5px; color: var(--text-2); }
.quote-visual {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.quote-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(215,60,190,0.18), transparent 65%);
}
.quote-initials {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
}

/* =========================================================
   DIGITAL MARKETING PAGE
   ========================================================= */
.dm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
.dm-item {
  background: var(--bg);
  padding: 44px 40px;
  transition: background 0.3s var(--ease);
}
.dm-item:hover { background: var(--bg-card); }
.dm-item .icon-box { margin-bottom: 22px; }
.dm-item h4 { margin-bottom: 12px; }
.dm-item p { color: var(--text-2); font-size: 14.5px; line-height: 1.7; }

.dm-process {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 72px 64px;
  margin-bottom: 80px;
}
.dm-process h2 { margin-bottom: 60px; }
.dm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.dm-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 52px; right: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border) 15%, var(--accent-border) 85%, transparent);
}
.dm-step { text-align: center; position: relative; }
.dm-step-n {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  position: relative; z-index: 1;
}
.dm-step h4 { font-size: 16px; margin-bottom: 10px; }
.dm-step p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

.dm-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.dm-proof-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  text-align: center;
}
.dm-proof-stat .big {
  font-family: var(--font-h);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.dm-proof-stat p { color: var(--text-2); font-size: 14px; }

/* =========================================================
   BUSINESS SERVICES PAGE
   ========================================================= */
.bs-block {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.bs-block:last-child { border-bottom: none; }
.bs-block.flip { grid-template-columns: 1.35fr 1fr; }
.bs-block.flip .bs-text { order: 2; }
.bs-block.flip .bs-visual { order: 1; }

.bs-text .label { margin-bottom: 16px; display: inline-flex; }
.bs-text h3 { margin-bottom: 16px; }
.bs-text > p { color: var(--text-2); font-size: 16px; line-height: 1.78; margin-bottom: 28px; }
.bs-list { display: flex; flex-direction: column; gap: 11px; }
.bs-list-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.bs-list-item svg {
  width: 15px; height: 15px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 3px;
}
.bs-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 30px;
}
.bs-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,60,190,0.06) 0%, transparent 55%);
}
.bs-visual-icon {
  position: relative;
  width: 80px; height: 80px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-visual-icon svg {
  width: 36px; height: 36px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-mission {
  padding: 80px 0 100px;
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-mission-text h2 { margin-bottom: 24px; }
.about-mission-text p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-value {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.3s var(--ease);
}
.about-value:hover { background: var(--bg-elevated); }
.about-value-marker {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 14px;
}
.about-value h4 { font-size: 18px; margin-bottom: 10px; }
.about-value p { color: var(--text-2); font-size: 14px; line-height: 1.68; }

.about-divider { border-top: 1px solid var(--border); }

.about-global {
  padding: 100px 0;
}
.about-global-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-global-text h2 { margin-bottom: 20px; }
.about-global-text p { color: var(--text-2); font-size: 17px; line-height: 1.8; margin-bottom: 20px; }

.about-regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-region {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  transition: border-color 0.25s var(--ease);
}
.about-region:hover { border-color: var(--accent-border); }
.about-region h5 {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-region p { font-size: 13px; color: var(--text-2); }

.about-team {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 60px;
}
.about-team-stat {
  background: var(--bg-card);
  padding: 40px 36px;
  text-align: center;
}
.about-team-stat .big {
  display: block;
  font-family: var(--font-h);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.about-team-stat p { font-size: 13px; color: var(--text-2); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

/* =========================================================
   CASE STUDIES PAGE
   ========================================================= */
.case-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.case-block:last-child { border-bottom: none; }
.case-block.flip .case-content { order: 2; }
.case-block.flip .case-panel { order: 1; }

.case-num {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.case-industry {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-md);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 20px;
}
.case-content h3 { margin-bottom: 16px; }
.case-content > p { color: var(--text-2); font-size: 16px; line-height: 1.78; margin-bottom: 36px; }

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.case-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
}
.case-metric .num {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.case-metric .lbl { font-size: 12px; color: var(--text-2); font-weight: 500; }

.case-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 28px;
}
.case-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215,60,190,0.07) 0%, transparent 55%);
}
.case-panel-label {
  position: relative;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
}
.case-panel-big {
  position: absolute;
  top: 36px; left: 36px;
  font-family: var(--font-h);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
}

/* =========================================================
   CASE PANEL DATA VISUALIZATIONS
   ========================================================= */
.cp-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.cp-chip {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(215, 60, 190, 0.15);
  border: 1px solid rgba(215, 60, 190, 0.35);
  color: var(--accent);
}
.cp-chip--green {
  background: rgba(45, 195, 115, 0.12);
  border-color: rgba(45, 195, 115, 0.35);
  color: rgb(55, 200, 120);
}
.cp-chip--teal {
  background: rgba(48, 203, 211, 0.12);
  border-color: rgba(48, 203, 211, 0.35);
  color: rgb(48, 203, 211);
}
.cp-chip--blue {
  background: rgba(89, 86, 224, 0.15);
  border-color: rgba(89, 86, 224, 0.4);
  color: rgb(140, 145, 255);
}
.cp-period {
  font-size: 10.5px;
  color: var(--text-2);
  font-weight: 500;
}

/* Bar chart — Case 1 */
.cp-bars { display: flex; flex-direction: column; gap: 6px; }
.cp-bar-track {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
}
.cp-bar {
  flex: 1;
  height: var(--h, 10%);
  background: rgba(215, 60, 190, 0.2);
  border-radius: 3px 3px 0 0;
}
.cp-bar--mid { background: rgba(215, 60, 190, 0.5); }
.cp-bar--hi  { background: var(--accent); }
.cp-bar-axis {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--text-3);
}

/* Area chart — Case 2 */
.cp-area-wrap {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.cp-area-ylabels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--text-3);
  text-align: right;
  padding: 2px 0;
}
.cp-area-svg {
  flex: 1;
  height: 90px;
  display: block;
  overflow: visible;
}

/* Ring chart — Case 3 */
.cp-ring-layout {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cp-ring-svg {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.cp-ring-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cp-ring-stat { display: flex; flex-direction: column; gap: 1px; }
.cp-ring-stat .n {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}
.cp-ring-stat .l { font-size: 9.5px; color: var(--text-2); }

/* Funnel — Case 4 */
.cp-funnel { display: flex; flex-direction: column; gap: 5px; }
.cp-funnel-row { display: flex; align-items: center; gap: 8px; }
.cp-funnel-bar {
  width: var(--fw, 100%);
  background: rgba(89, 86, 224, 0.16);
  border: 1px solid rgba(89, 86, 224, 0.3);
  border-radius: 5px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}
.cp-funnel-bar--hi {
  background: rgba(89, 86, 224, 0.32);
  border-color: rgba(89, 86, 224, 0.6);
}
.cp-funnel-stage-name { font-size: 10.5px; color: var(--text-2); font-weight: 500; }
.cp-funnel-stage-val {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: rgb(140, 145, 255);
}
.cp-funnel-pct { font-size: 9.5px; color: var(--text-3); white-space: nowrap; min-width: 44px; text-align: right; }

/* Shared stat row */
.cp-stat-row { display: flex; gap: 10px; }
.cp-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cp-stat .n {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-1);
  line-height: 1;
}
.cp-stat .l { font-size: 9.5px; color: var(--text-2); }

/* =========================================================
   BUSINESS SERVICE VISUAL DASHBOARDS
   ========================================================= */
.bsv-title {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 18px;
  position: relative;
}

/* Strategy — 2×2 Matrix */
.bsv-matrix-wrap { display: flex; flex-direction: column; gap: 14px; position: relative; }
.bsv-matrix {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 148px;
}
.bsv-q {
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bsv-q--lead {
  color: var(--accent);
  background: rgba(215, 60, 190, 0.08);
}
.bsv-matrix-svg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bsv-matrix-kpis { display: flex; gap: 8px; }
.bsv-matrix-kpi {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}
.bsv-matrix-kpi .n {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 2px;
}
.bsv-matrix-kpi .l { font-size: 9.5px; color: var(--text-2); }

/* Sales — Pipeline Funnel */
.bsv-pipeline { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.bsv-stage { display: flex; align-items: center; gap: 10px; }
.bsv-stage-bar {
  width: var(--sw, 100%);
  background: rgba(70, 105, 225, 0.16);
  border: 1px solid rgba(70, 105, 225, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  min-height: 40px;
}
.bsv-stage-bar--hi {
  background: rgba(70, 105, 225, 0.32);
  border-color: rgba(70, 105, 225, 0.6);
}
.bsv-stage-name { font-size: 11px; color: var(--text-2); font-weight: 500; }
.bsv-stage-val {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: rgb(120, 140, 255);
}
.bsv-stage-conv { font-size: 10px; color: var(--text-3); min-width: 32px; text-align: right; }

/* Operations — Three Rings */
.bsv-rings {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-around;
  flex: 1;
}
.bsv-ring-item { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.bsv-ring-svg { width: 80px; height: 80px; }
.bsv-ring-label { font-size: 10px; color: var(--text-2); text-align: center; line-height: 1.4; }

/* Technical — Stack Layers */
.bsv-stack { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bsv-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(105, 75, 245, 0.1);
  border: 1px solid rgba(105, 75, 245, 0.22);
  border-radius: 7px;
  padding: 9px 14px;
}
.bsv-layer--hi {
  background: rgba(105, 75, 245, 0.2);
  border-color: rgba(105, 75, 245, 0.48);
}
.bsv-layer-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(105, 75, 245, 0.45);
  flex-shrink: 0;
}
.bsv-layer--hi .bsv-layer-dot {
  background: rgb(135, 115, 255);
  box-shadow: 0 0 7px rgba(105, 75, 245, 0.7);
}
.bsv-layer-name { font-size: 11px; font-weight: 600; color: var(--text-1); flex: 1; }
.bsv-layer-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.bsv-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(105, 75, 245, 0.2);
  color: rgb(155, 140, 255);
  letter-spacing: 0.04em;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0 120px;
}
.contact-form-area h2 { margin-bottom: 12px; }
.contact-form-area > p {
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-1);
  font-size: 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(215,60,190,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
  color: var(--text-1);
}
.form-group select option { background: #1a1a1a; color: var(--text-1); }

/* Validation error state */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: rgba(220, 60, 60, 0.7);
  box-shadow: 0 0 0 3px rgba(220, 60, 60, 0.13);
}
.form-group .field-error {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #e85555;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-group label.label-invalid { color: #e85555; }

.form-footer-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.form-note { font-size: 12.5px; color: var(--text-3); }

.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px 22px;
  background: rgba(215,60,190,0.07);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-1);
}
.form-success.show { display: block; }

.contact-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.contact-sidebar h3 { margin-bottom: 12px; }
.contact-sidebar > p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.contact-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 28px;
  margin-bottom: 14px;
}
.contact-detail-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 6px;
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-1);
}
.contact-detail-value a {
  color: var(--accent);
  transition: color 0.2s;
}
.contact-detail-value a:hover { color: var(--accent-bright); }

.contact-note {
  margin-top: 24px;
  padding: 22px 24px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner, .hero-content, .hero-stats-inner { padding-left: 32px; padding-right: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .h-services-grid { grid-template-columns: 1fr 1fr; }
  .sfc-visual { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .quote-card { grid-template-columns: 1fr; gap: 32px; }
  .quote-visual { display: none; }
  .dm-services-grid { grid-template-columns: 1fr 1fr; }
  .dm-steps { grid-template-columns: 1fr 1fr; }
  .dm-steps::before { display: none; }
  .dm-proof { grid-template-columns: 1fr 1fr; }
  .bs-block, .bs-block.flip { grid-template-columns: 1fr; gap: 48px; }
  .bs-block.flip .bs-text,
  .bs-block.flip .bs-visual { order: unset; }
  .about-mission-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-global-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-team-stats { grid-template-columns: 1fr 1fr; }
  .case-block, .case-block.flip { grid-template-columns: 1fr; gap: 48px; }
  .case-block.flip .case-content,
  .case-block.flip .case-panel { order: unset; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-right { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-content { padding: calc(var(--nav-h) + 60px) 20px 48px; }
  .hero-badge { font-size: 9px; letter-spacing: 0.05em; }
  .hero-stats-inner { padding: 0 20px; grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 30px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4) { border-bottom: none; }

  /* Home page */
  .services-section { padding: 80px 0; }
  .services-featured-card { padding: 36px 28px; grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .h-services-grid { grid-template-columns: 1fr; }
  .h-service-card--full { grid-column: 1; }
  .h-service-card { padding: 36px 28px; }
  .why-section { padding: 80px 0; }
  .why-item { padding: 36px 28px; }
  .results-section { padding: 80px 0; }

  /* Service pages */
  .dm-services-grid { grid-template-columns: 1fr; }
  .dm-steps { grid-template-columns: 1fr; }
  .dm-process { padding: 44px 28px; }
  .dm-proof { grid-template-columns: 1fr; }

  /* Case study panels */
  .case-metrics { grid-template-columns: 1fr 1fr; }
  .cp-funnel-bar { width: 100%; }
  .cp-ring-layout { flex-direction: column; align-items: center; }
  .cp-ring-stats { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .cp-ring-stat { flex: 1; min-width: 100px; }

  /* Business services visuals */
  .bsv-stage-bar { width: 100%; }
  .bsv-rings { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .bsv-ring-item { flex: 0 0 auto; }
  .bsv-matrix-kpis { flex-wrap: wrap; }
  .bsv-matrix-kpi { flex: 1 1 calc(50% - 4px); min-width: 80px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  /* Global */
  .cta-section { padding: 80px 0; }
  .page-hero { padding: calc(var(--nav-h) + 56px) 0 56px; }
  .about-values { grid-template-columns: 1fr; }
  .about-regions { grid-template-columns: 1fr; }
  .about-team-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(34px, 10vw, 44px); }
  h2 { font-size: clamp(28px, 8vw, 38px); }
  .hero-badge { font-size: 8.5px; letter-spacing: 0.04em; max-width: 260px; white-space: normal; text-align: center; justify-content: center; line-height: 1.5; }
  .hero-sub { font-size: 15px; }
  .btn-lg { padding: 16px 28px; font-size: 14px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }
  .bsv-matrix { height: 110px; }
  .bsv-matrix-kpis { flex-direction: column; }
  .case-metrics { grid-template-columns: 1fr; }
  .cp-stat-row { flex-wrap: wrap; }
  .cp-stat { min-width: calc(50% - 5px); }
  .cp-ring-stats { flex-direction: column; }
  .dm-proof { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .contact-sidebar { position: static; }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-body {
  max-width: 760px;
}
.legal-body p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 20px;
}
.legal-body h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--text-1);
  margin-top: 48px;
  margin-bottom: 14px;
}
.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body a {
  color: var(--accent);
  transition: color 0.2s;
}
.legal-body a:hover { color: var(--accent-bright); }

/* =========================================================
   PER-PAGE SPOTLIGHT COLOURS
   Shared background gradient across all pages.
   Each page gets a unique mouse-spotlight accent colour.
   ========================================================= */
body[data-page="home"]    { --spot-color: rgba(215, 60,  190, 0.14); }
body[data-page="dm"]      { --spot-color: rgba(220, 50,   80, 0.14); }
body[data-page="lead"]    { --spot-color: rgba(55,  115, 235, 0.14); }
body[data-page="webdev"]  { --spot-color: rgba(105,  75, 245, 0.14); }
body[data-page="content"] { --spot-color: rgba(215, 125,  45, 0.14); }
body[data-page="biz"]     { --spot-color: rgba(70,  105, 225, 0.14); }
body[data-page="about"]   { --spot-color: rgba(35,  175, 195, 0.14); }
body[data-page="cases"]   { --spot-color: rgba(45,  195, 115, 0.14); }
body[data-page="contact"] { --spot-color: rgba(210,  50, 125, 0.14); }
body[data-page="legal"]   { --spot-color: rgba(160, 100, 200, 0.11); }

/* =========================================================
   MOUSE SPOTLIGHT OVERLAY
   A fixed radial gradient that follows the cursor.
   ========================================================= */
#mouse-spotlight {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  transition: background 0.08s linear;
  will-change: background;
}

/* =========================================================
   NEON BACKGROUND ORB SYSTEM
   Three large blurred radial orbs (indigo, pink, cyan)
   drift slowly on a near-black canvas behind all content.
   Fixed to the viewport — as content scrolls, different
   parts of the gradient are revealed.
   ========================================================= */

html {
  background: #07070f;
}

#bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

/* Indigo — top left */
.orb-a {
  width: 900px;
  height: 800px;
  background: radial-gradient(circle, rgba(89, 86, 224, 0.72) 0%, transparent 68%);
  top: -20vh;
  left: -18vw;
  animation: orb-drift-a 24s ease-in-out infinite;
}

/* Hot pink — top right */
.orb-b {
  width: 780px;
  height: 680px;
  background: radial-gradient(circle, rgba(215, 60, 190, 0.62) 0%, transparent 68%);
  top: -12vh;
  right: -16vw;
  animation: orb-drift-b 30s ease-in-out infinite;
}

/* Cyan — bottom centre */
.orb-c {
  width: 680px;
  height: 580px;
  background: radial-gradient(circle, rgba(48, 203, 211, 0.48) 0%, transparent 65%);
  bottom: -8vh;
  left: 50%;
  transform: translateX(-50%);
  animation: orb-drift-c 38s ease-in-out infinite;
}

/* Purple accent — mid right, creates variety mid-scroll */
.orb-d {
  width: 520px;
  height: 440px;
  background: radial-gradient(circle, rgba(145, 60, 230, 0.32) 0%, transparent 65%);
  top: 38vh;
  right: 5vw;
  animation: orb-drift-b 44s ease-in-out infinite reverse;
}

@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  20%       { transform: translate(4vw, 5vh) scale(1.06); }
  45%       { transform: translate(-3vw, 8vh) scale(0.96); }
  70%       { transform: translate(6vw, 2vh) scale(1.04); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(-5vw, 4vh) scale(1.05); }
  55%       { transform: translate(3vw, -5vh) scale(0.97); }
  80%       { transform: translate(-4vw, 7vh) scale(1.03); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  30%       { transform: translateX(calc(-50% + 4vw)) translateY(-5vh) scale(1.07); }
  65%       { transform: translateX(calc(-50% - 3vw)) translateY(4vh) scale(0.95); }
}

/* Ensure footer sits above bg-scene */
.footer { position: relative; z-index: 2; }
