/* ═══════════════════════════════════════════════════════════════
   PIVOTENTIAL — Global Stylesheet
   Refactored: Production-ready, zero-inline, component-based CSS
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════
   §1  RESET & ROOT VARIABLES
   ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Brand Palette ── */
  --electric-purple: #bc13fe;
  --light-lilac: #e9b5ff;
  --deep-purple: #610a80;
  --muted-gray: #7b7b8f;
  --pale-lavender: #ede2f7;
  --white: #ffffff;
  --black: #000000;
  --bright-lavender: #d38cfa;

  /* ── Typography ── */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'DM Sans', sans-serif;

  /* ── Spacing Scale ── */
  --space-3xs: 2px;
  --space-2xs: 4px;
  --space-xs: 6px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 40px;
  --space-4xl: 48px;
  --space-5xl: 56px;
  --space-6xl: 64px;
  --space-7xl: 80px;
  --space-8xl: 100px;

  /* ── Type Scale ── */
  --text-2xs: 0.65rem;
  --text-xs: 0.7rem;
  --text-sm: 0.78rem;
  --text-base: 0.88rem;
  --text-md: 0.9rem;
  --text-lg: 0.95rem;
  --text-xl: 1rem;
  --text-2xl: 1.1rem;
  --text-3xl: 1.2rem;
  --text-4xl: 1.4rem;
  --text-5xl: 1.5rem;

  /* ── Layout ── */
  --nav-height: 72px;

  /* ── Easing ── */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--electric-purple) var(--black);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

ul {
  list-style: none;
}


/* ═══════════════════════════════════════════════
   §2  SCROLLBAR
   ═══════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--deep-purple);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--electric-purple);
}


/* ═══════════════════════════════════════════════
   §3  AURORA BACKGROUND
   ═══════════════════════════════════════════════ */
.aurora {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

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

.aurora-orb--1 {
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, rgba(188, 19, 254, 0.18) 0%, rgba(188, 19, 254, 0.06) 50%, transparent 70%);
  animation: auroraFloat1 20s ease-in-out infinite;
}

.aurora-orb--2 {
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  top: 25%;
  right: -8%;
  background: radial-gradient(circle, rgba(97, 10, 128, 0.2) 0%, rgba(97, 10, 128, 0.07) 50%, transparent 70%);
  animation: auroraFloat2 26s ease-in-out infinite;
}

.aurora-orb--3 {
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  bottom: -5%;
  left: 5%;
  background: radial-gradient(circle, rgba(211, 140, 250, 0.14) 0%, rgba(211, 140, 250, 0.04) 50%, transparent 70%);
  animation: auroraFloat3 23s ease-in-out infinite;
}

.aurora-orb--4 {
  width: 35vw;
  height: 35vw;
  max-width: 450px;
  max-height: 450px;
  top: 55%;
  right: 20%;
  background: radial-gradient(circle, rgba(188, 19, 254, 0.12) 0%, rgba(188, 19, 254, 0.03) 50%, transparent 70%);
  animation: auroraFloat4 18s ease-in-out infinite;
}

@keyframes auroraFloat1 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  25% {
    transform: translate(4vw, 3vh) scale(1.08);
    opacity: 1;
  }

  50% {
    transform: translate(2vw, 6vh) scale(0.95);
    opacity: 0.7;
  }

  75% {
    transform: translate(-2vw, 2vh) scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }
}

@keyframes auroraFloat2 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }

  25% {
    transform: translate(-3vw, -4vh) scale(1.1);
    opacity: 0.9;
  }

  50% {
    transform: translate(-5vw, -1vh) scale(0.92);
    opacity: 0.6;
  }

  75% {
    transform: translate(-1vw, -3vh) scale(1.06);
    opacity: 0.85;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
}

@keyframes auroraFloat3 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }

  25% {
    transform: translate(3vw, -3vh) scale(1.06);
    opacity: 0.6;
  }

  50% {
    transform: translate(5vw, -5vh) scale(1.12);
    opacity: 0.9;
  }

  75% {
    transform: translate(1vw, -2vh) scale(0.96);
    opacity: 0.7;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
}

@keyframes auroraFloat4 {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.65;
  }

  33% {
    transform: translate(-4vw, 3vh) scale(1.15);
    opacity: 0.9;
  }

  66% {
    transform: translate(2vw, 5vh) scale(0.9);
    opacity: 0.55;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.65;
  }
}


/* ═══════════════════════════════════════════════
   §4  NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  transition: all 0.4s var(--ease-smooth);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(188, 19, 254, 0.0);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(188, 19, 254, 0.15);
  box-shadow: 0 4px 30px rgba(97, 10, 128, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  z-index: 1001;
}

.nav-logo img {
  height: 38px;
  width: 38px;
  transition: transform 0.3s var(--ease-smooth);
}

/* Replaces inline style="transform: scale(1.5)" on logo img */
.nav-logo-scaled {
  transform: scale(1.5);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo:hover .nav-logo-scaled {
  transform: scale(1.55);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--electric-purple), var(--bright-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(188, 19, 254, 0.08);
}

.nav-link.active {
  color: var(--white);
}

/* Solutions Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease-smooth);
  opacity: 0.5;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 260px;
  background: rgba(15, 5, 20, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(188, 19, 254, 0.15);
  border-radius: 14px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(188, 19, 254, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s var(--ease-smooth);
  cursor: pointer;
}

.nav-dropdown-item:hover {
  background: rgba(188, 19, 254, 0.1);
}

.nav-dropdown-item-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.nav-dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--muted-gray);
  line-height: 1.4;
}

/* CTA Button in Nav */
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 10px;
  background: var(--electric-purple);
  color: var(--white);
  margin-left: 12px;
  transition: all 0.3s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: var(--bright-lavender);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(188, 19, 254, 0.35);
}

/* Mobile Menu Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════
   §5  MOBILE MENU OVERLAY
   ═══════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a,
.mobile-menu button {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 24px;
  transition: all 0.25s;
  border-radius: 12px;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--white);
  background: rgba(188, 19, 254, 0.1);
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mobile-sub-links a {
  font-size: 1rem !important;
  color: var(--bright-lavender) !important;
  font-weight: 400 !important;
}


/* ═══════════════════════════════════════════════
   §6  GLOBAL COMPONENTS — Buttons
   ═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  background: var(--electric-purple);
  color: var(--white);
  transition: all 0.35s var(--ease-smooth);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--bright-lavender);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(188, 19, 254, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1px solid rgba(188, 19, 254, 0.3);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.35s var(--ease-smooth);
  background: rgba(188, 19, 254, 0.04);
}

.btn-secondary:hover {
  border-color: var(--electric-purple);
  color: var(--white);
  background: rgba(188, 19, 254, 0.1);
  transform: translateY(-2px);
}

.btn-arrow {
  transition: transform 0.3s var(--ease-smooth);
}

.btn-primary:hover .btn-arrow,
.btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

/* Replaces inline style="align-self:flex-start" on submit buttons */
.btn--align-start {
  align-self: flex-start;
}


/* ═══════════════════════════════════════════════
   §7  GLOBAL COMPONENTS — Reveal Animations
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth) !important;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s !important;
}

.reveal-delay-2 {
  transition-delay: 0.2s !important;
}

.reveal-delay-3 {
  transition-delay: 0.3s !important;
}

.reveal-delay-4 {
  transition-delay: 0.5s !important;
}

.reveal-delay-5 {
  transition-delay: 0.7s !important;
}

.reveal-delay-6 {
  transition-delay: 0.9s !important;
}

/* Parallax glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}


/* ═══════════════════════════════════════════════
   §8  GLOBAL COMPONENTS — SVG Defs & Utilities
   ═══════════════════════════════════════════════ */

/* Replaces inline style="position:absolute" on SVG defs container */
.svg-defs {
  position: absolute;
}

/* Replaces inline style="color:var(--bright-lavender)" accent spans */
.text-accent {
  color: var(--bright-lavender);
}

/* Replaces inline style="text-align:center" */
.text-center {
  text-align: center;
}

/* Replaces inline style="margin:12px auto 0" on section-subtitle */
.section-subtitle--spaced {
  margin: 12px auto 0;
}


/* ═══════════════════════════════════════════════
   §8.1  TOAST NOTIFICATIONS
   ═══════════════════════════════════════════════ */
.toast {
  position: fixed;
  top: 100px;
  right: 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--electric-purple);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateX(120%);
  transition: transform 0.6s var(--ease-smooth), opacity 0.6s var(--ease-smooth);
  opacity: 0;
  pointer-events: none;
}

.toast.visible {
  transform: translateX(0);
  opacity: 1;
}


/* ═══════════════════════════════════════════════
   §9  HERO SECTION — HOME
   ═══════════════════════════════════════════════ */

/* Vertical rhythm for inner page hero text */
.inner-page .hero-content {
  padding-top: clamp(100px, 12vh, 140px) !important;
}

/* Tighten the relationship between title and flowchart and ensure consistent bottom spacing */
.inner-page .solutions-flow {
  margin-top: 2rem;
}

.inner-page .solutions-visual {
  margin-top: 0;
  margin-bottom: 125px; /* Consistent bottom margin as requested */
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) clamp(24px, 5vw, 80px) 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.05) 30%,
      rgba(0, 0, 0, 0.08) 60%,
      rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 19, 254, 0.3), rgba(211, 140, 250, 0.2), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto; /* Added centering */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  border-radius: 100px;
  border: 1px solid rgba(188, 19, 254, 0.25);
  background: rgba(188, 19, 254, 0.06);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--bright-lavender);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--electric-purple);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.35s both;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--electric-purple) 0%, var(--bright-lavender) 60%, var(--light-lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.65s both;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s var(--ease-smooth) 1s both;
}

.scroll-indicator-text {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--electric-purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}


/* ═══════════════════════════════════════════════
   §10  SECTION STYLING
   ═══════════════════════════════════════════════ */
.section {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 5vw, 80px);
  position: relative;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Replaces inline style="margin-bottom:8px" on section-label in articles */
.section-label--tight {
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* Replaces inline style="font-size:1.4rem; margin-bottom:32px" on section-title */
.section-title--sm {
  font-size: 1.4rem;
  margin-bottom: 32px;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 640px;
  line-height: 1.7;
}

.section-centered {
  text-align: center;
}

.section-centered .section-subtitle {
  margin: 0 auto;
}


/* ═══════════════════════════════════════════════
   §11  WHO WE ARE
   ═══════════════════════════════════════════════ */
.who-section {
  background: transparent;
  padding-top: clamp(120px, 20vw, 240px);
}

.who-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.who-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

.who-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-purple), transparent);
  margin: 40px auto;
}


/* ═══════════════════════════════════════════════
   §12  APPROACH SECTION — 3-Column Cards
   ═══════════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.approach-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(188, 19, 254, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  text-align: center;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric-purple), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.approach-card:hover::before {
  opacity: 1;
}

.approach-card:hover {
  background: rgba(188, 19, 254, 0.06);
  border-color: rgba(188, 19, 254, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(97, 10, 128, 0.25);
}

.approach-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(188, 19, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.35s var(--ease-smooth);
}

.approach-card:hover .approach-icon {
  background: rgba(188, 19, 254, 0.18);
  transform: scale(1.05);
}

.approach-icon svg {
  width: 22px;
  height: 22px;
  color: var(--electric-purple);
}

.approach-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.approach-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   §13  STAT SECTIONS
   ═══════════════════════════════════════════════ */
.stat-section {
  position: relative;
  overflow: hidden;
}

.stat-block {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stat-block.reverse {
  direction: rtl;
}

.stat-block.reverse>* {
  direction: ltr;
}

.stat-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-ring {
  position: relative;
  width: 280px;
  height: 280px;
}

.stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-ring-bg {
  fill: none;
  stroke: rgba(188, 19, 254, 0.08);
  stroke-width: 6;
}

.stat-ring-fill {
  fill: none;
  stroke: url(#purpleGrad);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 754;
  stroke-dashoffset: 754;
  transition: stroke-dashoffset 2s ease-in-out;
}

.stat-ring-fill.animated {
  stroke-dashoffset: var(--target-offset);
}

.stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.stat-number-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--electric-purple), var(--bright-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-number-label {
  font-size: 0.8rem;
  color: var(--muted-gray);
  margin-top: 4px;
}

.stat-text-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.stat-text-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.stat-text-content .highlight {
  color: var(--bright-lavender);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   §14  EFFICIENCY SHOWCASE — 2× Centerpiece
   ═══════════════════════════════════════════════ */
.efficiency-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
}

.eff-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.efficiency-showcase.is-animated .eff-number {
  opacity: 1;
  transform: translateY(0);
}

.eff-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}

.efficiency-showcase.is-animated .eff-subtitle {
  opacity: 1;
}

.eff-bar-wrapper {
  width: 100%;
}

.eff-bar-track {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  overflow: hidden;
  position: relative;
}

.eff-bar-baseline {
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.eff-bar-baseline::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.eff-bar-boost {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--deep-purple), var(--electric-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.efficiency-showcase.is-animated .eff-bar-boost {
  width: 50%;
}

.eff-label-inside {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.eff-bar-baseline .eff-label-inside {
  color: rgba(255, 255, 255, 0.3);
}

.eff-bar-boost .eff-label-inside {
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease 1.6s;
}

.efficiency-showcase.is-animated .eff-bar-boost .eff-label-inside {
  opacity: 1;
}

.eff-markers {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 0;
}

.eff-marker {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.03em;
}

.eff-marker:first-child {
  margin-left: calc(50% - 8px);
}


/* ═══════════════════════════════════════════════
   §15  SOLUTIONS OVERVIEW — 3D View Cards
   ═══════════════════════════════════════════════ */
.solutions-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.solutions-intro .section-title .accent {
  background: linear-gradient(135deg, var(--electric-purple), var(--bright-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  position: relative;
  display: block;
  padding: 40px 30px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(188, 19, 254, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
}

.solution-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(188, 19, 254, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.solution-card:hover {
  background: rgba(188, 19, 254, 0.06);
  border-color: rgba(188, 19, 254, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(97, 10, 128, 0.25);
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-step {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.solution-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.solution-card-subtitle {
  font-size: 0.88rem;
  color: var(--bright-lavender);
  margin-bottom: 16px;
  font-weight: 400;
}

.solution-card-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--electric-purple);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.solution-card-link:hover {
  color: var(--bright-lavender);
  gap: 10px;
}


/* ═══════════════════════════════════════════════
   §16  PREMIUM READINESS AUDIT UPGRADES
   ═══════════════════════════════════════════════ */
.premium-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(188, 19, 254, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulse-glow 4s infinite alternate var(--ease-smooth);
}

.visual-glass-card {
  position: relative;
  width: 200px;
  height: 240px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(188, 19, 254, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.5s var(--ease-smooth);
}

.premium-visual-container:hover .visual-glass-card {
  transform: translateY(-10px);
  border-color: rgba(188, 19, 254, 0.3);
}

.premium-audit-icon {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 4px 12px rgba(188, 19, 254, 0.4));
}

/* Replaces inline styles on .audit-tick SVG path */
.audit-tick {
  stroke-dasharray: 12;
  stroke-dashoffset: 12;
  transition: stroke-dashoffset 0s;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Insight List Blocks */
.audit-insight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px 0;
}

.insight-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(188, 19, 254, 0.08);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
}

.insight-row:hover {
  background: rgba(188, 19, 254, 0.05);
  border-color: rgba(188, 19, 254, 0.25);
  transform: translateX(4px);
}

.insight-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  background: rgba(188, 19, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-purple);
}

.insight-icon svg {
  width: 18px;
  height: 18px;
}

.insight-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Premium Quote */
.premium-quote {
  position: relative;
  padding: 24px 0 24px 32px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--electric-purple);
  background: linear-gradient(90deg, rgba(188, 19, 254, 0.05), transparent);
  border-radius: 0 12px 12px 0;
}


/* ═══════════════════════════════════════════════
   §17  READINESS AUDIT CALLOUT
   ═══════════════════════════════════════════════ */
.audit-callout {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(97, 10, 128, 0.15), rgba(188, 19, 254, 0.05));
  border: 1px solid rgba(188, 19, 254, 0.15);
  text-align: center;
  overflow: hidden;
}

.audit-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(188, 19, 254, 0.08), transparent 50%);
  pointer-events: none;
}

.audit-callout-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}

.audit-callout-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
  position: relative;
}


/* ═══════════════════════════════════════════════
   §18  ARTICLES PREVIEW — Home Page
   ═══════════════════════════════════════════════ */
.articles-section-home {
  background: transparent;
}

.articles-label-home {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.article-card {
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(188, 19, 254, 0.08);
  background: rgba(255, 255, 255, 0.015);
  transition: all 0.35s var(--ease-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: rgba(188, 19, 254, 0.2);
  background: rgba(188, 19, 254, 0.03);
  transform: translateY(-3px);
}

.article-card-category {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--electric-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.article-card-excerpt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════
   §19  FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid rgba(188, 19, 254, 0.08);
  padding: 48px clamp(24px, 5vw, 80px) 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-logo img {
  height: 42px;
  width: 42px;
}

.footer-brand-logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--electric-purple), var(--bright-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted-gray);
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted-gray);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--bright-lavender);
}

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

.footer-bottom a:hover {
  color: var(--white);
}


/* ═══════════════════════════════════════════════
   §20  PAGE: STRATEGY OVERVIEW (solutions.html)
   ═══════════════════════════════════════════════ */

/* Hero */
.strat-ov-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 5vw, 80px) 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strat-ov-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 19, 254, 0.3), rgba(211, 140, 250, 0.2), transparent);
  z-index: 3;
}


.strat-ov-hero::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
  pointer-events: none;
  content: '';
}



.strat-ov-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.strat-ov-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.strat-ov-hero-title .accent {
  background: linear-gradient(135deg, var(--electric-purple) 0%, var(--bright-lavender) 60%, var(--light-lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strat-ov-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--bright-lavender);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.strat-ov-hero-desc {
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 16px;
}

/* Three Lenses Grid */
.strat-ov-lenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 56px auto 0;
}

.strat-ov-lens-card {
  position: relative;
  padding: 40px 30px 36px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(188, 19, 254, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strat-ov-lens-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(188, 19, 254, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  pointer-events: none;
}

.strat-ov-lens-card:hover {
  background: rgba(188, 19, 254, 0.06);
  border-color: rgba(188, 19, 254, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(97, 10, 128, 0.25);
}

.strat-ov-lens-card:hover::after {
  opacity: 1;
}

.strat-ov-lens-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(188, 19, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s var(--ease-smooth);
}

.strat-ov-lens-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--electric-purple);
}

.strat-ov-lens-card:hover .strat-ov-lens-icon {
  background: rgba(188, 19, 254, 0.18);
  transform: scale(1.05);
}

.strat-ov-lens-step {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.strat-ov-lens-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.strat-ov-lens-subtitle {
  font-size: 0.95rem;
  color: var(--bright-lavender);
  font-weight: 400;
  margin-bottom: 16px;
}

.strat-ov-lens-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* Detail Blocks — visual badge */
.strat-ov-detail-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.strat-ov-detail-badge-step {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


.strat-ov-detail-tagline {
  font-size: 1rem;
  color: var(--bright-lavender);
  font-weight: 400;
  margin-bottom: 12px;
}

.strat-ov-detail-btn {
  margin-top: 20px;
}

/* CTA Section */
.strat-ov-cta {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 56px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(97, 10, 128, 0.15), rgba(188, 19, 254, 0.05));
  border: 1px solid rgba(188, 19, 254, 0.15);
  text-align: center;
  overflow: hidden;
}

.strat-ov-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(188, 19, 254, 0.08), transparent 50%);
  pointer-events: none;
}

.strat-ov-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  letter-spacing: -0.02em;
}

.strat-ov-cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  position: relative;
}


/* ═══════════════════════════════════════════════
   §21  PAGE: SOLUTIONS DEPTH (audit, blueprint, roadmap)
   ═══════════════════════════════════════════════ */
.solutions-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 5vw, 80px) 60px;
  position: relative;
  overflow: hidden;
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(188, 19, 254, 0.08), transparent 70%);
  pointer-events: none;
}

.solutions-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.solutions-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--muted-gray);
  margin-bottom: 24px;
}

.solutions-breadcrumb a {
  color: var(--muted-gray);
  transition: color 0.2s;
}

.solutions-breadcrumb a:hover {
  color: var(--bright-lavender);
}

.solutions-breadcrumb .sep {
  opacity: 0.3;
}

.solutions-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.solutions-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--bright-lavender);
  font-weight: 400;
  margin-bottom: 8px;
}

.solutions-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 640px;
  margin: 20px auto 0;
}

/* Replaces inline style="margin-top:16px" on solutions-hero-desc */
.solutions-hero-desc--tight {
  margin-top: 16px;
}

/* Solutions Content Body */
.solutions-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 80px) 80px;
}

/* Replaces inline style="padding-top:48px" on solutions-body */
.solutions-body--top {
  padding-top: 48px;
}

/* Replaces inline style for centered intro paragraphs on depth pages */
.solutions-intro-text {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 32px;
  text-align: center;
}

/* Replaces inline style="text-align:center; margin-top:48px" on CTA wrappers */
.solutions-cta-wrapper {
  text-align: center;
  margin-top: 48px;
}

.solutions-questions {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 48px 0;
}

.solutions-question {
  position: relative;
  padding: 32px 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(188, 19, 254, 0.08);
  transition: all 0.35s var(--ease-smooth);
}

.solutions-question:hover {
  border-color: rgba(188, 19, 254, 0.18);
  background: rgba(188, 19, 254, 0.03);
}

.solutions-question-number {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--electric-purple);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.solutions-question h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.solutions-question p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

.solutions-summary {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(97, 10, 128, 0.12), rgba(188, 19, 254, 0.04));
  border: 1px solid rgba(188, 19, 254, 0.12);
  margin-top: 48px;
}

.solutions-summary h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--bright-lavender);
}

.solutions-summary p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* Solutions visual flow */
.solutions-visual {
  display: flex;
  justify-content: center;
  margin: 64px 0;
}

.solutions-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.solutions-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(188, 19, 254, 0.05);
  border: 1px solid rgba(188, 19, 254, 0.1);
  min-width: 180px;
  flex: 1;
  text-align: center;
  /* Only transition background for hover, don't clash with reveal */
  transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

.solutions-flow-step:hover {
  background: rgba(188, 19, 254, 0.1);
  transform: translateY(-3px);
}

.solutions-flow-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(188, 19, 254, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-flow-step-icon svg {
  width: 20px;
  height: 20px;
  color: var(--electric-purple);
}

.solutions-flow-step-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* FIXED: was corrupted with HTML tag pasted inside */
.solutions-flow-arrow {
  color: var(--muted-gray);
  font-size: 1.2rem;
  display: inline-block;
}


/* ═══════════════════════════════════════════════
   §22  PAGE: ARTICLES
   ═══════════════════════════════════════════════ */
.articles-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 5vw, 80px) 40px;
  text-align: center;
}

.articles-page-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 80px) 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-page-card {
  padding: 36px 30px;
  border-radius: 20px;
  border: 1px solid rgba(188, 19, 254, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.article-page-card:hover {
  border-color: rgba(188, 19, 254, 0.25);
  background: rgba(188, 19, 254, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(97, 10, 128, 0.1);
}

.article-page-card-cat {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--electric-purple);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.article-page-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.article-page-card-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}

.article-page-card-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--electric-purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  margin-top: auto;
}

.article-page-card-link:hover {
  color: var(--bright-lavender);
  gap: 10px;
}


/* ═══════════════════════════════════════════════
   §23  PAGE: ARTICLE BODY (individual articles, privacy, terms)
   ═══════════════════════════════════════════════ */

/* Article intro paragraph — larger, higher contrast */
.article-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Article body paragraph */
.article-body-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Tighter bottom margin for list-adjacent paragraphs */
.article-body-text--tight {
  margin-bottom: 12px;
}

/* Article section heading */
.article-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
  letter-spacing: -0.02em;
}

/* Smaller variant for article subheadings */
.article-heading--sm {
  font-size: 1.3rem;
}

/* Strong text within article paragraphs */
.article-strong {
  color: rgba(255, 255, 255, 0.8);
}

/* Article meta line (date, read time) */
.article-meta {
  margin-top: 16px;
}

/* Legal/privacy intro paragraph (slightly larger) */
.legal-intro {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Legal body text */
.legal-body-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* Legal body text tight (for stacked items) */
.legal-body-text--tight {
  margin-bottom: 12px;
}

/* Legal section heading */
.legal-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
  letter-spacing: -0.02em;
}

/* Legal inline link styling */
.legal-link {
  color: var(--bright-lavender);
}


/* ═══════════════════════════════════════════════
   §24  PAGE: CONTACT
   ═══════════════════════════════════════════════ */
.contact-hero {
  padding: calc(var(--nav-height) + 80px) clamp(24px, 5vw, 80px) 40px;
  text-align: center;
}

.contact-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 20px clamp(24px, 5vw, 80px) 100px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(188, 19, 254, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  outline: none;
  transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--electric-purple);
  background: rgba(188, 19, 254, 0.04);
  box-shadow: 0 0 0 3px rgba(188, 19, 254, 0.08);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237b7b8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: #1a0a22;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Contact form button states (replaces inline innerHTML styles in script.js) */
.btn-sending {
  color: var(--bright-lavender);
}

.btn-success {
  color: var(--bright-lavender);
}

.btn-error {
  color: #ff6b6b;
}


/* Spacer utility */
.spacer-lg {
  height: 60px;
}


/* ═══════════════════════════════════════════════
   §25  ARTICLE CTA FOOTER
   ═══════════════════════════════════════════════ */

/* Replaces inline styles on the article bottom CTA block */
.article-cta-footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(188, 19, 254, 0.08);
}

.article-cta-footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

/* Replaces inline style="margin-top:40px; margin-bottom:40px" on solutions-summary in articles */
.solutions-summary--article {
  margin-top: 40px;
  margin-bottom: 40px;
}


/* ═══════════════════════════════════════════════
   §26  RESPONSIVE — Consolidated Breakpoints
   ═══════════════════════════════════════════════ */

/* ── Tablet & Below (≤900px) ── */
@media (max-width: 900px) {

  .approach-grid,
  .solutions-grid,
  .articles-grid,
  .articles-page-grid,
  .strat-ov-lenses-grid {
    grid-template-columns: 1fr;
  }

  .stat-block {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stat-block.reverse {
    direction: ltr;
  }

  .stat-visual {
    margin: 0 auto;
    max-width: 300px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }

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

  .solutions-flow {
    flex-direction: column;
  }

  .solutions-flow-arrow {
    transform: rotate(90deg) !important;
  }
}

/* ── Medium screens (≤800px) ── */
@media (max-width: 800px) {
  .audit-callout {
    padding: 36px 24px;
  }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .section {
    padding: 60px 20px;
  }

  .efficiency-showcase {
    max-width: 100%;
  }

  .eff-bar-track {
    height: 40px;
  }

  .eff-number {
    font-size: clamp(2.8rem, 10vw, 3.6rem);
  }
}

.footer-social-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 24px;
  transition: color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.footer-social-link:hover {
  color: var(--electric-purple);
  transform: translateY(-2px);
}