/* ============================================================
   BlockchainX — White Label Tokenization Platform
   Design System CSS
   ============================================================ */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Epilogue:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary: #191A1E;
  --bg-secondary: #0F1013;
  --icon-bg: #2D1E5F;
  --text-light: #D9D9D9;
  --text-white: #FFFFFF;
  --accent-lavender: #A183E0;
  --accent-deep-purple: #4E1FA3;
  --accent-violet: #661EB9;
  --yellow: #F5D255;
  --mint: #36E7C4;
  --border-subtle: rgba(161, 131, 224, 0.18);
  --border-glass: rgba(255, 255, 255, 0.07);
  --glow-purple: rgba(102, 30, 185, 0.28);
  --glow-mint: rgba(54, 231, 196, 0.12);
  --card-glass: rgba(30, 32, 42, 0.85);
  --font-primary: 'Exo 2', sans-serif;
  --font-secondary: 'Epilogue', sans-serif;
  --section-pad-y: 110px;
  --section-pad-x: 80px;
  --radius-card: 16px;
  --radius-btn: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-secondary);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.2;
}

.hero-heading {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 800;
  padding-bottom: 0 !important;
}

.section-heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  padding-bottom: 0 !important;
}

.card-heading {
  font-size: 18px;
  font-weight: 600;
}

.body-text {
  font-family: var(--font-secondary);
  font-size: 15px !important;
  color: var(--text-light);
  line-height: 1.5;
}

.hero-subtext {
  font-family: var(--font-secondary);
  font-size: 15px !important;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(90deg, #F5D255 0%, #36E7C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Tag ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ---------- Section Layout ---------- */
.section-block {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}

.section-bg-primary {
  background-color: var(--bg-primary);
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}

.container-xl {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ---------- Grid Overlay Effect ---------- */
.grid-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(161, 131, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 131, 224, 0.04) 1px, transparent 1px);

  pointer-events: none;
  z-index: 0;
}

.section-block>.container-xl {
  position: relative;
  z-index: 1;
}

/* ---------- Radial Glow Accents ---------- */
.glow-top-left {
  position: absolute;
  top: -120px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(102, 30, 185, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-bottom-right {
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 231, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4E1FA3 0%, #661EB9 100%);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #661EB9 0%, #A183E0 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-gradient:hover::before {
  opacity: 1;
}

.btn-primary-gradient span {
  position: relative;
  z-index: 1;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-outline-light:hover {
  border-color: var(--accent-lavender);
  color: var(--accent-lavender);
  background: rgba(161, 131, 224, 0.08);
}

.btn-group-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: rgba(49, 52, 71, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(102, 30, 185, 0.2);
}

.glass-card-gradient-border {
  background: linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
    linear-gradient(135deg, #A183E0, #36E7C4) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--radius-card);
  padding: 28px;
  transition: var(--transition);
}

/* ---------- 3D Icon Placeholder (SVG-based) ---------- */
.icon-3d-wrap {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #2D1E5F;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  border: none;
  box-shadow: 0 4px 20px rgba(78, 31, 163, 0.35);
}

.icon-3d-wrap svg {
  width: 32px;
  height: 32px;
}

.icon-emoji {
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bare icon — no background box, just the emoji as an accent */
.icon-bare-wrap {
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1;
}

/* ---------- Section Intro Block ---------- */
.section-intro {
  max-width: 680px;
}

.section-intro-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--section-pad-x) 80px;
  background-color: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.hero-section .grid-overlay {
  display: none;
  opacity: 0.7;
}

.hero-content-col {
  padding-right: 40px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-glass);
}

.trust-stat {
  text-align: center;
}

.trust-stat-number {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
}

.trust-stat-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

/* Hero Dashboard Mockup */
.hero-dashboard {
  background: rgba(25, 26, 30, 0.95);
  border: 1px solid rgba(161, 131, 224, 0.25);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(161, 131, 224, 0.1);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

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

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

.dashboard-topbar {
  background: rgba(49, 52, 71, 0.8);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-glass);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F57;
}

.dot-yellow {
  background: #FEBC2E;
}

.dot-green {
  background: #28C840;
}

.topbar-title {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--text-light);
  margin-left: 10px;
  letter-spacing: 0.5px;
}

.dashboard-body {
  padding: 20px;
}

.dash-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dash-metric {
  background: rgba(49, 52, 71, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-metric-label {
  font-size: 10px;
  color: rgba(217, 217, 217, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-primary);
}

.dash-metric-value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.dash-metric-value.up {
  color: var(--mint);
}

.dash-metric-value.yellow {
  color: var(--yellow);
}

.dash-chart-area {
  background: rgba(49, 52, 71, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 14px;
}

.dash-chart-label {
  font-size: 10px;
  color: rgba(217, 217, 217, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 60px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #A183E0 0%, #4E1FA3 100%);
  transition: var(--transition);
  min-height: 8px;
}

.chart-bar.active {
  background: linear-gradient(180deg, #36E7C4 0%, #4E1FA3 100%);
}

.dash-token-row {
  display: flex;
  gap: 8px;
}

.dash-token-chip {
  flex: 1;
  background: rgba(78, 31, 163, 0.25);
  border: 1px solid rgba(161, 131, 224, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--font-primary);
}

.token-chip-name {
  font-size: 10px;
  color: var(--accent-lavender);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.token-chip-val {
  font-size: 13px;
  color: var(--text-white);
  font-weight: 700;
  margin-top: 2px;
}

.token-chip-change {
  font-size: 10px;
  color: var(--mint);
  margin-top: 2px;
}

.dash-compliance-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(54, 231, 196, 0.1);
  border: 1px solid rgba(54, 231, 196, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 10px;
}

.compliance-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.compliance-text {
  font-size: 11px;
  color: var(--mint);
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTION 2 — WHAT IS WHITE LABEL
   ============================================================ */
.flow-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  text-align: center;
  position: relative;
}

.flow-step-number {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.flow-step-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.flow-step-sub {
  font-size: 13px;
  color: rgba(217, 217, 217, 0.6);
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--accent-lavender);
  font-size: 20px;
}

/* ============================================================
   SECTION 3 — COMPANY INTRO
   ============================================================ */
.stat-pillar {
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-pillar:hover {
  background: rgba(78, 31, 163, 0.2);
  border-color: rgba(161, 131, 224, 0.4);
}

.stat-pillar-number {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(90deg, #F5D255 0%, #36E7C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-pillar-label {
  font-size: 12px;
  color: var(--text-light);
  font-family: var(--font-secondary);
  line-height: 1.4;
}

.compliance-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 31, 163, 0.15);
  border: 1px solid rgba(161, 131, 224, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-lavender);
  letter-spacing: 0.3px;
}

.compliance-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

/* ============================================================
   SECTION 4 — SERVICES
   ============================================================ */
.service-card {
  background: rgba(25, 26, 30, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78, 31, 163, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(161, 131, 224, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(78, 31, 163, 0.25);
}

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

.service-card-title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 14px !important;
  color: #d9d9d9;
  line-height: 1.7;
}

/* ============================================================
   SECTION 5 — CASE STUDIES
   ============================================================ */
.case-study-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 32px;
  overflow-x: auto;
}

.case-tab {
  padding: 14px 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: rgba(217, 217, 217, 0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}

.case-tab.active {
  color: var(--accent-lavender);
  border-bottom-color: var(--accent-lavender);
}

.case-tab:hover {
  color: var(--text-white);
}

.case-panel {
  display: none;
}

.case-panel.active {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.case-panel-content {
  flex: 1;
  min-width: 280px;
}

.case-panel-screen {
  flex: 1;
  min-width: 280px;
}

.case-label {
  display: inline-block;
  background: rgba(78, 31, 163, 0.25);
  border: 1px solid rgba(161, 131, 224, 0.25);
  color: var(--accent-lavender);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.case-heading {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.case-row-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.case-text {
  font-size: 14px !important;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-points {
  margin-bottom: 20px;
}

.case-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.case-point-dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* Platform Screen Mockup */
.platform-screen {
  background: rgba(25, 26, 30, 0.95);
  border: 1px solid rgba(161, 131, 224, 0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.platform-screen-header {
  background: rgba(49, 52, 71, 0.9);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-glass);
}

.screen-header-title {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-lavender);
  letter-spacing: 0.5px;
}

.platform-screen-body {
  padding: 16px;
}

.screen-table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 7px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.screen-table-row:hover {
  background: rgba(78, 31, 163, 0.12);
}

.screen-table-label {
  font-size: 12px;
  color: rgba(217, 217, 217, 0.7);
  font-family: var(--font-primary);
}

.screen-table-value {
  font-size: 12px;
  color: var(--text-white);
  font-weight: 600;
  font-family: var(--font-primary);
}

.screen-table-value.green {
  color: var(--mint);
}

.screen-table-value.yellow {
  color: var(--yellow);
}

.screen-table-value.purple {
  color: var(--accent-lavender);
}

/* ============================================================
   SECTION 6 — ADVANCED FEATURES
   ============================================================ */
.feature-card {
  background: rgba(25, 26, 30, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #4E1FA3, #36E7C4);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.feature-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
  box-shadow: 0 12px 40px rgba(78, 31, 163, 0.2);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 13px;
  color: rgba(217, 217, 217, 0.7);
  line-height: 1.65;
}

/* ============================================================
   SECTION 7 — AI FEATURES
   ============================================================ */
.ai-card {
  background: rgba(25, 26, 30, 0.85);
  border: 1px solid rgba(161, 131, 224, 0.15);
  border-radius: var(--radius-card);
  padding: 26px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A183E0, transparent);
}

.ai-card:hover {
  border-color: rgba(161, 131, 224, 0.4);
  box-shadow: 0 16px 48px rgba(78, 31, 163, 0.25);
  transform: translateY(-4px);
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(78, 31, 163, 0.4), rgba(54, 231, 196, 0.15));
  border: 1px solid rgba(161, 131, 224, 0.3);
  color: var(--mint);
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ai-card-title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.ai-card-desc {
  font-size: 13px !important;
  color: #d9d9d9;
  line-height: 1.7;
}

.ai-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.ai-metric-label {
  font-size: 11px;
  color: #d9d9d9;
  font-family: var(--font-primary);
}

.ai-metric-value {
  font-size: 13px;
  color: var(--mint);
  font-weight: 700;
  font-family: var(--font-primary);
}

/* ============================================================
   SECTION 8 — PROCESS
   ============================================================ */
.process-timeline {
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, #A183E0 20%, #36E7C4 80%, transparent);
}

.process-step {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
  position: relative;
}

.process-step-indicator {
  flex-shrink: 0;
  width: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E1FA3, #661EB9);
  border: 2px solid rgba(161, 131, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(78, 31, 163, 0.4);
}

.process-card {
  flex: 1;
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 24px 26px;
  transition: var(--transition);
}

.process-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  background: rgba(49, 52, 71, 0.8);
}

.process-card-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.process-card-desc {
  font-size: 14px;
  color: rgba(217, 217, 217, 0.7);
  line-height: 1.7;
  margin-bottom: 14px;
}

.process-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.process-point-tag {
  background: rgba(78, 31, 163, 0.2);
  border: 1px solid rgba(161, 131, 224, 0.2);
  color: var(--accent-lavender);
  font-size: 11px;
  font-family: var(--font-primary);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.process-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-glass);
}

.process-meta-item {
  font-size: 12px;
  color: rgba(217, 217, 217, 0.5);
  font-family: var(--font-primary);
}

.process-meta-item strong {
  color: var(--yellow);
}

/* ============================================================
   SECTION 9 — TECHNOLOGY LAYERS
   ============================================================ */

/* Sticky left + scrollable right layout */
.tech-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.tech-left {
  flex: 0 0 360px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.tech-right-scroll {
  flex: 1;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(161, 131, 224, 0.3) transparent;
}

.tech-right-scroll::-webkit-scrollbar {
  width: 4px;
}

.tech-right-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.tech-right-scroll::-webkit-scrollbar-thumb {
  background: rgba(161, 131, 224, 0.3);
  border-radius: 2px;
}

.tech-layer {
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.tech-layer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #4E1FA3, #36E7C4);
  opacity: 0;
  transition: var(--transition);
}

.tech-layer:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(49, 52, 71, 0.8);
}

.tech-layer:hover::before {
  opacity: 1;
}

.tech-layer-number {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: rgba(161, 131, 224, 0.4);
  width: 28px;
  flex-shrink: 0;
}

.tech-layer-icon {
  flex-shrink: 0;
}

.tech-layer-content {
  flex: 1;
}

.tech-layer-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.tech-layer-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-tag {
  background: rgba(25, 26, 30, 0.8);
  border: 1px solid rgba(161, 131, 224, 0.15);
  color: rgba(217, 217, 217, 0.7);
  font-size: 11px;
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 2px 9px;
  border-radius: 50px;
}

/* ============================================================
   SECTION 10 — PRICING
   ============================================================ */
.pricing-card {
  background: rgba(25, 26, 30, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(rgba(49, 52, 71, 0.9), rgba(49, 52, 71, 0.9)) padding-box,
    linear-gradient(135deg, #A183E0, #36E7C4) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 64px rgba(78, 31, 163, 0.3);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #4E1FA3, #661EB9);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-lavender);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: rgba(217, 217, 217, 0.6);
}

.pricing-ideal {
  font-size: 13px;
  color: #d9d9d9;
  margin-bottom: 8px;
}

.pricing-timeline {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 24px;
  font-weight: 600;
}

.pricing-divider {
  height: 1px;
  background: var(--border-glass);
  margin-bottom: 20px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.5;
}

.pricing-feature-check {
  width: 16px;
  height: 16px;
  background: rgba(54, 231, 196, 0.15);
  border: 1px solid rgba(54, 231, 196, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-feature-check svg {
  width: 8px;
  height: 8px;
}

/* ============================================================
   SECTION 11 — REVENUE
   ============================================================ */
.revenue-card {
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 26px 22px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.revenue-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F5D255, #36E7C4);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.revenue-card:hover {
  border-color: rgba(245, 210, 85, 0.3);
  transform: translateY(-4px);
}

.revenue-card:hover::after {
  transform: scaleX(1);
}

.revenue-card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.revenue-card-desc {
  font-size: 13px;
  color: rgba(217, 217, 217, 0.7);
  line-height: 1.7;
}

/* ============================================================
   SECTION 12 — REGULATORY
   ============================================================ */
.regulation-card {
  background: rgba(25, 26, 30, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  height: 100%;
  transition: var(--transition);
}

.regulation-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  background: rgba(49, 52, 71, 0.6);
}

.region-flag {
  font-size: 24px;
  margin-bottom: 10px;
}

.region-name {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.region-regs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.reg-tag {
  background: rgba(78, 31, 163, 0.2);
  border: 1px solid rgba(161, 131, 224, 0.2);
  color: var(--accent-lavender);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ============================================================
   SECTION 13 — INDUSTRIES
   ============================================================ */
.industry-card {
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  height: 100%;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(78, 31, 163, 0.18);
}

.industry-card-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.industry-card-what {
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.industry-card-desc {
  font-size: 13px;
  color: rgba(217, 217, 217, 0.65);
  line-height: 1.65;
}

/* ============================================================
   SECTION 14 — BENEFITS
   ============================================================ */
.benefit-card {
  background: rgba(25, 26, 30, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(49, 52, 71, 0.6);
}

.benefit-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(90deg, #F5D255, #36E7C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
}

.benefit-content {}

.benefit-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
}

.benefit-desc {
  font-size: 13px;
  color: rgba(217, 217, 217, 0.65);
  line-height: 1.65;
}

/* ============================================================
   SECTION 15 — WHY CHOOSE US
   ============================================================ */
.pillar-card {
  background: rgba(49, 52, 71, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4E1FA3, #36E7C4);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.pillar-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(78, 31, 163, 0.25);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14px;
  color: rgba(217, 217, 217, 0.7);
  line-height: 1.75;
}

/* ============================================================
   SECTION 16 — TESTIMONIALS
   ============================================================ */
/* ============================================================
   SECTION 16 — CLIENT REVIEWS
   ============================================================ */

/* Stats row */
.review-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.review-stat-block {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
}

.review-stat-number {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.review-stat-label {
  font-size: 13px;
  color: #d9d9d9;
}

.review-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-glass);
  flex-shrink: 0;
}

/* Review cards */
.review-card {
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(161, 131, 224, 0.25);
  box-shadow: 0 8px 32px rgba(78, 31, 163, 0.12);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mint);
}

.verified-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

.review-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 1px;
}

.review-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.review-text {
  font-size: 13px !important;
  color: #d9d9d9;
  line-height: 1.75;
  flex: 1;
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E1FA3, #36E7C4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-author-name {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
}

.review-author-role {
  font-size: 11px;
  color: rgba(217, 217, 217, 0.45);
}

/* ============================================================
   SECTION 17 — TEAM
   ============================================================ */
.team-card {
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid rgba(161, 131, 224, 0.15);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  transition: var(--transition);
}

.team-card:hover {
  border-color: rgba(161, 131, 224, 0.35);
  box-shadow: 0 12px 40px rgba(78, 31, 163, 0.2);
  transform: translateY(-2px);
}

.team-card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.team-photo-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #36E7C4 0%, #4E1FA3 50%, #A183E0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.consultant-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: rgba(161, 131, 224, 0.6);
  border-radius: 50%;
}

.team-info {
  flex: 1;
}

.team-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 14px;
}

.team-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #4E1FA3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
}

.team-linkedin-btn:hover {
  background: #4E1FA3;
  border-color: rgba(161, 131, 224, 0.8);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(78, 31, 163, 0.4);
}

/* ============================================================
   SECTION 18 — FAQ
   ============================================================ */
.faq-item {
  background: rgba(49, 52, 71, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(49, 52, 71, 0.7);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(161, 131, 224, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--accent-lavender);
}

.faq-item.open .faq-icon {
  background: rgba(78, 31, 163, 0.3);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 14px;
  color: #d9d9d9;
  line-height: 1.8;
  font-family: var(--font-secondary);
}

.faq-item.open .faq-answer {
  display: block;
}
.getintochform .form-control.enquiry-type {
    background: transparent !important;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  padding: 100px var(--section-pad-x);
  background: linear-gradient(135deg, rgba(78, 31, 163, 0.3) 0%, rgba(25, 26, 30, 0.95) 50%, rgba(54, 231, 196, 0.08) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(161, 131, 224, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(161, 131, 224, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.final-cta-heading {
  font-family: var(--font-primary);
  font-size: clamp(30px, 4vw, 32px) !important;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-bottom: 0 !important;
}

.final-cta-sub {
  font-family: var(--font-secondary);
  font-size: 15px !important;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.final-cta-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-bx {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 80px;
  background: rgba(25, 26, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.navbar-brand .brand-accent {
  background: linear-gradient(90deg, #F5D255, #36E7C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTION SPACING UTILITY
   ============================================================ */
.mb-section-title {
  margin-bottom: 56px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-48 {
  margin-top: 48px;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --section-pad-x: 48px;
    --section-pad-y: 90px;
  }

  .navbar-bx {
    padding: 14px 48px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-pad-x: 32px;
    --section-pad-y: 72px;
  }

  .navbar-bx {
    padding: 12px 32px;
  }

  .hero-section {
    padding: 100px 32px 60px;
  }

  .hero-content-col {
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .process-timeline::before {
    left: 20px;
  }

  .process-step-number {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .process-step-indicator {
    width: 40px;
  }

  .tech-layout {
    flex-direction: column;
    gap: 36px;
  }

  .tech-left {
    position: static;
    flex: none;
    width: 100%;
  }

  .tech-right-scroll {
    max-height: 420px;
  }
  .final-cta-heading {
  font-size: 26px !important;
}
}

@media (max-width: 768px) {
  :root {
    --section-pad-x: 20px;
    --section-pad-y: 56px;
  }

  .navbar-bx {
    padding: 12px 20px;
  }

  .hero-section {
    padding: 90px 20px 50px;
    min-height: auto;
  }

  .dash-metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar {
    gap: 16px;
  }

  .hero-trust-bar {
    gap: 14px;
  }

  .trust-divider {
    display: none;
  }

  .case-panel.active {
    flex-direction: column;
  }

  .process-step {
    flex-direction: column;
  }

  .process-timeline::before {
    display: none;
  }

  .pricing-card {
    margin-bottom: 20px;
  }

  .flow-connector {
    transform: rotate(90deg);
  }
  .final-cta-heading {
  font-size: 20px !important;
}
}

@media (max-width: 480px) {

  .btn-primary-gradient,
  .btn-outline-light {
    padding: 12px 22px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .btn-group-inline {
    flex-direction: column;
  }

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

  .hero-heading {
    font-size: 28px;
  }
  .final-cta-heading {
  font-size: 18px !important;
}
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: #4E1FA3;
  border-radius: 3px;
}

/* Selection */
::selection {
  background: rgba(161, 131, 224, 0.3);
  color: var(--text-white);
}



/* === V2 additions === */

/* ============================================================
   BLOCKCHAINX V2 — DESIGN SYSTEM
   ============================================================ */
:root {
  --bg-a: #191A1E;
  --bg-b: #0F1013;
  --yellow: #F5D255;
  --mint: #36E7C4;
  --lavender: #A183E0;
  --purple-d: #4E1FA3;
  --purple-v: #661EB9;
  --icon-bg: #2D1E5F;
  --text: #D9D9D9;
  --text-dim: #d9d9d9;
  --border: rgba(255, 255, 255, 0.07);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-btn: 10px;
  --font-h: 'Exo 2', sans-serif;
  --font-b: 'Epilogue', sans-serif;
  --grad: linear-gradient(90deg, #F5D255, #36E7C4);
  --trans: all 0.25s ease;
  --section-py: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-a);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* ── Scroll fade ── */
.v2-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.v2-visible {
  opacity: 1;
  transform: none;
}

/* ── Utility ── */
.v2-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.v2-body {
  font-size: 15px !important;
  color: var(--text-dim);
  line-height: 1.8;
}

.v2-stag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow);
  text-transform: uppercase;
}

.v2-stag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--yellow);
}

.v2-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.v2-bg-a {
  background: var(--bg-a);
}

.v2-bg-b {
  background: var(--bg-b);
}

.v2-grid-bg {
  display: none
}

.v2-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.v2-glow--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(78, 31, 163, 0.18) 0%, transparent 70%);
}

.v2-glow--left {
  top: 20%;
  left: -200px;
  background: radial-gradient(circle, rgba(78, 31, 163, 0.15) 0%, transparent 70%);
}

.v2-glow--right {
  top: 20%;
  right: -200px;
  background: radial-gradient(circle, rgba(54, 231, 196, 0.08) 0%, transparent 70%);
}

/* ── Buttons ── */
.v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple-d), var(--purple-v));
  color: #fff;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.v2-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}

.v2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}

.v2-btn-ghost:hover {
  border-color: var(--lavender);
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.v2-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(15, 16, 19, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

.v2-brand {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}

.v2-brand span {
  color: var(--yellow);
}

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

.v2-nav-links a {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  transition: var(--trans);
}

.v2-nav-links a:hover {
  color: #fff;
}

/* ============================================================
   S1 — HERO  (centred, full-width)
   ============================================================ */
.v2-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-a);
}

.v2-hero .v2-grid-bg {
  display: none
}

.v2-hero-tag {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.v2-hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.v2-hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 36px;
}

.v2-hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.v2-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.v2-hstat {
  flex: 1;
  padding: 22px 20px;
  text-align: center;
}

.v2-hstat-n {
  display: block;
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.v2-hstat-n em {
  color: var(--mint);
  font-style: normal;
}

.v2-hstat-l {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 5px;
}

.v2-hstat-sep {
  width: 1px;
  background: var(--border);
  height: 50px;
  flex-shrink: 0;
}

/* ============================================================
   S2 — WHAT IS  (horizontal flow)
   ============================================================ */
.v2-split-intro {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.v2-split-intro>div {
  flex: 0 0 420px;
}

.v2-split-para {
  flex: 1;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.85;
  padding-top: 8px;
}

.v2-flow-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.v2-flow-step {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--trans);
}

.v2-flow-step:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(78, 31, 163, 0.08);
}

.v2-flow-step--accent {
  border-color: rgba(54, 231, 196, 0.2);
  background: rgba(54, 231, 196, 0.04);
}

.v2-flow-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--lavender);
  font-size: 22px;
  flex-shrink: 0;
}

.v2-flow-num {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lavender);
}

.v2-flow-icon {
  font-size: 28px;
  line-height: 1;
  margin: 4px 0;
}

.v2-flow-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.v2-flow-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   S3 — COMPANY  (stat wall top)
   ============================================================ */
.v2-statwall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}

.v2-statwall-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}

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

.v2-statwall-n {
  font-family: var(--font-h);
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.v2-statwall-l {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
}

.v2-company-body {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.v2-company-left {
  flex: 0 0 360px;
}

.v2-company-right {
  flex: 1;
}

.v2-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.v2-cert {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(54, 231, 196, 0.07);
  border: 1px solid rgba(54, 231, 196, 0.2);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ============================================================
   S4 — SERVICES  (vertical tab panel)
   ============================================================ */
.v2-svc-layout {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.v2-svc-tabs {
  flex: 0 0 260px;
  border-right: 1px solid var(--border);
}

.v2-svc-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--trans);
}

.v2-svc-tab:last-child {
  border-bottom: none;
}

.v2-svc-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.v2-svc-tab.active {
  background: rgba(78, 31, 163, 0.2);
  color: #fff;
  border-left: 3px solid var(--purple-v);
}

.v2-svc-panels {
  flex: 1;
}

.v2-svc-panel {
  display: none;
  padding: 40px 44px;
}

.v2-svc-panel.active {
  display: block;
}

.v2-svc-panel-icon {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
}

.v2-svc-panel-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.v2-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.v2-stag2 {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(78, 31, 163, 0.2);
  border: 1px solid rgba(161, 131, 224, 0.2);
  color: var(--lavender);
}

/* ============================================================
   S5 — CASE STUDIES  (horizontal scroll)
   ============================================================ */
.v2-cases-scroll-wrap {
  overflow-x: auto;
  padding: 0 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(161, 131, 224, 0.3) transparent;
}

.v2-cases-scroll-wrap::-webkit-scrollbar {
  height: 4px;
}

.v2-cases-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(161, 131, 224, 0.3);
  border-radius: 2px;
}

.v2-cases-track {
  display: flex;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1320px)/2));
  min-width: max-content;
}

.v2-case-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--trans);
}

.v2-case-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
  transform: translateY(-4px);
}

.v2-case-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lavender);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.v2-case-title {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.v2-case-results {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 24px;
}

.v2-case-result {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.v2-case-result:last-child {
  border-right: none;
}

.v2-case-result-n {
  display: block;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
}

.v2-case-result-l {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ============================================================
   S6 — FEATURES  (numbered grid)
   ============================================================ */
.v2-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.v2-feat-item {
  background: var(--bg-b);
  padding: 32px 28px;
  position: relative;
  transition: var(--trans);
}

.v2-feat-item:hover {
  background: rgba(78, 31, 163, 0.1);
}

.v2-feat-n {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.v2-feat-icon {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
}

.v2-feat-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.v2-feat-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ============================================================
   S7 — AI FEATURES  (wide row list)
   ============================================================ */
.v2-ai-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-ai-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--trans);
}

.v2-ai-row:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(78, 31, 163, 0.07);
}

.v2-ai-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  text-align: center;
}

.v2-ai-content {
  flex: 1;
}

.v2-ai-badge {
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mint);
  background: rgba(54, 231, 196, 0.1);
  border: 1px solid rgba(54, 231, 196, 0.2);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 6px;
}

.v2-ai-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.v2-ai-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
}

.v2-ai-metric {
  flex-shrink: 0;
  text-align: right;
  min-width: 130px;
}

.v2-ai-mn {
  display: block;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
}

.v2-ai-ml {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}

/* ============================================================
   S8 — PROCESS  (zigzag / alternating)
   ============================================================ */
.v2-zz-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.v2-zz-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(161, 131, 224, 0.3) 10%, rgba(161, 131, 224, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

.v2-zz-step {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
}

.v2-zz-left {
  flex-direction: row;
}

.v2-zz-right {
  flex-direction: row-reverse;
}

.v2-zz-num {
  flex: 0 0 80px;
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  z-index: 1;
}

.v2-zz-card {
  flex: 1;
  max-width: calc(50% - 80px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: var(--trans);
}

.v2-zz-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(78, 31, 163, 0.07);
}

.v2-zz-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.v2-zz-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}

.v2-zz-meta {
  display: flex;
  gap: 20px;
  font-family: var(--font-h);
  font-size: 11px;
  color: var(--lavender);
  font-weight: 600;
}

/* ============================================================
   S9 — TECH GRID  (2x5 card grid)
   ============================================================ */
.v2-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.v2-tech-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--trans);
}

.v2-tech-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
}

.v2-tech-card-head {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.v2-ttag {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(25, 26, 30, 0.8);
  border: 1px solid rgba(161, 131, 224, 0.15);
  color: rgba(217, 217, 217, 0.7);
}

/* ============================================================
   S10 — PRICING  (comparison table)
   ============================================================ */
.v2-price-table-wrap {
  overflow-x: auto;
}

.v2-price-table {
  width: 100%;
  border-collapse: collapse;
}

.v2-price-table thead tr {
  background: rgba(255, 255, 255, 0.03);
}

.v2-price-table th,
.v2-price-table td {
  padding: 16px 20px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.v2-price-table th {
  text-align: center;
}

.v2-price-table td:first-child {
  font-family: var(--font-h);
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}

.v2-price-table td {
  text-align: center;
  color: var(--text);
}

.v2-price-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.v2-pt-feature-col {
  text-align: left !important;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 28%;
}

.v2-pt-plan {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.v2-pt-price {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-pt-time {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.v2-pt-featured {
  background: rgba(78, 31, 163, 0.12) !important;
  border-color: rgba(161, 131, 224, 0.25) !important;
}

.v2-pt-badge {
  font-family: var(--font-h);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mint);
  background: rgba(54, 231, 196, 0.1);
  border: 1px solid rgba(54, 231, 196, 0.2);
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}

.v2-pt-cta-row td {
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
}

/* ============================================================
   S11 — REVENUE  (left text + right icon list)
   ============================================================ */
.v2-rev-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.v2-rev-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}

.v2-rev-item:hover {
  border-color: rgba(161, 131, 224, 0.25);
  background: rgba(78, 31, 163, 0.05);
}

.v2-rev-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.v2-rev-title {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.v2-rev-desc {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   S12 — REGULATORY  (3x2 flag grid)
   ============================================================ */
.v2-reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.v2-reg-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: var(--trans);
}

.v2-reg-card:hover {
  border-color: rgba(161, 131, 224, 0.25);
}

.v2-reg-flag {
  display: none;
}

.v2-reg-country {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.v2-reg-flag-inline {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.v2-reg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  margin-top: 14px;
}

.v2-reg-tags span {
  font-size: 11px;
  font-family: var(--font-h);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(78, 31, 163, 0.15);
  border: 1px solid rgba(161, 131, 224, 0.2);
  color: var(--lavender);
}

.v2-reg-sub {
  font-size: 13px !important;
  color: #d9d9d9;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   S13 — INDUSTRIES  (bento grid)
   ============================================================ */
.v2-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.v2-bento-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: var(--trans);
}

.v2-bento-item:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(78, 31, 163, 0.08);
}

.v2-bento-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.v2-bento-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.v2-bento-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   S14 — BENEFITS  (2-col checklist)
   ============================================================ */
.v2-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.v2-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}

.v2-benefit:hover {
  border-color: rgba(161, 131, 224, 0.25);
  background: rgba(78, 31, 163, 0.05);
}

.v2-benefit-num {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
}

.v2-benefit-title {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.v2-benefit-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   S15 — WHY US  (full-width banner + pillars)
   ============================================================ */
.v2-whyus-banner {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  position: relative;
  overflow: hidden;
}

.v2-whyus-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.v2-whyus-pillar {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: var(--trans);
}

.v2-whyus-pillar:last-child {
  border-right: none;
}

.v2-whyus-pillar:hover {
  background: rgba(78, 31, 163, 0.1);
}

.v2-whyus-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.v2-whyus-pillar-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.v2-whyus-pillar-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   S16 — REVIEWS  (left stat col + right masonry)
   ============================================================ */
.v2-reviews-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.v2-reviews-left {
  flex: 0 0 280px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.v2-review-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.v2-rstat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.v2-rstat-n {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
  flex-shrink: 0;
}

.v2-rstat-l {
  font-size: 12px;
  color: var(--text-dim);
}

.v2-reviews-cards {
  flex: 1;
  columns: 2;
  gap: 12px;
}

.v2-rcard {
  break-inside: avoid;
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  transition: var(--trans);
}

.v2-rcard:hover {
  border-color: rgba(161, 131, 224, 0.25);
}

.v2-rcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.v2-rcard-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint);
}

.v2-rdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

.v2-rcard-stars {
  color: var(--yellow);
  font-size: 13px;
}

.v2-rcard-title {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.v2-rcard-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}

.v2-rcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v2-rav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E1FA3, #36E7C4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.v2-ran {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.v2-rar {
  font-size: 11px;
  color: var(--text-dim);
}

/* ============================================================
   S17 — TEAM  (horizontal cards)
   ============================================================ */
.v2-team-card {
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--trans);
}

.v2-team-card:hover {
  border-color: rgba(161, 131, 224, 0.25);
}

.v2-team-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e1530, #2d1e5f);
  border: 1px solid rgba(161, 131, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: rgba(161, 131, 224, 0.6);
}

.v2-team-name {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.v2-team-role {
  font-size: 13px;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 14px;
}

.v2-team-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(217, 217, 217, 0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--trans);
}

.v2-team-li:hover {
  background: rgba(78, 31, 163, 0.3);
  border-color: rgba(161, 131, 224, 0.4);
  color: #fff;
}

/* ============================================================
   S18 — FAQ  (2-col: sticky left, accordion right)
   ============================================================ */
.v2-faq-item {
  border-bottom: 1px solid var(--border);
}

.v2-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
}

.v2-faq-q span:first-child {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  transition: var(--trans);
}

.v2-faq-q:hover span:first-child {
  color: var(--lavender);
}

.v2-faq-ico {
  font-size: 20px;
  color: var(--lavender);
  flex-shrink: 0;
  font-weight: 300;
  transition: var(--trans);
}

.v2-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.v2-faq-item.open .v2-faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.v2-cta-section {
  padding: 120px 0;
  background: var(--bg-a);
  position: relative;
  overflow: hidden;
}

.v2-cta-h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

/* ============================================================
   FOOTER
   ============================================================ */
.v2-footer {
  padding: 32px 0;
  background: var(--bg-b);
  border-top: 1px solid var(--border);
}

.v2-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.v2-footer-links a {
  font-family: var(--font-h);
  font-size: 13px;
  color: var(--text-dim);
  transition: var(--trans);
}

.v2-footer-links a:hover {
  color: #fff;
}

.v2-footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .v2-tech-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  :root {
    --section-py: 72px;
  }

  .v2-nav {
    padding: 16px 24px;
  }

  .v2-split-intro {
    flex-direction: column;
    gap: 24px;
  }

  .v2-split-intro>div {
    flex: none;
    width: 100%;
  }

  .v2-statwall {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-statwall-item:nth-child(2) {
    border-right: none;
  }

  .v2-company-body {
    flex-direction: column;
    gap: 36px;
  }

  .v2-company-left {
    flex: none;
    width: 100%;
  }

  .v2-svc-layout {
    flex-direction: column;
  }

  .v2-svc-tabs {
    flex: none;
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
  }

  .v2-svc-tab {
    flex: 0 0 auto;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .v2-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-zz-timeline::before {
    display: none;
  }

  .v2-zz-step {
    flex-direction: column !important;
    gap: 16px;
  }

  .v2-zz-num {
    text-align: left;
    flex: none;
  }

  .v2-zz-card {
    max-width: 100%;
    width: 100%;
  }

  .v2-reg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-benefits-grid {
    grid-template-columns: 1fr;
  }

  .v2-whyus-banner {
    padding: 36px 28px;
  }

  .v2-whyus-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .v2-whyus-pillar:nth-child(2) {
    border-right: none;
  }

  .v2-reviews-layout {
    flex-direction: column;
    gap: 36px;
  }

  .v2-reviews-left {
    position: static;
    flex: none;
    width: 100%;
  }

  .v2-review-stats {
    flex-direction: row;
  }

  .v2-rstat {
    flex: 1;
  }

  .v2-reviews-cards {
    columns: 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  .v2-flow-row {
    flex-direction: column;
  }

  .v2-flow-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .v2-ai-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .v2-ai-metric {
    text-align: left;
  }

  .v2-feat-grid {
    grid-template-columns: 1fr;
  }

  .v2-reg-grid {
    grid-template-columns: 1fr;
  }

  .v2-bento {
    grid-template-columns: 1fr;
  }

  .v2-hero-stats {
    flex-direction: column;
  }

  .v2-hstat-sep {
    width: 100%;
    height: 1px;
  }

  .v2-review-stats {
    flex-direction: column;
  }

  .v2-whyus-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .v2-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .v2-footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .v2-tech-grid {
    grid-template-columns: 1fr;
  }

  .v2-price-table th,
  .v2-price-table td {
    padding: 10px 12px;
    font-size: 12px;
  }
}



/* === V4 additions === */

/* ============================================================
   BLOCKCHAINX V3 — DESIGN SYSTEM
   ============================================================ */
:root {
  --a: #191A1E;
  --b: #0F1013;
  --yellow: #F5D255;
  --mint: #36E7C4;
  --lav: #A183E0;
  --pd: #4E1FA3;
  --pv: #661EB9;
  --text: #D9D9D9;
  --dim: #D9D9D9;
  --border: rgba(255, 255, 255, 0.07);
  --border-h: rgba(161, 131, 224, 0.3);
  --radius: 12px;
  --radius-lg: 18px;
  --rbtn: 10px;
  --fh: 'Exo 2', sans-serif;
  --fb: 'Epilogue', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --grad: linear-gradient(90deg, #F5D255, #36E7C4);
  --tr: all 0.22s ease;
  --py: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--a);
  color: var(--text);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none
}

/* ── fade-in ── */
.v3-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease
}

.v3-vis {
  opacity: 1;
  transform: none
}

/* ── utils ── */
.v3-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.v3-h2 {
  font-family: var(--fh);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  padding-bottom: 0 !important;
}

.v3-body {
  font-size: 15px !important;
  color: var(--dim);
  line-height: 1.85
}

.v3-stag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--yellow);
  text-transform: uppercase
}

.v3-stag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--yellow);
  display: block
}

.v3-section {
  padding: var(--py) 0;
  position: relative;
  overflow: hidden
}

.v3-bg-a {
  background: var(--a)
}

.v3-bg-b {
  background: var(--b)
}

.v3-grid {
  display: none
}

.v3-glow-left {
  position: absolute;
  left: -200px;
  top: 30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 31, 163, 0.18)0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none
}

.v3-glow-right {
  position: absolute;
  right: -200px;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 231, 196, 0.1)0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none
}

.v3-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 31, 163, 0.15)0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none
}

/* ── buttons ── */
.v3-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pd), var(--pv));
  color: #fff;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--rbtn);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap
}

.v3-btn-primary:hover {
  opacity: .88;
  transform: translateY(-1px);
  color: #fff
}

.v3-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--rbtn);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap
}

.v3-btn-outline:hover {
  border-color: var(--lav);
  color: #fff
}

/* section split head */
.v3-sec-head-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.v3-sec-head-split>div {
  flex: 0 0 420px
}

.v3-sec-head-body {
  flex: 1;
  padding-bottom: 4px
}

/* ============================================================
   NAVBAR
   ============================================================ */
.v3-nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px
}

.v3-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 16, 19, 0.85);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 14px 24px
}

.v3-brand {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 900;
  color: #fff
}

.v3-brand span {
  color: var(--yellow)
}

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

.v3-nav-links a {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  transition: var(--tr)
}

.v3-nav-links a:hover {
  color: #fff
}

.v3-btn-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pd), var(--pv));
  color: #fff;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--tr)
}

.v3-btn-cta:hover {
  opacity: .88;
  color: #fff
}

/* ============================================================
   S1 — HERO  (left-aligned split)
   ============================================================ */
.v3-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--a)
}

.v3-noise {
  display: none
}

.v3-hero-glow {
  position: absolute;
  top: 20%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 31, 163, 0.22)0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none
}

.v3-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1
}

.v3-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 24px
}

.v3-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.v3-hero-h1 {
  font-family: var(--fh);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px
}

.v3-hero-p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px
}

.v3-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.v3-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px
}

.v3-trust-pill {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px
}

.v3-trust-n {
  color: #fff;
  font-weight: 800
}

.v3-compliance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  color: var(--mint)
}

/* Terminal */
.v3-terminal {
  background: #0a0b0e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(78, 31, 163, 0.15)
}

.v3-terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07)
}

.v3-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0
}

.v3-dot-r {
  background: #FF5F57
}

.v3-dot-y {
  background: #FEBC2E
}

.v3-dot-g {
  background: #28C840
}

.v3-terminal-title {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--dim);
  margin-left: 8px
}

.v3-terminal-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.v3-tline {
  font-family: var(--fm);
  font-size: 13px;
  line-height: 1.6
}

.v3-tline-gap {
  margin-top: 10px
}

.v3-tc-dim {
  color: rgba(255, 255, 255, 0.25)
}

.v3-tc-cmd {
  color: #A183E0
}

.v3-tc-arg {
  color: #F5D255
}

.v3-tc-ok {
  color: #36E7C4
}

.v3-tc-info {
  color: #A183E0
}

.v3-tc-txt {
  color: rgba(217, 217, 217, 0.75)
}

.v3-tc-bold {
  color: #fff;
  font-weight: 600
}

.v3-tc-cursor {
  color: var(--mint);
  animation: blink 1.1s step-end infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* floating metric cards */
.v3-float-card {
  position: absolute;
  background: rgba(20, 22, 30, 0.92);
  border: 1px solid rgba(161, 131, 224, 0.25);
  border-radius: 10px;
  padding: 12px 18px;
  backdrop-filter: blur(12px)
}

.v3-fc-label {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 3px
}

.v3-fc-value {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 800;
  color: #fff
}

.v3-fc-up {
  color: var(--mint);
  font-size: 12px
}

.v3-hero-right {
  position: relative;
  padding: 24px 0
}

.v3-fc-tl {
  top: 0;
  left: -20px
}

.v3-fc-br {
  bottom: 0;
  right: -10px
}

/* ============================================================
   S2 — WHAT IS
   ============================================================ */
.v3-what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.v3-what-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px
}

.v3-what-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--tr)
}

.v3-what-card:hover {
  border-color: var(--border-h);
  background: rgba(78, 31, 163, 0.06)
}

.v3-what-card-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 36px;
  text-align: center
}

.v3-what-card strong {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px
}

.v3-what-card p {
  font-size: 13px !important;
  color: var(--dim);
  line-height: 1.7;
  margin: 0
}

/* right flow visual */
.v3-flow-visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-fv-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--tr)
}

.v3-fv-step:last-child {
  border-bottom: none
}

.v3-fv-step:hover {
  background: rgba(78, 31, 163, 0.06)
}

.v3-fv-step--accent {
  background: rgba(54, 231, 196, 0.04)
}

.v3-fv-num {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--lav);
  width: 28px;
  flex-shrink: 0
}

.v3-fv-connector {
  height: 1px;
  background: linear-gradient(90deg, var(--pd), transparent);
  display: none
}

.v3-fv-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.v3-fv-sub {
  font-size: 12px;
  color: var(--dim)
}

/* ============================================================
   S3 — COMPANY
   ============================================================ */
.v3-company-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-company-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border)
}

.v3-company-headline {
  padding: 40px 44px;
  border-right: 1px solid var(--border)
}

.v3-company-stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0
}

.v3-csb-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.v3-csb-item:nth-child(2) {
  border-right: none
}

.v3-csb-item:nth-child(3) {
  border-bottom: none
}

.v3-csb-item:nth-child(4) {
  border-right: none;
  border-bottom: none
}

.v3-csb-n {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.v3-csb-l {
  font-size: 12px;
  color: var(--dim);
  margin-top: 5px
}

.v3-company-body {
  padding: 44px
}

.v3-cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.v3-cert {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--mint);
  background: rgba(54, 231, 196, 0.07);
  border: 1px solid rgba(54, 231, 196, 0.2);
  padding: 5px 12px;
  border-radius: 50px
}

/* ============================================================
   S4 — SERVICES (accordion)
   ============================================================ */
.v3-acc-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-acc-item {
  border-bottom: 1px solid var(--border)
}

.v3-acc-item:last-child {
  border-bottom: none
}

.v3-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--tr)
}

.v3-acc-trigger:hover {
  background: rgba(255, 255, 255, 0.02)
}

.v3-acc-item.open .v3-acc-trigger {
  background: rgba(78, 31, 163, 0.08)
}

.v3-acc-icon {
  font-size: 22px;
  flex-shrink: 0
}

.v3-acc-label {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex: 1
}

.v3-acc-tags-inline {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.v3-acc-tags-inline span {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(78, 31, 163, 0.15);
  border: 1px solid rgba(161, 131, 224, 0.15);
  color: var(--lav)
}

.v3-acc-chevron {
  color: var(--lav);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease
}

.v3-acc-item.open .v3-acc-chevron {
  transform: rotate(180deg)
}

.v3-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 24px 0 62px
}

.v3-acc-item.open .v3-acc-body {
  max-height: 400px;
  padding: 0 24px 28px 62px
}

/* ============================================================
   S5 — CASE STUDIES  (2x2 grid)
   ============================================================ */
.v3-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.v3-case-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.v3-case-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0;
  transition: var(--tr)
}

.v3-case-item:hover {
  border-color: var(--border-h);
  transform: translateY(-3px)
}

.v3-case-item:hover::before {
  opacity: 1
}

.v3-case-meta {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--lav);
  text-transform: uppercase;
  margin-bottom: 10px
}

.v3-case-title {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3
}

.v3-case-nums {
  display: flex;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden
}

.v3-cn {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.v3-cn:last-child {
  border-right: none
}

.v3-cn-n {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  display: block
}

.v3-cn-l {
  font-size: 11px;
  color: var(--dim);
  display: block;
  margin-top: 2px
}

/* ============================================================
   S6 — FEATURES (ruled rows)
   ============================================================ */
.v3-feat-rows {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-feat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--tr)
}

.v3-feat-row:last-child {
  border-bottom: none
}

.v3-feat-row:hover {
  background: rgba(78, 31, 163, 0.06)
}

.v3-fr-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  text-align: center
}

.v3-fr-content {
  flex: 1
}

.v3-fr-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px
}

.v3-fr-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65
}

.v3-fr-num {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .25;
  flex-shrink: 0;
  min-width: 50px;
  text-align: right
}

/* ============================================================
   S7 — AI (2-col cards with progress bar)
   ============================================================ */
.v3-ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.v3-ai-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--tr)
}

.v3-ai-card:hover {
  border-color: var(--border-h);
  background: rgba(78, 31, 163, 0.07)
}

.v3-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px
}

.v3-ai-badge {
  font-family: var(--fh);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mint);
  background: rgba(54, 231, 196, 0.1);
  border: 1px solid rgba(54, 231, 196, 0.2);
  padding: 3px 9px;
  border-radius: 50px
}

.v3-ai-icon {
  font-size: 26px
}

.v3-ai-title {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.v3-ai-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 18px
}

.v3-ai-bar-wrap {
  margin-top: auto
}

.v3-ai-bar-label {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.v3-ai-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px
}

.v3-ai-bar-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px
}

.v3-ai-bar-val {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 800;
  color: var(--yellow)
}

/* ============================================================
   S9 — TECH (table rows)
   ============================================================ */
.v3-tech-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-tt-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: var(--tr)
}

.v3-tt-row:last-child {
  border-bottom: none
}

.v3-tt-row:hover {
  background: rgba(78, 31, 163, 0.05)
}

.v3-tt-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex: 0 0 200px
}

.v3-tt-label span {
  font-size: 18px
}

.v3-tt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.v3-tt-tags span {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(25, 26, 30, 0.9);
  border: 1px solid rgba(161, 131, 224, 0.12);
  color: rgba(217, 217, 217, 0.7)
}

/* ============================================================
   S10 — PRICING (3 cards)
   ============================================================ */
.v3-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start
}

.v3-price-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--tr)
}

.v3-price-card:hover {
  border-color: var(--border-h)
}

.v3-price-card--featured {
  background: rgba(78, 31, 163, 0.1);
  border-color: rgba(161, 131, 224, 0.3)
}

.v3-pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--fh);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--mint);
  background: rgba(15, 16, 19, 1);
  border: 1px solid rgba(54, 231, 196, 0.3);
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap
}

.v3-pc-name {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: var(--lav);
  margin-bottom: 8px
}

.v3-pc-price {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.v3-pc-price span {
  font-size: 18px;
  -webkit-text-fill-color: rgba(217, 217, 217, 0.4)
}

.v3-pc-time {
  font-size: 12px;
  color: var(--dim);
  margin-top: 6px
}

.v3-pc-for {
  font-size: 13px;
  color: var(--dim);
  margin-top: 8px;
  line-height: 1.5
}

.v3-pc-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0
}

.v3-pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.v3-pc-list li {
  font-size: 13px;
  color: var(--dim);
  padding-left: 18px;
  position: relative
}

.v3-pc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700
}

/* ============================================================
   S11 — REVENUE
   ============================================================ */
.v3-rev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.v3-rv-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--tr);
  position: relative;
  overflow: hidden
}

.v3-rv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--tr);
  transform-origin: left
}

.v3-rv-card:hover::after {
  transform: scaleX(1)
}

.v3-rv-card:hover {
  border-color: var(--border-h)
}

.v3-rv-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.v3-rv-title {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.v3-rv-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.7
}

/* ============================================================
   S12 — REGULATORY (table)
   ============================================================ */
.v3-reg-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-reg-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  transition: var(--tr)
}

.v3-reg-row:last-child {
  border-bottom: none
}

.v3-reg-row:hover {
  background: rgba(78, 31, 163, 0.05)
}

.v3-reg-country {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex: 0 0 200px
}

.v3-reg-flag {
  font-size: 26px
}

.v3-reg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.v3-reg-tags span {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(78, 31, 163, 0.15);
  border: 1px solid rgba(161, 131, 224, 0.18);
  color: var(--lav)
}

/* ============================================================
   S13 — INDUSTRIES (3x3 grid)
   ============================================================ */
.v3-ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.v3-ind-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--tr)
}

.v3-ind-card:hover {
  border-color: var(--border-h);
  background: rgba(78, 31, 163, 0.06)
}

.v3-ind-icon {
  font-size: 30px;
  flex-shrink: 0
}

.v3-ind-name {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.v3-ind-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.7
}

/* ============================================================
   S14 — BENEFITS (3x3)
   ============================================================ */
.v3-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden
}

.v3-ben-item {
  background: var(--b);
  padding: 30px 26px;
  transition: var(--tr)
}

.v3-ben-item:hover {
  background: rgba(78, 31, 163, 0.1)
}

.v3-ben-num {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .4;
  line-height: 1;
  margin-bottom: 10px
}

.v3-ben-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.v3-ben-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7
}

/* ============================================================
   S15 — WHY US (left text + right 2x2 pillars)
   ============================================================ */
.v3-whyus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.v3-whyus-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.v3-wu-pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--tr)
}

.v3-wu-pillar:hover {
  border-color: var(--border-h);
  background: rgba(78, 31, 163, 0.07)
}

.v3-wu-icon {
  font-size: 28px;
  margin-bottom: 12px
}

.v3-wu-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.v3-wu-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7
}

/* ============================================================
   S16 — REVIEWS (3x2 quote cards)
   ============================================================ */
.v3-rev-stats {
  display: flex;
  gap: 28px;
  align-items: center
}

.v3-rs-n {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 900;
  color: var(--yellow);
  display: block
}

.v3-rs-l {
  font-size: 12px;
  color: var(--dim)
}

.v3-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.v3-quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: var(--tr);
  position: relative
}

.v3-quote-card:hover {
  border-color: var(--border-h)
}

.v3-qmark {
  font-family: var(--fh);
  font-size: 48px;
  font-weight: 900;
  color: var(--pd);
  line-height: 1;
  margin-bottom: 8px;
  opacity: .6
}

.v3-qstars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 12px
}

.v3-qtext {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic
}

.v3-qauthor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05)
}

.v3-qav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4E1FA3, #36E7C4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.v3-qname {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.v3-qrole {
  font-size: 11px;
  color: var(--dim)
}

/* ============================================================
   S17 — TEAM
   ============================================================ */
.v3-team-card {
  background: rgba(20, 22, 30, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--tr)
}

.v3-team-card:hover {
  border-color: var(--border-h)
}

.v3-team-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e1530, #2d1e5f);
  border: 1px solid rgba(161, 131, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 800;
  color: rgba(161, 131, 224, 0.6)
}

.v3-team-name {
  font-family: var(--fh);
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px
}

.v3-team-role {
  font-size: 13px;
  color: var(--mint);
  font-weight: 600;
  margin-bottom: 14px
}

.v3-team-li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(217, 217, 217, 0.8);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  transition: var(--tr)
}

.v3-team-li:hover {
  background: rgba(78, 31, 163, 0.3);
  border-color: rgba(161, 131, 224, 0.4);
  color: #fff
}

/* ============================================================
   S18 — FAQ (clean single column)
   ============================================================ */
.v3-faq-list {
  max-width: 860px
}

.v3-faq-item {
  border-bottom: 1px solid var(--border)
}

.v3-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left
}

.v3-faq-q span:first-child {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex: 1;
  transition: var(--tr)
}

.v3-faq-q:hover span:first-child {
  color: var(--lav)
}

.v3-fiq {
  font-size: 22px;
  color: var(--lav);
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--tr)
}

.v3-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.18s ease;
  font-size: 14px;
  color: var(--dim);
  line-height: 1.8
}

.v3-faq-item.open .v3-faq-a {
  max-height: 200px;
  padding-bottom: 20px
}

/* ============================================================
   FINAL CTA (left-right split)
   ============================================================ */
.v3-cta {
  padding: 100px 0;
  background: var(--a);
  position: relative;
  overflow: hidden
}

.v3-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.v3-cta-h2 {
  font-family: var(--fh);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15
}

.v3-cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.v3-cta-panel {
  border: 1px solid rgba(161, 131, 224, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(78, 31, 163, 0.06)
}

.v3-cta-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border)
}

.v3-cta-panel-row--last {
  border-bottom: none
}

.v3-cta-panel-l {
  font-size: 13px;
  color: var(--dim)
}

.v3-cta-panel-v {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff
}

.v3-pv-free {
  color: var(--mint);
  font-size: 16px
}

/* ============================================================
   FOOTER
   ============================================================ */
.v3-footer {
  padding: 32px 0;
  background: var(--b);
  border-top: 1px solid var(--border)
}

.v3-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

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

.v3-footer-links a {
  font-family: var(--fh);
  font-size: 13px;
  color: var(--dim);
  transition: var(--tr)
}

.v3-footer-links a:hover {
  color: #fff
}

.v3-footer-copy {
  font-size: 12px;
  color: var(--dim)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1100px) {
  .v3-rev-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .v3-ind-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .v3-quotes-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:992px) {
  :root {
    --py: 72px
  }

  .v3-nav {
    top: 8px;
    padding: 0 12px
  }

  .v3-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .v3-hero {
    padding-top: 110px
  }

  .v3-hero-right {
    display: none
  }

  .v3-what-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .v3-company-top {
    grid-template-columns: 1fr
  }

  .v3-company-headline {
    border-right: none
  }

  .v3-company-stats-bar {
    grid-template-columns: repeat(4, 1fr)
  }

  .v3-csb-item {
    border-bottom: none
  }

  .v3-cases-grid {
    grid-template-columns: 1fr
  }

  .v3-ai-grid {
    grid-template-columns: 1fr
  }

  .v3-steps-row {
    grid-template-columns: repeat(3, 1fr)
  }

  .v3-process-details {
    grid-template-columns: 1fr 1fr
  }

  .v3-pricing-row {
    grid-template-columns: 1fr
  }

  .v3-rev-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .v3-whyus-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .v3-quotes-grid {
    grid-template-columns: 1fr
  }

  .v3-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .v3-sec-head-split {
    flex-direction: column;
    gap: 20px
  }

  .v3-sec-head-split>div {
    flex: none;
    width: 100%
  }

  .v3-rev-stats {
    flex-direction: row
  }

  .v3-ben-grid {
    grid-template-columns: 1fr 1fr
  }

  .v3-ind-grid {
    grid-template-columns: 1fr 1fr
  }

  .v3-tt-label {
    flex: 0 0 160px;
    font-size: 12px
  }
}

@media(max-width:768px) {
  :root {
    --py: 56px
  }

  .v3-steps-row {
    grid-template-columns: 1fr 1fr
  }

  .v3-process-details {
    grid-template-columns: 1fr
  }

  .v3-rev-grid {
    grid-template-columns: 1fr
  }

  .v3-ind-grid {
    grid-template-columns: 1fr
  }

  .v3-ben-grid {
    grid-template-columns: 1fr
  }

  .v3-whyus-right {
    grid-template-columns: 1fr
  }

  .v3-company-stats-bar {
    grid-template-columns: repeat(2, 1fr)
  }

  .v3-csb-item:nth-child(1),
  .v3-csb-item:nth-child(2) {
    border-bottom: 1px solid var(--border)
  }

  .v3-tt-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
  }

  .v3-tt-label {
    flex: none
  }

  .v3-reg-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .v3-reg-country {
    flex: none
  }

  .v3-footer-inner {
    flex-direction: column;
    text-align: center
  }

  .v3-footer-links {
    flex-wrap: wrap;
    justify-content: center
  }

  .v3-acc-tags-inline {
    display: none
  }

  .v3-rev-stats {
    flex-direction: column;
    gap: 12px
  }
}

/* ============================================================
   S8 — PROCESS  (interactive list + detail panel)
   ============================================================ */

.prc-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: start;
}

/* ── Left: step list ── */
.prc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(161, 131, 224, 0.25) transparent;
}

.prc-list::-webkit-scrollbar {
  width: 3px;
}

.prc-list::-webkit-scrollbar-thumb {
  background: rgba(161, 131, 224, 0.25);
  border-radius: 2px;
}

.prc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--tr);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.prc-item:hover {
  border-color: rgba(161, 131, 224, 0.25);
  background: rgba(78, 31, 163, 0.07);
}

.prc-item.active {
  border-color: rgba(161, 131, 224, 0.5);
  background: rgba(78, 31, 163, 0.14);
}

.prc-item.active .prc-chevron {
  color: var(--mint);
}

.prc-item.active .prc-item-title {
  color: var(--yellow);
}

.prc-num {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 700;
  color: var(--dim);
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}

.prc-item.active .prc-num {
  color: var(--mint);
}

.prc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #2D1E5F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(78, 31, 163, 0.3);
}

.prc-item.active .prc-icon-wrap {
  background: linear-gradient(135deg, #3d2880, #1e6b50);
}

.prc-item-text {
  flex: 1;
  min-width: 0;
}

.prc-item-title {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prc-item-sub {
  font-size: 12px;
  color: var(--dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prc-chevron {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: var(--tr);
}

/* ── Right: detail panel ── */
.prc-detail {
  border: 1px solid rgba(161, 131, 224, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(20, 16, 36, 0.6);
  display: flex;
  flex-direction: column;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

/* gradient top border */
.prc-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F5D255, #36E7C4);
}

.prc-detail-inner {
  flex: 1;
  padding: 36px 36px 28px;
}

.prc-detail-step-label {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--mint);
  margin-bottom: 18px;
}

.prc-detail-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.prc-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #2D1E5F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(78, 31, 163, 0.4);
}

.prc-detail-title {
  font-family: var(--fh);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.prc-detail-desc {
  font-size: 15px !important;
  color: #d9d9d9 !important;
  line-height: 1.5 !important;
  margin-bottom: 22px;
}

/* tags */
.prc-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.prc-tag {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(78, 31, 163, 0.18);
  border: 1px solid rgba(161, 131, 224, 0.25);
  color: var(--lav);
  transition: var(--tr);
}

/* meta rows */
.prc-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prc-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.prc-meta-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(78, 31, 163, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prc-meta-label {
  font-family: var(--fh);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dim);
  margin-bottom: 3px;
}

.prc-meta-val {
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* ── Footer: progress + nav ── */
.prc-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 20px;
}

.prc-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.prc-progress-label {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  color: var(--dim);
  flex-shrink: 0;
  min-width: 50px;
}

.prc-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.prc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F5D255, #36E7C4);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.prc-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.prc-nav-btn {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: var(--tr);
}

.prc-nav-btn:hover {
  border-color: var(--lav);
  color: #fff;
}

.prc-nav-btn--next {
  background: linear-gradient(135deg, var(--pd), var(--pv));
  border-color: transparent;
  color: #fff;
}

.prc-nav-btn--next:hover {
  opacity: 0.88;
}

/* responsive */
@media (max-width: 992px) {
  .prc-layout {
    grid-template-columns: 1fr;
  }

  .prc-list {
    max-height: 320px;
  }

  .prc-detail {
    min-height: auto;
  }

  .prc-detail-inner {
    padding: 24px 20px 20px;
  }

  .prc-detail-title {
    font-size: 20px;
  }
}

/* ============================================================
   S9 — TECH GRID  (4-col category cards)
   ============================================================ */
.tg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tg-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 22px;
  transition: var(--tr);
}

.tg-card:hover {
  border-color: rgba(161, 131, 224, 0.3);
  background: rgba(78, 31, 163, 0.07);
}

.tg-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.tg-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.tg-title {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 800;
  color: var(--mint);
}

.tg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tg-tags span {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--tr);
}

.tg-tags span:hover {
  background: rgba(78, 31, 163, 0.2);
  border-color: rgba(161, 131, 224, 0.3);
  color: #fff;
}

@media (max-width: 1100px) {
  .tg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.project-section .project-para {
    font-size: 15px !important;
}


/* ============================================================
   RESPONSIVE FONT SIZES — ALL BREAKPOINTS
   ============================================================ */

/* ── 1199px — Tablet Landscape ─────────────────────────────── */
@media (max-width: 1199px) {

  /* V1 */
  .hero-heading {
    font-size: 42px;
  }

  .section-heading {
    font-size: 28px;
  }

  .card-heading {
    font-size: 17px;
  }

  /* V2 */
  .v2-hero-h1 {
    font-size: 48px;
  }

  .v2-hero-sub {
    font-size: 16px;
  }

  .v2-h2 {
    font-size: 30px;
  }

  .v2-body {
    font-size: 14px;
  }

  .v2-cta-h2 {
    font-size: 38px;
  }

  .review-stat-number {
    font-size: 26px;
  }

  /* V4 / V3 */
  .v3-hero-h1 {
    font-size: 48px;
  }

  .v3-hero-p {
    font-size: 15px;
  }

  .v3-h2 {
    font-size: 30px;
  }

  .v3-body {
    font-size: 14px !important;
  }

  .v3-cta-h2 {
    font-size: 38px;
  }

  .prc-detail-title {
    font-size: 22px;
  }

  .tg-title {
    font-size: 14px;
  }

  /* Shared cards */
  .service-card-title {
    font-size: 16px;
  }

  .service-card-desc {
    font-size: 13px;
  }

  .ai-card-title {
    font-size: 16px;
  }

  .pricing-price {
    font-size: 28px;
  }

  .stat-number {
    font-size: 32px;
  }
}

/* ── 991px — Tablet Portrait ────────────────────────────────── */
@media (max-width: 991px) {

  /* V1 */
  .hero-heading {
    font-size: 36px;
  }

  .section-heading {
    font-size: 24px;
  }

  .card-heading {
    font-size: 16px;
  }

  .body-text {
    font-size: 14px !important;
  }

  .section-tag {
    font-size: 10px;
  }

  /* V2 */
  .v2-hero-h1 {
    font-size: 40px;
  }

  .v2-hero-sub {
    font-size: 15px;
  }

  .v2-h2 {
    font-size: 26px;
  }

  .v2-body {
    font-size: 14px;
  }

  .v2-cta-h2 {
    font-size: 32px;
  }

  .v2-hero-tag {
    font-size: 10px;
  }

  .review-stat-number {
    font-size: 22px;
  }

  .review-stat-label {
    font-size: 12px;
  }

  .review-title {
    font-size: 15px;
  }

  .review-text {
    font-size: 13px !important;
  }

  .team-name {
    font-size: 15px;
  }

  .team-role {
    font-size: 12px;
  }

  /* V4 / V3 */
  .v3-hero-h1 {
    font-size: 38px;
  }

  .v3-hero-p {
    font-size: 14px;
  }

  .v3-h2 {
    font-size: 26px;
  }

  .v3-body {
    font-size: 14px !important;
  }

  .v3-cta-h2 {
    font-size: 32px;
  }

  .v3-stag {
    font-size: 10px;
  }

  .prc-detail-title {
    font-size: 20px;
  }

  .prc-detail-desc {
    font-size: 13px;
  }

  .prc-item-title {
    font-size: 13px;
  }

  .prc-item-sub {
    font-size: 11px;
  }

  .tg-title {
    font-size: 13px;
  }

  .tg-tags span {
    font-size: 11px;
  }

  .v3-rv-title {
    font-size: 13px;
  }

  .v3-wu-title {
    font-size: 14px;
  }

  .v3-ben-title {
    font-size: 14px;
  }

  /* Shared */
  .service-card-title {
    font-size: 15px;
  }

  .service-card-desc {
    font-size: 13px;
  }

  .feature-card-title {
    font-size: 15px;
  }

  .ai-card-title {
    font-size: 15px;
  }

  .ai-card-desc {
    font-size: 13px !important;
  }

  .pricing-price {
    font-size: 26px;
  }

  .pricing-plan-name {
    font-size: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .v2-reg-country {
    font-size: 15px;
  }

  .v2-reg-sub {
    font-size: 12px !important;
  }

  .v2-reg-tags span {
    font-size: 10px;
  }
}

/* ── 767px — Large Mobile ───────────────────────────────────── */
@media (max-width: 767px) {

  /* V1 */
  .hero-heading {
    font-size: 30px;
  }

  .section-heading {
    font-size: 22px;
  }

  .card-heading {
    font-size: 15px;
  }

  .body-text {
    font-size: 13px !important;
  }

  .section-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .btn-primary-gradient {
    font-size: 13px;
    padding: 11px 20px;
  }

  .btn-outline-light {
    font-size: 13px;
    padding: 10px 18px;
  }

  /* V2 */
  .v2-hero-h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  .v2-hero-sub {
    font-size: 14px;
  }

  .v2-h2 {
    font-size: 22px;
  }

  .v2-body {
    font-size: 13px;
  }

  .v2-cta-h2 {
    font-size: 26px;
  }

  .v2-hero-tag {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .review-stat-number {
    font-size: 20px;
  }

  .review-stat-label {
    font-size: 11px;
  }

  .review-title {
    font-size: 14px;
  }

  .review-text {
    font-size: 12px !important;
  }

  .review-author-name {
    font-size: 12px;
  }

  .review-author-role {
    font-size: 10px;
  }

  .team-name {
    font-size: 14px;
  }

  .team-role {
    font-size: 12px;
  }

  .v2-feat-n {
    font-size: 28px;
  }

  .v2-feat-title {
    font-size: 14px;
  }

  .v2-feat-desc {
    font-size: 12px;
  }

  .v2-bento-title {
    font-size: 14px;
  }

  .v2-bento-sub {
    font-size: 11px;
  }

  /* V4 / V3 */
  .v3-hero-h1 {
    font-size: 30px;
    line-height: 1.2;
  }

  .v3-hero-p {
    font-size: 13px;
  }

  .v3-h2 {
    font-size: 22px;
  }

  .v3-body {
    font-size: 13px !important;
  }

  .v3-cta-h2 {
    font-size: 26px;
  }

  .v3-stag {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .prc-detail-title {
    font-size: 18px;
  }

  .prc-detail-desc {
    font-size: 13px;
  }

  .prc-detail-step-label {
    font-size: 10px;
  }

  .prc-item-title {
    font-size: 13px;
  }

  .prc-item-sub {
    font-size: 11px;
  }

  .prc-meta-val {
    font-size: 13px;
  }

  .prc-meta-label {
    font-size: 9px;
  }

  .tg-title {
    font-size: 13px;
  }

  .tg-tags span {
    font-size: 11px;
  }

  .v3-ben-num {
    font-size: 24px;
  }

  .v3-ben-title {
    font-size: 13px;
  }

  .v3-ben-desc {
    font-size: 12px;
  }

  .v3-wu-title {
    font-size: 13px;
  }

  .v3-wu-desc {
    font-size: 12px;
  }

  .v3-qmark {
    font-size: 36px;
  }

  .v3-qtext {
    font-size: 12px;
  }

  .v3-qname {
    font-size: 12px;
  }

  .v3-faq-q span:first-child {
    font-size: 13px;
  }

  /* Shared */
  .service-card-title {
    font-size: 14px;
  }

  .service-card-desc {
    font-size: 12px;
  }

  .feature-card-title {
    font-size: 14px;
  }

  .feature-card-desc {
    font-size: 12px;
  }

  .ai-card-title {
    font-size: 14px;
  }

  .ai-card-desc {
    font-size: 12px !important;
  }

  .ai-stat-number {
    font-size: 20px;
  }

  .pricing-price {
    font-size: 24px;
  }

  .pricing-plan-name {
    font-size: 15px;
  }

  .pricing-feature {
    font-size: 12px;
  }

  .stat-number {
    font-size: 28px;
  }

  .v2-reg-country {
    font-size: 14px;
  }

  .v2-reg-sub {
    font-size: 12px !important;
  }

  .v2-reg-tags span {
    font-size: 10px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .consultant-name {
    font-size: 16px;
  }

  .consultant-title {
    font-size: 12px;
  }

  .consultant-desc {
    font-size: 12px;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .author-name {
    font-size: 13px;
  }

  .author-role {
    font-size: 11px;
  }
}

/* ── 575px — Small Mobile ───────────────────────────────────── */
@media (max-width: 575px) {

  /* V1 */
  .hero-heading {
    font-size: 26px;
  }

  .hero-subtext {
    font-size: 12px;
  }

  .section-heading {
    font-size: 20px;
  }

  .card-heading {
    font-size: 14px;
  }

  .body-text {
    font-size: 13px !important;
  }

  .section-tag {
    font-size: 9px;
    letter-spacing: 1px;
  }

  /* V2 */
  .v2-hero-h1 {
    font-size: 28px;
  }

  .v2-hero-sub {
    font-size: 13px;
  }

  .v2-h2 {
    font-size: 20px;
  }

  .v2-body {
    font-size: 13px;
  }

  .v2-cta-h2 {
    font-size: 22px;
  }

  .review-stat-number {
    font-size: 18px;
  }

  .review-title {
    font-size: 13px;
  }

  .review-text {
    font-size: 12px !important;
  }

  .v2-feat-title {
    font-size: 13px;
  }

  .v2-feat-desc {
    font-size: 12px;
  }

  .v2-bento-title {
    font-size: 13px;
  }

  .v2-bento-sub {
    font-size: 11px;
  }

  /* V4 / V3 */
  .v3-hero-h1 {
    font-size: 26px;
  }

  .v3-hero-p {
    font-size: 13px;
  }

  .v3-h2 {
    font-size: 20px;
  }

  .v3-body {
    font-size: 13px !important;
  }

  .v3-cta-h2 {
    font-size: 22px;
  }

  .prc-detail-title {
    font-size: 16px;
  }

  .prc-detail-desc {
    font-size: 12px;
  }

  .prc-item-title {
    font-size: 12px;
  }

  .prc-item-sub {
    font-size: 10px;
  }

  .tg-title {
    font-size: 12px;
  }

  .tg-tags span {
    font-size: 10px;
    padding: 4px 10px;
  }

  .v3-ben-num {
    font-size: 20px;
  }

  .v3-ben-title {
    font-size: 13px;
  }

  .v3-faq-q span:first-child {
    font-size: 13px;
  }

  /* Shared */
  .service-card-title {
    font-size: 13px;
  }

  .service-card-desc {
    font-size: 12px;
  }

  .feature-card-title {
    font-size: 13px;
  }

  .ai-card-title {
    font-size: 13px;
  }

  .ai-card-desc {
    font-size: 12px !important;
  }

  .pricing-price {
    font-size: 22px;
  }

  .pricing-plan-name {
    font-size: 14px;
  }

  .pricing-feature {
    font-size: 11px;
  }

  .stat-number {
    font-size: 24px;
  }

  .v2-reg-country {
    font-size: 13px;
  }

  .v2-reg-sub {
    font-size: 11px !important;
  }

  .v2-reg-tags span {
    font-size: 10px;
    padding: 3px 8px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 12px;
  }

  .consultant-name {
    font-size: 15px;
  }

  .consultant-title {
    font-size: 11px;
  }

  .author-name {
    font-size: 12px;
  }

  .author-role {
    font-size: 10px;
  }

  .testimonial-text {
    font-size: 12px;
  }
}

/* ── 480px — Extra Small Mobile ─────────────────────────────── */
@media (max-width: 480px) {

  /* V1 */
  .hero-heading {
    font-size: 22px;
  }

  .hero-subtext {
    font-size: 12px !important;
  }

  .section-heading {
    font-size: 18px;
  }

  .card-heading {
    font-size: 13px;
  }

  .body-text {
    font-size: 12px !important;
  }

  .section-tag {
    font-size: 9px;
  }

  .btn-primary-gradient {
    font-size: 12px;
    padding: 10px 16px;
  }

  .btn-outline-light {
    font-size: 12px;
    padding: 9px 14px;
  }

  /* V2 */
  .v2-hero-h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .v2-hero-sub {
    font-size: 12px;
  }

  .v2-h2 {
    font-size: 18px;
  }

  .v2-body {
    font-size: 12px;
  }

  .v2-cta-h2 {
    font-size: 20px;
  }

  .v2-hero-tag {
    font-size: 9px;
  }

  .review-stat-number {
    font-size: 16px;
  }

  .review-stat-label {
    font-size: 10px;
  }

  .review-title {
    font-size: 13px;
  }

  .review-text {
    font-size: 11px !important;
  }

  .team-name {
    font-size: 13px;
  }

  .team-role {
    font-size: 11px;
  }

  .v2-feat-n {
    font-size: 22px;
  }

  .v2-feat-title {
    font-size: 13px;
  }

  .v2-feat-desc {
    font-size: 11px;
  }

  .v2-bento-title {
    font-size: 13px;
  }

  .v2-bento-sub {
    font-size: 10px;
  }

  /* V4 / V3 */
  .v3-hero-h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .v3-hero-p {
    font-size: 12px;
  }

  .v3-h2 {
    font-size: 18px;
  }

  .v3-body {
    font-size: 12px !important;
  }

  .v3-cta-h2 {
    font-size: 20px;
  }

  .v3-stag {
    font-size: 9px;
  }

  .prc-detail-title {
    font-size: 15px;
  }

  .prc-detail-desc {
    font-size: 12px;
  }

  .prc-detail-step-label {
    font-size: 9px;
  }

  .prc-item-title {
    font-size: 12px;
  }

  .prc-item-sub {
    font-size: 10px;
  }

  .prc-meta-val {
    font-size: 12px;
  }

  .prc-meta-label {
    font-size: 8px;
  }

  .prc-nav-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .tg-title {
    font-size: 12px;
  }

  .tg-tags span {
    font-size: 10px;
    padding: 3px 9px;
  }

  .v3-ben-num {
    font-size: 18px;
  }

  .v3-ben-title {
    font-size: 12px;
  }

  .v3-ben-desc {
    font-size: 11px;
  }

  .v3-wu-title {
    font-size: 12px;
  }

  .v3-wu-desc {
    font-size: 11px;
  }

  .v3-qmark {
    font-size: 28px;
  }

  .v3-qtext {
    font-size: 11px;
  }

  .v3-faq-q span:first-child {
    font-size: 12px;
  }

  .v3-fiq {
    font-size: 18px;
  }

  /* Shared */
  .service-card-title {
    font-size: 13px;
  }

  .service-card-desc {
    font-size: 11px;
  }

  .feature-card-title {
    font-size: 13px;
  }

  .feature-card-desc {
    font-size: 11px;
  }

  .ai-card-title {
    font-size: 13px;
  }

  .ai-card-desc {
    font-size: 11px !important;
  }

  .ai-stat-number {
    font-size: 18px;
  }

  .pricing-price {
    font-size: 20px;
  }

  .pricing-plan-name {
    font-size: 13px;
  }

  .pricing-feature {
    font-size: 11px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .v2-reg-country {
    font-size: 13px;
  }

  .v2-reg-sub {
    font-size: 11px !important;
  }

  .v2-reg-tags span {
    font-size: 9px;
    padding: 2px 7px;
  }

  .faq-question-text {
    font-size: 12px;
  }

  .faq-answer {
    font-size: 11px;
    line-height: 1.7;
  }

  .consultant-name {
    font-size: 14px;
  }

  .consultant-title {
    font-size: 11px;
  }

  .consultant-desc {
    font-size: 11px;
  }

  .testimonial-text {
    font-size: 11px;
  }

  .author-name {
    font-size: 12px;
  }

  .author-role {
    font-size: 10px;
  }

  .team-photo-placeholder {
    font-size: 18px;
  }
  .project-section .project-para {
    font-size: 12px !important;
}
}

@media (max-width: 576px) {
  .hero-trust-bar {
    justify-content: space-between !important;
    gap: 16px 0 !important;
  }

  .hero-trust-bar .trust-stat {
    flex: 0 0 48% !important;
    text-align: center !important;
  }

  .hero-trust-bar .trust-divider {
    display: none !important;
  }
}

/* --- Client Carousel --- */
.client-carousel { padding-bottom: 40px; }
.scroller__wrapper { --scrolling-gallery-item-duration: 20s; --scrolling-gallery-items-visible: 5; --scrolling-gallery-items-total: 12; overflow: hidden; will-change: transform; }
.scroller__container { overflow-x: hidden; }
.slide-scroller { animation-duration: calc(var(--scrolling-gallery-item-duration, 1s) / var(--scrolling-gallery-items-visible) * var(--scrolling-gallery-items-total) ); animation-timing-function: linear; animation-name: scrolling-gallery; animation-iteration-count: infinite; display: flex; }
.slide-scroller:hover, .slide-scroller:focus { animation-play-state: paused; }
@keyframes scrolling-gallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX( calc( var(--scrolling-gallery-items-total) * -100vw / var(--scrolling-gallery-items-visible) ) );
  }
}
.scroller__item { flex: 0 0 calc(100% / var(--scrolling-gallery-items-visible)); width: 0; box-sizing: border-box; }
.scroller__item .item img { height: 60px; width: 100%; object-fit: contain; }
@media (max-width: 1440px){
  .scroller__wrapper { --scrolling-gallery-items-visible: 5; --scrolling-gallery-item-duration: 30s; }
}
@media (max-width: 767px){
  .scroller__wrapper { --scrolling-gallery-items-visible:3; --scrolling-gallery-item-duration: 20s; }
}
@media (max-width: 567px){
  .scroller__wrapper { --scrolling-gallery-items-visible:2; --scrolling-gallery-item-duration: 20s; }
}
@media (max-width: 400px){
  .scroller__wrapper { --scrolling-gallery-items-visible:1; --scrolling-gallery-item-duration: 10s; }
}

/* ============================================================
   ADDITIONAL MOBILE VIEW RESPONSIVENESS (OVERRIDES & FIXES)
   ============================================================ */

/* --- Mobile View Overrides (max-width: 768px) --- */
@media (max-width: 768px) {
  /* Prevent horizontal scroll on document level */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Padding adjustments for all main sections */
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero Section spacing */
  .hero-section {
    padding-top: 100px !important;
    padding-bottom: 40px !important;
  }

  /* Centering button groups and stacking */
  .btn-group-inline {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-primary-gradient, 
  .btn-outline-light {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  /* V3 What Is Section adjustments */
  .v3-what-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .v3-what-left {
    text-align: center !important;
  }

  .v3-what-left .mt-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .v3-btn-primary, 
  .v3-btn-outline {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    white-space: normal !important;
    text-align: center !important;
  }

  /* Step flowchart adjustments */
  .v3-flow-visual {
    margin-top: 16px !important;
  }

  .v3-fv-step {
    padding: 16px 18px !important;
    gap: 14px !important;
  }

  .v3-fv-title {
    font-size: 14px !important;
  }

  .v3-fv-sub {
    font-size: 11px !important;
  }

  /* Case study section layout stacking */
  .case-panel.active {
    flex-direction: column !important;
    gap: 20px !important;
  }

  /* Case study tabs scrolling customization */
  .case-study-tabs {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
    margin-bottom: 24px !important;
  }

  .case-study-tabs::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
  }

  .case-tab {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  /* Advanced features grid fixes */
  .v2-feat-grid {
    grid-template-columns: 1fr !important;
  }

  .v2-feat-item {
    padding: 24px 20px !important;
  }
}

/* --- Extra Small Mobile View (max-width: 480px) --- */
@media (max-width: 480px) {
  /* Hero Dashboard sizing & wraps */
  .hero-dashboard {
    border-radius: 12px !important;
  }

  .dashboard-body {
    padding: 12px !important;
  }

  .dash-metrics-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .dash-metric {
    padding: 8px 10px !important;
  }

  .dash-metric-value {
    font-size: 14px !important;
  }

  .dash-token-row {
    flex-direction: column !important;
    gap: 6px !important;
  }

  .dash-compliance-badge {
    padding: 6px 10px !important;
  }

  .compliance-text {
    font-size: 8px !important;
    line-height: 1.3 !important;
  }

  /* Typography scale adjustments */
  .hero-heading {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }

  .hero-subtext {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  .v3-h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .v3-body {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  .section-heading {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .body-text {
    font-size: 12px !important;
    line-height: 1.6 !important;
  }

  /* Compliance badge alignment */
  .compliance-badge-row {
    justify-content: center !important;
    margin-top: 16px !important;
  }

  .compliance-badge {
    padding: 5px 12px !important;
    font-size: 11px !important;
  }
  
  /* Process interactive steps padding adjustment */
  .prc-item {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .prc-num {
    width: 20px !important;
  }
  .team-card-inner {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
}