/* ═══════════════════════════════════════════════════
   DESIGN TOKENS - BIZCHAKRA COHESIVE THEME
   Tech-Modernism & Digital Etherealism.
   Fully cohesive with the homepage.
═══════════════════════════════════════════════════ */
:root {
  --base: #050505;
  --surface: rgba(20, 20, 25, 0.6);
  --card: rgba(20, 20, 25, 0.55);
  --lift: rgba(255, 255, 255, 0.025);
  --lift-sm: rgba(255, 255, 255, 0.015);

  --accent: #FFA500;
  --accent-lt: #FFC04D;
  --accent-10: rgba(255, 165, 0, 0.10);
  --accent-20: rgba(255, 165, 0, 0.20);
  --accent-30: rgba(255, 165, 0, 0.30);
  --accent-70: rgba(255, 165, 0, 0.70);

  --t-100: #FFFFFF;
  --t-90: #E8E8E8;
  --t-88: #E0E0E0;
  --t-75: #BFBFBF;
  --t-50: #808080;
  --t-25: #404040;

  --bd-5: rgba(255, 255, 255, 0.05);
  --bd-6: rgba(255, 255, 255, 0.06);
  --bd-8: rgba(255, 255, 255, 0.08);
  --bd-12: rgba(255, 255, 255, 0.12);
  --bd-20: rgba(255, 255, 255, 0.20);

  --ff-d: 'Orelega One', serif;
  --ff-b: 'Montserrat', sans-serif;
  --ff-m: 'DM Mono', monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════
   RESET & GLOBAL
═══════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--base);
  color: var(--t-100);
  font-family: var(--ff-b);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 30, 40, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

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

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

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

::-webkit-scrollbar {
  width: 0px;
  background: transparent
}

/* Match hide scrollbar of homepage */

/* ═══════════════════════════════════════════════════
   FLOATING BACKGROUND PARTICLES (Cohesive with home)
═══════════════════════════════════════════════════ */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 165, 0, 0.8), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 165, 0, 0.5), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 160px 120px, #ffffff, rgba(0, 0, 0, 0));
  background-size: 200px 200px;
  animation: bg-particles 100s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes bg-particles {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-200px);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes float-navbar {
  0% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }

  100% {
    transform: translateX(-50%) translateY(0px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  20% {
    left: 200%;
  }

  100% {
    left: 200%;
  }
}

/* Glowing Accent Drops */
.glow-drop {
  position: absolute;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(140px);
  opacity: 0.12;
}

.glow-drop-1 {
  top: 10%;
  left: -10%;
  background: var(--accent);
}

.glow-drop-2 {
  top: 40%;
  right: -10%;
  background: #6a0dad;
}

.glow-drop-3 {
  bottom: 10%;
  left: 20%;
  background: var(--accent);
}

/* Global Wrapper */
.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   NAVIGATION BAR (Frosted Floating Navbar)
═══════════════════════════════════════════════════ */
.nav,
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 9999;
  background: rgba(20, 20, 25, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: float-navbar 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.nav:hover,
.navbar:hover {
  background: rgba(30, 30, 35, 0.6);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
}

.nav-logo,
.nav-logo-text {
  font-family: var(--ff-b);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--t-100);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.nav-logo .acc,
.nav-logo-text .acc {
  color: var(--accent);
}

.nav-logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links span:not(.nav-cta),
.nav-links a:not(.nav-cta) {
  font-family: var(--ff-b);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t-90);
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.nav-links span:not(.nav-cta)::after,
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links span:not(.nav-cta):hover,
.nav-links a:not(.nav-cta):hover {
  color: var(--accent);
}

.nav-links span:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* Dropdown styling */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 165, 0, 0.1);
  z-index: 10000;
}

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

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  color: #E8E8E8 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-align: left !important;
  transition: all 0.2s !important;
  white-space: nowrap !important;
  border: none !important;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background: rgba(255, 165, 0, 0.1) !important;
  color: #FFA500 !important;
  padding-left: 25px !important;
}

.chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s;
  display: inline-block;
}

.nav-links li:hover .chevron {
  transform: rotate(180deg);
}

.nav-cta {
  font-family: var(--ff-b);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--base) !important;
  background: var(--accent);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2);
  display: inline-block;
}

.nav-cta:hover {
  background: var(--accent-lt);
  transform: scale(1.05);
}

/* Hamburger default state (hidden on desktop) */
.hbg,
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hbg span,
.hamburger-menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t-75);
  transition: all 0.3s var(--ease-out);
}

.hbg.open span:nth-child(1),
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hbg.open span:nth-child(2),
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hbg.open span:nth-child(3),
.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown container */
.mob-overlay,
.mobile-menu-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: none !important; /* Managed via display: flex in active state */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 2rem;
}

.mob-overlay.open,
.mobile-menu-dropdown.active {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

.mob-overlay a,
.mobile-menu-dropdown a,
.mobile-menu-dropdown span {
  display: block;
  width: 80%;
  font-family: var(--ff-b);
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--t-90) !important;
  transition: all 0.25s ease !important;
  padding: 0.6rem 0 !important;
  border-bottom: none !important;
  text-align: center !important;
  cursor: pointer !important;
}

.mob-overlay a:hover,
.mobile-menu-dropdown a:hover,
.mobile-menu-dropdown span:hover,
.mobile-menu-dropdown a.active,
.mobile-menu-dropdown span.active {
  color: var(--accent) !important;
  transform: scale(1.03);
}

.mob-cta {
  margin-top: 2rem !important;
  width: 80% !important;
  max-width: 280px !important;
  color: var(--base) !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.8rem 2.2rem !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  box-shadow: 0 8px 24px rgba(255, 165, 0, 0.25) !important;
  text-align: center !important;
  display: inline-block !important;
}

.mob-cta:hover {
  background: var(--accent-lt) !important;
  transform: scale(1.05) !important;
}

/* Mobile dropdown accordion layout and animations */
.mobile-dropdown-container {
  width: 80% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: none !important;
}

.mobile-dropdown-trigger {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: fit-content !important;
  position: relative !important;
}

.mobile-dropdown-trigger .chevron {
  position: absolute !important;
  left: calc(100% + 8px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.mobile-dropdown-trigger.active .chevron {
  transform: translateY(-50%) rotate(180deg) !important;
}



.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.02) !important;
  border-left: 2px solid rgba(255, 165, 0, 0.3) !important;
  border-radius: 8px;
  width: 100% !important;
}

.mobile-dropdown-menu.open {
  max-height: 400px !important;
  padding: 0.4rem 0 !important;
  margin: 0.2rem 0 0.8rem 0 !important;
  overflow: visible !important;
  gap: 0.15rem !important;
}

.mobile-dropdown-menu a {
  width: 100% !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  color: var(--t-75) !important;
  padding: 0.35rem 0 !important;
  border-bottom: none !important;
  opacity: 0.85;
}

.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a.active {
  color: var(--accent) !important;
  opacity: 1;
  transform: scale(1.03);
}

/* Active color for hamburger lines */
.hbg.open span,
.hamburger-menu.active span {
  background: var(--accent) !important;
}

/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.wrap-wide {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.wrap-text {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2.5rem
}

.sp {
  padding: 90px 0
}

.sp-lg {
  padding: 110px 0
}

.bg-lift {
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--bd-8);
  border-bottom: 1px solid var(--bd-8)
}

.bg-lift-sm {
  background: rgba(255, 255, 255, 0.008);
  border-top: 1px solid var(--bd-6);
  border-bottom: 1px solid var(--bd-6)
}

.label {
  font-family: var(--ff-b);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem
}

.label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0
}

.label-accent {
  color: var(--accent)
}

.label-accent::before {
  background: currentColor
}

.label-center {
  justify-content: center
}

.label-center::before {
  display: block
}

.label-center::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0
}

.label-step {
  display: block;
  font-family: var(--ff-m);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 0.875rem
}

.bc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-b);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-50)
}

.bc a {
  transition: color 0.2s
}

.bc a:hover {
  color: var(--accent)
}

.bc span {
  color: var(--t-25)
}

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
.h1 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: normal;
  line-height: 1.2;
  color: var(--accent);
  text-shadow: 4px 4px 0px rgb(0, 0, 0)
}

.h2 {
  font-family: var(--ff-d);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: normal;
  line-height: 1.25;
  color: var(--accent);
  text-shadow: 3px 3px 0px rgb(0, 0, 0)
}

.h3 {
  font-family: var(--ff-b);
  font-size: clamp(1.0625rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--t-90)
}

.body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  color: var(--t-75);
  line-height: 1.7
}

.body-sm {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--t-50);
  line-height: 1.7
}

/* Frosted Glass pull quotes */
.pq {
  border-left: 3px solid var(--accent);
  padding: 1.25rem;
  margin: 2rem 0;
  max-width: 600px;
  background: rgba(205, 205, 205, 0.05);
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(8px);
}

.pq p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--t-88);
}

.pq-featured {
  border-left: 4px solid var(--accent);
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 640px;
  background: rgba(20, 20, 25, 0.6);
  border-radius: 0 20px 20px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 165, 0, 0.15);
  border-left: 4px solid var(--accent);
}

.pq-featured p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--t-90);
}

.h3-accented {
  position: relative;
  padding-left: 1.25rem
}

.h3-accented::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px
}

.lnk {
  color: var(--accent-lt);
  transition: color 0.2s
}

.lnk:hover {
  color: var(--t-100)
}

.trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: var(--ff-b);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-50)
}

.trust-sep {
  margin: 0 0.75rem;
  color: var(--t-25)
}

.proof-strip {
  max-width: 540px;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--t-50);
  line-height: 1.7
}

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #000;
  font-family: var(--ff-b);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 30px;
  transition: all 0.3s var(--ease);
  white-space: normal;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3)
}

.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.45)
}

.btn-primary .arr {
  transition: transform 0.15s;
  display: inline-block
}

.btn-primary:hover .arr {
  transform: translateX(4px)
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--ff-b);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--t-50);
  transition: color 0.2s
}

.btn-text:hover {
  color: var(--accent)
}

.btn-micro {
  font-family: var(--ff-m);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--t-50);
  margin-top: 1rem;
  display: block;
  text-align: center
}

/* ═══════════════════════════════════════════════════
   SECTION 1 - HERO (two-column layout)
═══════════════════════════════════════════════════ */
.hero {
  min-height: auto;
  padding: 140px 2.5rem 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.hero-left {
  position: relative;
  z-index: 10
}

.hero-byline {
  font-family: var(--ff-m);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-50);
  margin-top: 1.25rem
}

.hero-body {
  max-width: 540px;
  margin: 1.5rem 0 2rem
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap
}

/* Glassmorphism Hero diagram */
.hero-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5
}

.flow-node {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 250px
}

.flow-box {
  flex: 1;
  padding: 0.75rem 1.1rem;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-family: var(--ff-b);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--t-75);
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.flow-node:hover .flow-box {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.15);
  color: var(--t-100);
}

.flow-box.final {
  background: var(--accent-10);
  border-color: var(--accent-30);
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.1);
}

.flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 250px
}

.flow-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(255, 165, 0, 0.3), rgba(255, 165, 0, 0.05))
}

.flow-head {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 165, 0, 0.4)
}

.diagram-lbl {
  font-family: var(--ff-b);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-50);
  margin-bottom: 1.25rem;
  text-align: center
}

.diagram-cap {
  font-family: var(--ff-b);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-50);
  margin-top: 1.25rem;
  text-align: center
}

/* ═══════════════════════════════════════════════════
   SECTION 3 - WHAT CONTENT STRATEGY MEANS
═══════════════════════════════════════════════════ */
.def-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start
}

.border-list {
  list-style: none;
  border-left: 2px solid var(--accent-30);
  padding-left: 1.5rem
}

.border-list li {
  font-size: 0.95rem;
  color: var(--t-75);
  line-height: 1.65;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--bd-5);
  transition: color 0.2s;
  font-weight: 600
}

.border-list li:last-child {
  border-bottom: none
}

.border-list li:hover {
  color: var(--accent)
}

/* ═══════════════════════════════════════════════════
   SECTION 4 - FRAMEWORK (horizontal flow)
═══════════════════════════════════════════════════ */
.framework-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 3rem auto;
  max-width: 1000px;
  overflow-x: auto;
  padding: 1rem 0
}

.fw-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0
}

.fw-box {
  padding: 0.8rem 1.2rem;
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  min-width: 130px;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--t-75);
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.fw-node:hover .fw-box {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.2);
  color: var(--t-100);
}

.fw-box.accent-node {
  background: var(--accent-10);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 800
}

.fw-num {
  font-family: var(--ff-b);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--t-50)
}

.fw-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  flex-shrink: 0
}

.fw-arrow svg {
  width: 22px;
  height: 12px
}

.fw-arrow svg path {
  stroke: var(--accent);
  opacity: 0.6
}

.fw-arrow-down {
  display: none;
  justify-content: center;
  width: 100%;
  padding: 0.25rem 0;
  flex-shrink: 0
}

.fw-arrow-down svg {
  width: 12px;
  height: 22px
}

.fw-arrow-down svg path {
  stroke: var(--accent);
  opacity: 0.6
}

/* ═══════════════════════════════════════════════════
   SECTION 5 - PROCESS STEPS (Timeline layout)
═══════════════════════════════════════════════════ */
.process-header {
  margin-bottom: 3.5rem;
}

.steps-container {
  position: relative;
  padding-left: 4.5rem
}

.steps-line {
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(255, 165, 0, 0.1) 100%)
}

.step {
  position: relative;
  margin-bottom: 4rem;
}

.step:last-child {
  margin-bottom: 0
}

.step-num {
  position: absolute;
  left: -4.5rem;
  top: -0.125rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 1.25rem;
  color: var(--base);
  background: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
  border-radius: 50%;
  line-height: 1;
  z-index: 2
}

.step .h3 {
  margin-bottom: 0.875rem;
  margin-top: 0.1rem;
  color: var(--accent)
}

/* Comparison grid */
.cmp-interlude {
  margin-left: -4.5rem;
  margin-bottom: 4rem;
  margin-top: 2rem
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 165, 0, 0.15);
  border: 1px solid rgba(255, 165, 0, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cmp-l {
  background: rgba(20, 20, 25, 0.7)
}

.cmp-r {
  background: rgba(20, 20, 25, 0.45)
}

.cmp-h {
  padding: 1.5rem 2rem;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.cmp-h-dim {
  color: var(--t-50);
  margin-bottom: 0
}

.cmp-h-acc {
  color: var(--accent);
  border-bottom-color: rgba(255, 165, 0, 0.3);
  margin-bottom: 0
}

.cmp-row-dim {
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--t-50);
  opacity: 0.75;
  line-height: 1.5
}

.cmp-row-clr {
  padding: 0.9rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--t-90);
  line-height: 1.5;
  font-weight: 500
}

.cmp-row-dim:last-child,
.cmp-row-clr:last-child {
  border-bottom: none
}

/* ═══════════════════════════════════════════════════
   SECTION 8 - 2×2 CARD GRID (Glassmorphism layout)
═══════════════════════════════════════════════════ */
.clusters-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem
}

.cluster-card {
  background: rgba(20, 20, 25, 0.5);
  border: 1px solid rgba(255, 165, 0, 0.15);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 165, 0, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
  position: relative;
  animation: float 7s ease-in-out infinite;
}

.cluster-card:nth-child(2) {
  animation-delay: 1.5s;
  border-color: rgba(255, 165, 0, 0.25)
}

.cluster-card:nth-child(3) {
  animation-delay: 3s
}

.cluster-card:nth-child(4) {
  animation-delay: 4.5s;
  border-color: rgba(255, 165, 0, 0.25)
}

.cluster-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: shine 8s infinite;
  pointer-events: none;
}

.cluster-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 165, 0, 0.2);
}

.cluster-lbl {
  font-family: var(--ff-m);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem
}

.cluster-title {
  font-family: var(--ff-b);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--t-100);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em
}

.cluster-list {
  list-style: none
}

.cluster-list li {
  font-size: 0.9rem;
  color: var(--t-75);
  padding: 0.6rem 0;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  position: relative;
  padding-left: 1.25rem;
}

.cluster-list li::before {
  content: "✦";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 0.75rem
}

.cluster-list li:last-child {
  border-bottom: none
}

/* ═══════════════════════════════════════════════════
   SECTION 9 - WHAT WE DON'T DO
═══════════════════════════════════════════════════ */
.no-do-list {
  list-style: none;
  max-width: 680px;
  margin: 2rem auto 0
}

.no-do-list li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t-75);
  line-height: 1.8;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--bd-5);
  position: relative;
  padding-left: 1.75rem
}

.no-do-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: red;
  font-weight: bold;
  opacity: 0.8
}

.no-do-list li:last-child {
  border-bottom: none
}

.no-do-footer {
  max-width: 640px;
  margin: 2rem auto 0;
  font-size: 0.9375rem;
  color: var(--t-50);
  line-height: 1.7;
  text-align: center
}

/* ═══════════════════════════════════════════════════
   PROOF SECTION
═══════════════════════════════════════════════════ */
.proof-wrap {
  max-width: 640px;
  margin: 2.5rem auto 0
}

.proof-soft {
  font-size: 1rem;
  font-weight: 400;
  color: var(--t-75);
  line-height: 1.75;
  margin-bottom: 2.5rem
}

.proof-result-wrap {
  padding: 2rem;
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 12px;
  background: rgba(20, 20, 25, 0.55);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px)
}

.proof-note {
  font-family: var(--ff-m);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-25);
  margin-top: 1.25rem
}

/* ═══════════════════════════════════════════════════
   AI PATHS (Glass rows)
═══════════════════════════════════════════════════ */
.ai-paths {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 580px;
  margin: 2.5rem auto 0
}

.ai-path-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(255, 165, 0, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.ai-path-row:hover {
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(255, 165, 0, 0.15);
}

.ai-path-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: bold
}

.ai-path-label {
  font-size: 0.9rem;
  color: var(--t-75);
  flex: 1;
  line-height: 1.4;
  font-weight: 600
}

.ai-path-arrow {
  font-family: var(--ff-m);
  font-size: 0.8rem;
  color: var(--t-50)
}

.ai-path-outcome {
  font-family: var(--ff-b);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent-lt)
}

/* ═══════════════════════════════════════════════════
   FAQ (Frosted Accordion)
═══════════════════════════════════════════════════ */
.faq-list {
  border-top: 1px solid rgba(255, 165, 0, 0.15);
  max-width: 780px;
  margin: 2.5rem auto 0
}

.faq-item {
  border-bottom: 1px solid rgba(255, 165, 0, 0.15)
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  gap: 2rem;
  background: none;
  border: none;
  transition: all 0.2s
}

.faq-btn:hover {
  opacity: 0.85
}

.faq-q {
  font-family: var(--ff-b);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t-100);
  line-height: 1.4
}

.faq-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 165, 0, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-ico::before,
.faq-ico::after {
  content: '';
  position: absolute;
  border-radius: 2px;
  background: var(--accent);
  transition: transform 0.3s var(--ease-out)
}

.faq-ico::before {
  width: 10px;
  height: 2px
}

.faq-ico::after {
  width: 2px;
  height: 10px
}

.faq-item.open .faq-ico {
  border-color: var(--accent);
  background: var(--accent-10);
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3)
}

.faq-item.open .faq-ico::after {
  transform: scaleY(0)
}

.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out)
}

.faq-body-inner {
  padding-bottom: 1.75rem;
  font-size: 0.95rem;
  color: var(--t-75);
  line-height: 1.75;
  max-width: 700px;
  font-weight: 500
}

/* ═══════════════════════════════════════════════════
   CLOSING CTA & AUDIT FORM Redesign
═══════════════════════════════════════════════════ */
/* New Closing CTA Section based on screenshot design */
.closing-cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  z-index: 5;
  background: transparent;
}

.cta-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.cta-paragraph {
  font-family: var(--ff-b);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  font-weight: 400;
  color: var(--t-75);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-button-container {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #EFA500;
  color: #000000;
  font-family: var(--ff-b);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.1rem 2.2rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(232, 98, 42, 0.25);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}

.cta-btn:hover {
  background: #FFC04D;
  ;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 98, 42, 0.45);
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
  display: inline-block;
}

.cta-subtext {
  font-family: var(--ff-m);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--t-50);
  opacity: 0.8;
  margin-top: 1.5rem;
  text-transform: none;
}

/* ═══════════════════════════════════════════════════
   FOOTER (Unified Orange Strip)
═══════════════════════════════════════════════════ */
.page-footer {
  background: #FFA500;
  width: 100%;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-box {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  object-fit: contain;
  width: 100%;
  height: 100% !important;
}

.footer-logo-text {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.footer-copyright {
  position: absolute;
  bottom: 8px;
  left: 15px;
  font-size: 10px;
  font-weight: 400;
  color: #1a1a1a;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-contact-info {
  text-align: right;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  font-family: 'Montserrat', sans-serif;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  border-radius: 8px;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
}

.social-icon-btn.icon-whatsapp,
.social-icon-btn.icon-linkedin,
.social-icon-btn.icon-instagram {
  width: 55px !important;
  height: 55px !important;
  background: none !important;
  padding: 0 !important;
}

.social-icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL & TRANSITIONS
═══════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out)
}

.rv.in {
  opacity: 1;
  transform: translateY(0)
}

.rv-pq {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out)
}

.rv-pq.in {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: 0.05s
}

.d2 {
  transition-delay: 0.10s
}

.d3 {
  transition-delay: 0.15s
}

.d4 {
  transition-delay: 0.20s
}

.d5 {
  transition-delay: 0.25s
}

.cmp-col-fade {
  opacity: 0;
  transition: opacity 0.35s var(--ease-out)
}

.cmp-col-fade.in {
  opacity: 1
}

.cmp-col-2 {
  transition-delay: 0.15s
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE (Aligned to main page mobile rules)
═══════════════════════════════════════════════════ */
@media(max-width:960px) {

  .nav .nav-links,
  .nav .nav-cta {
    display: none
  }

  .hbg,
  .hamburger-menu {
    display: flex
  }

  .wrap,
  .wrap-wide,
  .wrap-text {
    padding: 0 1.75rem
  }

  .sp {
    padding: 5rem 0
  }

  .sp-lg {
    padding: 5.5rem 0
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 8rem 1.75rem 4rem;
  }

  .hero-left {
    max-width: 100%;
    min-width: 0
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch
  }

  .btn-primary {
    width: 100%;
    justify-content: center
  }

  .hero-diagram {
    max-width: 240px;
    margin: 0 auto
  }

  .def-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .clusters-2x2 {
    grid-template-columns: 1fr
  }

  .cmp-grid {
    grid-template-columns: 1fr
  }

  .framework-flow {
    flex-direction: column;
    align-items: center;
    overflow-x: visible;
    padding: 1rem 0;
    gap: 0;
  }

  .fw-arrow {
    display: none
  }

  .fw-arrow-down {
    display: flex
  }

  .fw-box {
    min-width: 200px;
    max-width: 260px
  }

  .steps-container {
    padding-left: 3rem
  }

  .steps-line {
    left: 0.875rem
  }

  .step-num {
    left: -3rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem
  }

  .cmp-interlude {
    margin-left: -3rem
  }

  .pq,
  .pq-featured {
    max-width: 100%;
    padding-left: 1rem
  }

  .no-do-list,
  .no-do-footer {
    max-width: 100%
  }

  .closing-cta {
    padding: 5rem 1.75rem
  }

  .trust-sep {
    display: none
  }

  .page-footer {
    flex-direction: column !important;
    text-align: center !important;
    gap: 24px !important;
    padding: 20px 14px 40px 14px !important;
  }

  .footer-left {
    flex-direction: column !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .footer-logo-box {
    order: 3 !important;
  }

  .footer-right {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .footer-contact-info {
    text-align: center !important;
  }

  .footer-social-icons {
    justify-content: center !important;
    gap: 16px !important;
  }

  .footer-copyright {
    position: static !important;
    margin-top: 10px !important;
    text-align: center !important;
  }
}

@media(max-width:640px) {

  section,
  .wrap,
  .wrap-wide,
  .wrap-text {
    overflow-x: hidden
  }

  .hero {
    padding: 6.5rem 1.25rem 3.5rem
  }

  .hero-diagram {
    display: none
  }

  .h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem)
  }

  .h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem)
  }

  .steps-container {
    padding-left: 2.5rem
  }

  .steps-line {
    left: 0.75rem
  }

  .step-num {
    left: -2.5rem;
    width: 1.875rem;
    height: 1.875rem;
    font-size: 0.9375rem
  }

  .cmp-interlude {
    margin-left: -2.5rem
  }

  .pq,
  .pq-featured {
    padding-left: 0.875rem
  }

  .closing-cta {
    padding: 4rem 1.25rem
  }

  .fw-box {
    min-width: 0;
    width: 100%;
    max-width: 100%
  }

  .framework-flow {
    width: 100%;
    padding: 1rem 0
  }

  .cta-card {
    padding: 0 1rem
  }
}

@media(prefers-reduced-motion:reduce) {

  .rv,
  .rv-pq,
  .cmp-col-fade {
    opacity: 1;
    transform: none;
    transition: none
  }

  .step {
    opacity: 1;
    transform: none;
    transition: none
  }

  .fw-node {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .steps-line {
    background: var(--bd-8) !important
  }
}

/* ═══════════════════════════════════════════════
   PREMIUM 3D ANIMATIONS & INTERACTION SYSTEM
   ═══════════════════════════════════════════════ */

/* 3D Tilt Card Component Styles */
.tilt-card-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.25s ease-out, border-color 0.25s ease-out !important;
}

/* Specular light overlay */
.tilt-card-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.055) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
  z-index: 5;
}

.tilt-card-3d:hover::after {
  opacity: 1;
}

/* Move direct children forward in Z space for 3D parallax depth */
.tilt-card-3d > * {
  transform: translateZ(25px);
}

/* 3D Hero Diagram & Split Visual Tilt settings */
.hero-diagram,
.split-visual {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease-out !important;
  cursor: pointer;
}

.split-visual {
  transition: opacity 0.4s var(--ease-out), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease-out !important;
}

.split-visual .split-panel-right {
  transform: translateZ(35px) !important;
  transition: transform 0.25s var(--ease-out), background-color 0.25s !important;
}

.split-visual .split-panel-left {
  transform: translateZ(12px) !important;
  transition: transform 0.25s var(--ease-out), background-color 0.25s !important;
}

.hero-diagram .fw-node,
.hero-diagram .flow-node {
  transform: translateZ(30px) !important;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s !important;
}

.hero-diagram .fw-node:hover,
.hero-diagram .flow-node:hover {
  transform: translateZ(45px) scale(1.03) !important;
}

.hero-diagram .fw-arrow,
.hero-diagram .flow-connector {
  transform: translateZ(12px) !important;
}

/* Ambient glow drops in background */
.glow-drop {
  position: fixed;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(150px);
  opacity: 0.10;
  will-change: transform;
}

.glow-drop-1 {
  top: 15%;
  left: -15%;
  background: var(--accent);
}

.glow-drop-2 {
  bottom: 10%;
  right: -10%;
  background: #6a0dad; /* tech-purple */
}

.glow-drop-3 {
  bottom: 40%;
  left: 35%;
  background: var(--accent-lt);
  opacity: 0.04;
}

/* Concentric Gyroscope / Chakra Animations */
.gyro-container {
  position: relative;
  width: 260px;
  height: 260px;
  transform-style: preserve-3d;
  animation: gyro-float 6s ease-in-out infinite alternate;
}

.gyro-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 165, 0, 0.25);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.gyro-ring::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.gyro-ring-1 {
  animation: gyro-rot-1 15s linear infinite;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.06), inset 0 0 25px rgba(255, 165, 0, 0.04);
}

.gyro-ring-2 {
  animation: gyro-rot-2 18s linear infinite reverse;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.08), inset 0 0 35px rgba(168, 85, 247, 0.04);
  border-color: rgba(168, 85, 247, 0.3);
}

.gyro-ring-3 {
  animation: gyro-rot-3 22s linear infinite;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.1), inset 0 0 20px rgba(255, 165, 0, 0.05);
}

.gyro-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, var(--accent-lt) 0%, var(--accent) 60%, transparent 100%);
  box-shadow: 0 0 25px var(--accent), 0 0 50px rgba(255, 165, 0, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(20px);
  animation: core-pulsate 3s ease-in-out infinite alternate;
}

@keyframes gyro-float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes gyro-rot-1 {
  0% { transform: rotateX(40deg) rotateY(45deg) rotateZ(0deg); }
  100% { transform: rotateX(40deg) rotateY(45deg) rotateZ(360deg); }
}

@keyframes gyro-rot-2 {
  0% { transform: rotateX(50deg) rotateY(-40deg) rotateZ(360deg); }
  100% { transform: rotateX(50deg) rotateY(-40deg) rotateZ(0deg); }
}

@keyframes gyro-rot-3 {
  0% { transform: rotateX(-35deg) rotateY(30deg) rotateZ(0deg); }
  100% { transform: rotateX(-35deg) rotateY(30deg) rotateZ(360deg); }
}

@keyframes core-pulsate {
  0% { transform: translate(-50%, -50%) translateZ(20px) scale(0.9); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) translateZ(20px) scale(1.1); opacity: 1; }
}

@media(prefers-reduced-motion:reduce) {
  .gyro-container, .gyro-ring, .gyro-core {
    animation: none !important;
  }
  .tilt-card-3d, .hero-diagram {
    transform: none !important;
    transition: none !important;
  }
}