/* ================================================================
   SORIX PREMIUM — Complete Design Overhaul
   Aesthetic: Precise · Relentless · Intelligent
   Display: Exo 2  |  Body: Figtree
   ================================================================ */

/* ── 0. Image drag prevention (non-intrusive) ──────────────── */
img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* ── 1. Refined Design Variables ─────────────────────────────── */
:root {
  /* Rich blue-dark backgrounds — creates depth between layers */
  --bg-body: #04070d;
  --bg-surface: #07091c;
  --bg-elevated: #0c1230;
  --bg-card: #090e24;

  /* Brighter, more electric neon green */
  --green-live: #00e878;
  --green-glow: rgba(0, 232, 120, 0.07);
  --green-glow-md: rgba(0, 232, 120, 0.14);
  --green-dim: rgba(0, 232, 120, 0.18);
  --green-border: rgba(0, 232, 120, 0.22);
  --green-bright: rgba(0, 232, 120, 0.60);

  /* Electric blue — secondary accent for visual variety */
  --accent-blue: #3ecfff;
  --accent-blue-glow: rgba(62, 207, 255, 0.06);
  --accent-blue-border: rgba(62, 207, 255, 0.15);

  /* Crisper, slightly blue-tinted text */
  --text-bright: #eaf4ff;
  --text-mid: rgba(195, 220, 248, 0.70);
  --text-quiet: rgba(165, 200, 230, 0.42);

  /* Blue-tinted grid lines — more visible, less muddy */
  --grid-line: rgba(62, 207, 255, 0.030);
  --border-subtle: rgba(255, 255, 255, 0.07);
}

/* ── 2. Body & Base ──────────────────────────────────────────── */
html {
  overflow-x: hidden;
}

body {
  background-color: var(--bg-body) !important;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── 3. Display Font — Exo 2 on all headings ─────────────────── */
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.text-display-1,
.text-display-2,
.sorix-large>*,
.sorix-large,
.ecosystem-heading,
.mb-menu-link .text,
.plan-name,
.indicate-counter,
.accordion-order {
  font-family: 'Exo 2', sans-serif !important;
}

.sorix-large {
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
}

/* ── 4. Circuit Grid Background Pattern ──────────────────────── */
.has-grid-bg {
  position: relative;
}

.has-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* ── 5. Header — Compact & Glass on scroll ───────────────────── */
header {
  top: 0;
}

/* Trim the oversized header padding */
.tf-header {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  margin-bottom: -82px !important;
}

.tf-header.style-2 {
  margin-bottom: -100px !important;
}

@media (max-width: 1199px) {
  .tf-header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: -50px !important;
  }

  .tf-header.style-2 {
    margin-bottom: -72px !important;
  }
}

header.header-sticky {
  background: rgba(6, 8, 15, 0.88) !important;
  backdrop-filter: blur(24px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.3) !important;
  border-bottom: 1px solid var(--green-border) !important;
  box-shadow: 0 1px 0 var(--green-border) !important;
}

.item-link span {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* ── 6. Preloader — Full Redesign ────────────────────────────── */

.preloader {
  background: #04070d !important;
  overflow: hidden !important;
}

/* Subtle grid overlay */
.preloader-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(62, 207, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 207, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  pointer-events: none;
}

/* Floating colour orbs */
.preloader-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.preloader-orb--green {
  width: 55vw;
  height: 55vw;
  top: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 232, 120, 0.22) 0%, transparent 70%);
  animation: pl-orb-a 6s ease-in-out infinite alternate;
}

.preloader-orb--blue {
  width: 45vw;
  height: 45vw;
  bottom: -12%;
  right: -6%;
  background: radial-gradient(circle, rgba(62, 207, 255, 0.18) 0%, transparent 70%);
  animation: pl-orb-b 7s ease-in-out infinite alternate;
}

@keyframes pl-orb-a {
  0% {
    transform: translate(0, 0) scale(1.0);
    opacity: 0.7;
  }

  100% {
    transform: translate(5%, 10%) scale(1.25);
    opacity: 1.0;
  }
}

@keyframes pl-orb-b {
  0% {
    transform: translate(0, 0) scale(1.0);
    opacity: 0.6;
  }

  100% {
    transform: translate(-6%, -8%) scale(1.2);
    opacity: 0.9;
  }
}

/* site-name — full-cover, centered */
.preloader .site-name {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
}

/* Inner wrapper */
.preloader-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

/* Ring — hidden until pl-active, then expands with the power-up */
.preloader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: min(420px, 72vw);
  height: min(420px, 72vw);
  border-radius: 50%;
  border: 1px solid rgba(0, 232, 120, 0);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.preloader.pl-active .preloader-ring {
  animation: ring-expand 1.15s cubic-bezier(0.4, 0, 0.55, 1) forwards;
}

.preloader-ring::before {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(62, 207, 255, 0);
}

.preloader-ring::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 232, 120, 0);
}

.preloader.pl-active .preloader-ring::before {
  animation: ring-expand-inner 1.15s cubic-bezier(0.4, 0, 0.55, 1) 0.08s forwards;
}

.preloader.pl-active .preloader-ring::after {
  animation: ring-expand-outer 1.15s cubic-bezier(0.4, 0, 0.55, 1) 0.04s forwards;
}

@keyframes ring-expand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    border-color: rgba(0, 232, 120, 0);
  }

  15% {
    opacity: 1;
    border-color: rgba(0, 232, 120, 0.2);
  }

  65% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
    border-color: rgba(0, 232, 120, 0.55);
    box-shadow: 0 0 30px rgba(0, 232, 120, 0.15);
  }

  /* Peak matches SORIX peak at 65% */
  68% {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 60px rgba(0, 232, 120, 0.4);
  }

  /* Power-down */
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.12);
    border-color: rgba(0, 232, 120, 0);
  }
}

@keyframes ring-expand-inner {
  0% {
    opacity: 0;
    border-color: rgba(62, 207, 255, 0);
  }

  15% {
    opacity: 1;
    border-color: rgba(62, 207, 255, 0.12);
  }

  65% {
    opacity: 1;
    border-color: rgba(62, 207, 255, 0.35);
  }

  68% {
    border-color: rgba(255, 255, 255, 0.4);
  }

  100% {
    opacity: 0;
    border-color: rgba(62, 207, 255, 0);
  }
}

@keyframes ring-expand-outer {
  0% {
    opacity: 0;
    border-color: rgba(0, 232, 120, 0);
  }

  15% {
    opacity: 1;
    border-color: rgba(0, 232, 120, 0.07);
  }

  65% {
    opacity: 1;
    border-color: rgba(0, 232, 120, 0.22);
  }

  68% {
    border-color: rgba(255, 255, 255, 0.25);
  }

  100% {
    opacity: 0;
    border-color: rgba(0, 232, 120, 0);
  }
}

/* SORIX text — hidden until fonts load + JS adds .pl-active */
.preloader .site-name span {
  font-family: 'Exo 2', sans-serif !important;
  font-size: clamp(72px, 12vw, 148px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  color: #eaf4ff !important;
  line-height: 1 !important;
  opacity: 0;
  animation: none;
}

/* Triggered by JS after fonts.ready — fixes font-metric glitch */
.preloader.pl-active .site-name span {
  animation: sorix-powerup 1.15s cubic-bezier(0.4, 0, 0.55, 1) forwards;
}

@keyframes sorix-powerup {

  /* Emerge from dark */
  0% {
    opacity: 0;
    color: #eaf4ff;
    filter: none;
  }

  /* First light */
  10% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 232, 120, 0.3));
  }

  /* Glow builds */
  45% {
    opacity: 1;
    color: #eaf4ff;
    filter:
      drop-shadow(0 0 28px rgba(0, 232, 120, 0.85)) drop-shadow(0 0 70px rgba(62, 207, 255, 0.55)) drop-shadow(0 0 130px rgba(0, 232, 120, 0.35));
  }

  /* Peak — white hot */
  65% {
    opacity: 1;
    color: #ffffff;
    filter:
      drop-shadow(0 0 55px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 110px rgba(0, 232, 120, 1)) drop-shadow(0 0 200px rgba(62, 207, 255, 0.75));
  }

  /* Power-down — glow retreats fast */
  85% {
    opacity: 0.4;
    color: #eaf4ff;
    filter:
      drop-shadow(0 0 12px rgba(0, 232, 120, 0.4));
  }

  /* Gone */
  100% {
    opacity: 0.04;
    color: #eaf4ff;
    filter: none;
  }
}


/* ── 7. Hero Section ─────────────────────────────────────────── */
.section-hero-v1 {
  /* Multi-layer dramatic gradient with both green and blue accents */
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(0, 232, 120, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 88% 55%, rgba(62, 207, 255, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 80%, rgba(0, 232, 120, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(62, 207, 255, 0.05) 0%, transparent 50%),
    #04070d !important;
  overflow: hidden;
  position: relative;
  min-height: 100vh !important;
}

/* Neural network canvas */
#neural-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fadeInNeural 2.5s ease 2s forwards;
}

@keyframes fadeInNeural {
  to {
    opacity: 0.92;
  }
}

/* Content sits above canvas */
.section-hero-v1 .content-wrap {
  position: relative;
  z-index: 4 !important;
}

/* Subtle circuit grid */
.section-hero-v1 .content-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  pointer-events: none;
}

/* Old scanline removed, replaced by .hero-boot */
.section-hero-v1 .content-wrap::after {
  display: none;
}

/* ── Boot animation: line shoots from center to both edges ────── */
.hero-boot {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(7, 196, 44, 0.3) 15%,
      #07c42c 50%,
      rgba(7, 196, 44, 0.3) 85%,
      transparent 100%);
  box-shadow: 0 0 18px 3px rgba(7, 196, 44, 0.55), 0 0 60px rgba(7, 196, 44, 0.18);
  z-index: 20;
  clip-path: inset(0 50% 0 50%);
  animation: boot-line 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: none;
}

/* Radial glow blooms as the line expands */
.hero-boot::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -60vh;
  height: 120vh;
  background: radial-gradient(ellipse at 50% 50%, rgba(7, 196, 44, 0.11) 0%, transparent 60%);
  opacity: 0;
  animation: boot-glow 2s ease-out forwards;
}

/* Blur copy for the soft glow trail */
.hero-boot::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: inherit;
  filter: blur(4px);
  opacity: 0;
  animation: boot-ping 0.4s ease-out 1.2s forwards;
}

@keyframes boot-line {
  0% {
    clip-path: inset(0 50% 0 50%);
    opacity: 0;
  }

  6% {
    clip-path: inset(0 50% 0 50%);
    opacity: 1;
  }

  50% {
    clip-path: inset(0 0% 0 0%);
    opacity: 1;
  }

  78% {
    clip-path: inset(0 0% 0 0%);
    opacity: 0.55;
  }

  100% {
    clip-path: inset(0 0% 0 0%);
    opacity: 0;
  }
}

@keyframes boot-glow {
  0% {
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes boot-ping {
  0% {
    opacity: 0.8;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(3);
  }
}

/* Hero list items — larger & more readable */
.section-hero-v1 .tf-list.vertical {
  gap: 14px !important;
}

.section-hero-v1 .tf-list a {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  color: var(--text-mid) !important;
  transition: color 0.25s ease !important;
}

.section-hero-v1 .tf-list a:hover {
  color: var(--green-live) !important;
}

/* AVAILABLE FOR WORK badge */
.text-has-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── 8. Data Stream Ticker ───────────────────────────────────── */
.sorix-ticker {
  background: var(--bg-surface);
  border-top: 1px solid var(--green-border);
  border-bottom: 1px solid var(--green-border);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  z-index: 5;
}

.sorix-ticker::before,
.sorix-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.sorix-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface), transparent);
}

.sorix-ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-surface), transparent);
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  align-items: center;
}

.ticker-track span {
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  flex-shrink: 0;
}

.ticker-track span.ticker-sep {
  color: var(--green-live);
  font-size: 14px;
  line-height: 1;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

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

/* ── 9. Section Header System ────────────────────────────────── */
.s-header {
  position: relative;
}

.section-label {
  display: block;
  font-family: 'Exo 2', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--green-live) !important;
  margin-bottom: 16px !important;
}

.section-subtitle {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-mid);
  line-height: 1.65;
  font-size: 16px;
}

/* ── 10. Featured Works Section ─────────────────────────────── */
.section-feature {
  background: var(--bg-body);
  position: relative;
}

.section-feature::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wg-feature-v01 .feature-image {
  border-radius: 12px !important;
  overflow: hidden;
}

.wg-feature-v01:hover .feature-image img {
  filter: brightness(0.95) saturate(1.05);
}

/* ── 11. Services Section — Premium Cards ───────────────────── */
.section-services {
  background: var(--bg-body);
  position: relative;
}

.section-services::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  pointer-events: none;
}

/* Redesigned service card grid */
.services-grid {
  gap: 0 !important;
  background: transparent !important;
  border: 1px solid var(--green-border) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 575px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

.service-card {
  background: var(--bg-surface) !important;
  border-radius: 0 !important;
  transition: background 0.35s ease !important;
  transform: none !important;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

/* Dividers between cards (not left stripe - it's a full border separator) */
.service-card:not(:last-child) {
  border-right: 1px solid var(--green-border);
}

@media (max-width: 991px) {
  .service-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--green-border);
  }
}

/* Hover green wash overlay */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--green-glow-md) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover {
  background: var(--bg-elevated) !important;
}

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

.service-card img {
  filter: grayscale(20%) brightness(0.8);
  transition: filter 0.45s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover img {
  filter: grayscale(0%) brightness(0.9);
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-content h5 {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.card-content ul li::before {
  color: var(--green-live) !important;
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}

/* ── 12. Process Section ─────────────────────────────────────── */
.section-process {
  background: var(--bg-body);
}

.wg-process {
  border: 1px solid var(--border-subtle) !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.2, 0, 0.2, 1) !important;
}

.wg-process:hover {
  border-color: var(--green-border) !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--green-dim) inset !important;
}

.wg-process .title {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
}

/* ── 13. About Section ───────────────────────────────────────── */
.section-about-me {
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.section-about-me::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  transform: translateY(-50%);
  pointer-events: none;
}

.sorix-video {
  border: 1px solid var(--green-border) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}

.experience-list li .exp_name {
  font-family: 'Exo 2', sans-serif !important;
}

/* ── 14. Ecosystem — AI Tech Marquee ─────────────────────────── */
.section-ecosystem {
  background: var(--bg-body) !important;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  overflow: hidden;
  position: relative;
}

.section-ecosystem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.section-ecosystem .container,
.ecosystem-list {
  position: relative;
  z-index: 1;
}

.ecosystem-heading {
  font-family: 'Exo 2', sans-serif !important;
  font-size: clamp(24px, 3.5vw, 48px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.ecosystem-row {
  margin-bottom: 48px !important;
}

/* Fade masks on side edges */
.infiniteSlide_tech_main {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

/* Alternate direction for visual depth */
.ecosystem-row:nth-child(2) .infiniteSlide {
  animation-direction: reverse;
}

.app_item {
  padding: 9px 20px !important;
  background: var(--bg-elevated) !important;
  border: 1px solid var(--green-border) !important;
  border-radius: 4px !important;
  font-family: 'Exo 2', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  color: var(--text-mid) !important;
  text-transform: uppercase !important;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease !important;
}

.app_item:hover {
  background: var(--green-dim) !important;
  color: var(--text-bright) !important;
  border-color: var(--green-live) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ── 15. Testimonials Section ────────────────────────────────── */
.section-testimonial {
  background: var(--bg-body);
}

.review-image {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--green-border) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  transition: border-color 0.3s ease, transform 0.3s ease !important;
}

.review-image:hover {
  border-color: rgba(7, 196, 44, 0.4) !important;
  transform: translateY(-4px) !important;
}

/* ── 16. Stats / Indicators ──────────────────────────────────── */
.indicator-wrap {
  background: var(--bg-surface) !important;
  border-top: 1px solid var(--green-border) !important;
  border-bottom: 1px solid var(--green-border) !important;
  position: relative;
  overflow: hidden;
}

.indicator-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.indicator-wrap .container {
  position: relative;
  z-index: 1;
}

.wg-indicator {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

/* Vertical dividers between stats */
.wg-indicator:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--green-border);
}

.wg-indicator .indicate-counter {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

.wg-indicator .indicate-title {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
}

.wg-indicator .indicate-sub {
  font-size: 13px !important;
  color: var(--text-quiet) !important;
  line-height: 1.5 !important;
}

/* ── 17. Pricing Section ─────────────────────────────────────── */
.section-pricing {
  background: var(--bg-body);
  position: relative;
  overflow: hidden;
}

.section-pricing::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  pointer-events: none;
}

.wg-plan {
  background: var(--bg-surface) !important;
  border: 1px solid var(--green-border) !important;
  border-radius: 16px !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease !important;
}

.wg-plan:hover {
  border-color: rgba(7, 196, 44, 0.4) !important;
  box-shadow: 0 0 48px var(--green-glow-md), 0 24px 48px rgba(0, 0, 0, 0.4) !important;
}

.wg-plan.style-2 {
  border-color: var(--green-border) !important;
  background: var(--bg-card) !important;
}

.wg-plan .plan-name {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  color: var(--text-mid) !important;
}

.wg-plan .plan-price {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

/* Custom AI Solution — clean block */
.custom-ai-block {
  max-width: 840px;
  margin: 48px auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  padding: 56px 48px 48px;
  position: relative;
  text-align: center;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 767px) {
  .custom-ai-block {
    padding: 48px 24px 40px;
  }
}

.custom-ai-block:hover {
  border-color: rgba(7, 196, 44, 0.4);
  box-shadow: 0 0 48px var(--green-glow-md);
}

.custom-ai-block .plan-badge {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-live);
  color: #000;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.custom-ai-block .plan-title {
  font-family: 'Exo 2', sans-serif !important;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text-bright);
}

.custom-ai-block .plan-description {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

.custom-ai-block .plan-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  max-width: 540px;
  margin: 0 auto 40px;
  text-align: left;
  list-style: none;
  padding: 0;
}

@media (max-width: 575px) {
  .custom-ai-block .plan-features {
    grid-template-columns: 1fr;
  }
}

.custom-ai-block .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.01em;
}

.custom-ai-block .plan-features li::before {
  content: '//';
  color: var(--green-live);
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

.custom-ai-block .plan-note {
  font-size: 12px;
  color: var(--text-quiet);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ── 18. FAQ Section ─────────────────────────────────────────── */
.section-faq {
  background: var(--bg-body);
}

.accordion-faq_item {
  transition: border-bottom-color 0.3s ease;
}

.accordion-faq_item:hover {
  border-bottom-color: var(--green-border) !important;
}

.accordion-order {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  color: var(--green-live) !important;
  min-width: 28px;
  flex-shrink: 0;
}

/* ── 19. Contact / CTA Section ───────────────────────────────── */
.section-cta {
  background: var(--bg-body);
  overflow: hidden;
  position: relative;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.section-cta .container,
.section-cta .s-header {
  position: relative;
  z-index: 1;
}

.section-cta h2 {
  font-family: 'Exo 2', sans-serif !important;
}

/* Contact form: stack 2-col grids on mobile */
@media (max-width: 575px) {
  #automationForm div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Form input refinements */
.tf-input {
  caret-color: var(--green-live) !important;
  transition: border-bottom-color 0.25s ease !important;
}

.tf-input:focus {
  border-bottom-color: var(--green-live) !important;
  outline: none !important;
}

.tf-input::placeholder {
  color: var(--text-quiet) !important;
}

/* ── 20. Footer ──────────────────────────────────────────────── */
.tf-footer {
  background: var(--bg-surface) !important;
  border-top: 1px solid var(--green-border) !important;
}

.footer-menu-list li {
  position: relative;
}

.footer-menu-list a {
  position: relative;
  display: inline-block;
  font-family: 'Exo 2', sans-serif !important;
  transition: color 0.25s ease !important;
}

/* ── 21. Pulsing Dot — "Available for Work" ──────────────────── */
@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(7, 196, 44, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(7, 196, 44, 0);
  }
}

.br-dot {
  animation: pulse-green 2.5s ease infinite !important;
}

/* ── 22. Button — Branded gradient CTA ───────────────────────── */
.tf-btn {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  font-size: 12px !important;
  height: 50px !important;
  padding: 0 36px !important;
  border-radius: 6px !important;
  color: #04070d !important;
  background: linear-gradient(135deg, #00e878 0%, #00be64 55%, #3ecfff 100%) !important;
  border: none !important;
  box-shadow: 0 0 22px rgba(0, 232, 120, 0.35), 0 4px 18px rgba(0, 0, 0, 0.45) !important;
  animation: btn-pulse-glow 2.8s ease-in-out infinite alternate !important;
  overflow: hidden !important;
  position: relative !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

/* shimmer sweep */
.tf-btn::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: -110% !important;
  width: 55% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%) !important;
  border-radius: 0 !important;
  animation: btn-shimmer 3s ease-in-out infinite !important;
  transition: none !important;
}

@keyframes btn-shimmer {
  0% {
    left: -110%;
  }

  55% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

@keyframes btn-pulse-glow {
  0% {
    box-shadow: 0 0 18px rgba(0, 232, 120, 0.30), 0 4px 16px rgba(0, 0, 0, 0.40);
  }

  100% {
    box-shadow: 0 0 42px rgba(0, 232, 120, 0.70), 0 0 64px rgba(62, 207, 255, 0.22), 0 6px 22px rgba(0, 0, 0, 0.45);
  }
}

/* ── 22b. Button — outline ghost variant ─────────────────────── */
.tf-btn-ghost,
.tf-btn.style-ghost {
  background: transparent !important;
  border: 1px solid rgba(0, 232, 120, 0.30) !important;
  color: rgba(195, 220, 248, 0.80) !important;
  box-shadow: none !important;
  animation: none !important;
}

.tf-btn-ghost::before,
.tf-btn.style-ghost::before {
  display: none !important;
}

.tf-btn-ghost:hover,
.tf-btn.style-ghost:hover {
  background: rgba(0, 232, 120, 0.08) !important;
  border-color: rgba(0, 232, 120, 0.55) !important;
  color: var(--green-live) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

/* ── 23. Mobile Offcanvas ────────────────────────────────────── */
.offcanvas-menu .offcanvas-content {
  background: var(--bg-body) !important;
}

.mb-menu-link .text {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
}

/* ── 23b. Mobile Sub-Menu ───────────────────────────────────── */
.mb-sub-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 232, 120, 0.12);
  border: 1px solid var(--green-border);
  color: var(--green-live);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
  line-height: 1;
}

.mb-sub-toggle:hover {
  background: rgba(0, 232, 120, 0.22);
}

.nav-ul-mb .has-sub > .item {
  position: relative;
}

.mb-sub-menu {
  display: none;
  list-style: none;
  padding: 12px 0 8px 16px;
  margin: 0;
}

.mb-sub-menu.is-open {
  display: block;
}

.mb-sub-menu li {
  margin-bottom: 8px;
}

.mb-sub-menu a {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  border-left: 2px solid var(--green-border);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mb-sub-menu a:hover {
  color: var(--green-live);
  border-color: var(--green-live);
}

/* ── 24. Scroll Top Button ───────────────────────────────────── */
#goTop {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--green-border) !important;
}

/* ── 25. Global Section Backgrounds ─────────────────────────── */
.section-feature,
.section-services,
.section-process,
.section-about-me,
.section-faq,
.section-testimonial,
.section-pricing,
.section-cta {
  background: var(--bg-body);
}

/* ── 26. Smooth Scrollbar ────────────────────────────────────── */
html {
  scrollbar-color: var(--green-live) var(--bg-surface);
  scrollbar-width: thin;
}

body::-webkit-scrollbar-thumb {
  background: var(--green-live) !important;
  border-radius: 2px;
}

body::-webkit-scrollbar-track {
  background: var(--bg-surface) !important;
}

/* ── 27. Signature small logo ────────────────────────────────── */
.signature img {
  filter: brightness(1.1);
}

/* ── 28. Text refinements for body copy ─────────────────────── */
.section-services .s-header p,
.section-feature .s-header p,
.section-testimonial .s-header p {
  color: var(--text-mid) !important;
}

/* ── 29. Hero bottom fade ─────────────────────────────────────── */
.section-hero-v1>.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-body) 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── 30. Language Switcher (flags in nav) ────────────────────── */
.lang-nav-item {
  display: flex !important;
  align-items: center;
  gap: 2px;
  padding-left: 16px;
  border-left: 1px solid var(--border-subtle);
  margin-left: 8px;
}

.lang-btn {
  background: none;
  border: none;
  font-size: 18px;
  /* flag emoji size */
  line-height: 1;
  padding: 4px 5px;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
}

.lang-btn:hover {
  opacity: 0.9;
  transform: scale(1.12);
}

.lang-btn.active {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 4px rgba(7, 196, 44, 0.4));
}

/* ── 31. Animated Workflow Diagram ───────────────────────────── */
.section-workflow {
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.section-workflow::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.workflow-diagram {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  position: relative;
}

/* Connector lines between nodes */
.workflow-connector {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 40px;
}

.workflow-connector::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green-border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.workflow-connector .flow-packet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--green-live);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-live);
  left: 0;
  opacity: 0;
}

/* Node cards */
.workflow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.node-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.node-icon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: var(--green-glow);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.workflow-node h4 {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  color: var(--text-bright) !important;
  margin: 0 !important;
}

.workflow-node p {
  font-size: 11px;
  color: var(--text-quiet);
  line-height: 1.5;
  margin: 0;
}

/* Active state — triggered by JS IntersectionObserver */
.workflow-diagram.is-active .workflow-node {
  opacity: 1;
  transform: translateY(0);
}

.workflow-diagram.is-active .workflow-node:nth-child(1) {
  transition-delay: 0.0s;
}

.workflow-diagram.is-active .workflow-node:nth-child(3) {
  transition-delay: 0.3s;
}

.workflow-diagram.is-active .workflow-node:nth-child(5) {
  transition-delay: 0.6s;
}

.workflow-diagram.is-active .workflow-node:nth-child(7) {
  transition-delay: 0.9s;
}

.workflow-diagram.is-active .workflow-node:nth-child(9) {
  transition-delay: 1.2s;
}

.workflow-diagram.is-active .workflow-connector::before {
  transform: scaleX(1);
}

.workflow-diagram.is-active .workflow-connector:nth-child(2)::before {
  transition-delay: 0.25s;
}

.workflow-diagram.is-active .workflow-connector:nth-child(4)::before {
  transition-delay: 0.55s;
}

.workflow-diagram.is-active .workflow-connector:nth-child(6)::before {
  transition-delay: 0.85s;
}

.workflow-diagram.is-active .workflow-connector:nth-child(8)::before {
  transition-delay: 1.15s;
}

/* Lit node icon */
.workflow-diagram.is-active .workflow-node .node-icon {
  border-color: var(--green-live);
  box-shadow: 0 0 20px rgba(7, 196, 44, 0.2);
  background: var(--bg-elevated);
}

.workflow-diagram.is-active .workflow-node .node-icon::after {
  opacity: 1;
}

/* Mobile: vertical layout */
@media (max-width: 767px) {
  .workflow-diagram {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .workflow-connector {
    width: 1px;
    height: 40px;
    min-width: unset;
    flex: unset;
  }

  .workflow-connector::before {
    left: 0;
    right: unset;
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }

  .workflow-diagram.is-active .workflow-connector::before {
    transform: scaleY(1);
  }
}

/* ── 32. ROI Calculator ──────────────────────────────────────── */
.section-roi {
  background: var(--bg-body);
  position: relative;
}

/* ── Trust / Social Proof Strip ──────────────────────────────────── */
.section-trust {
  border-top: 1px solid rgba(195, 220, 248, 0.06);
  border-bottom: 1px solid rgba(195, 220, 248, 0.06);
}

.trust-eyebrow {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(195, 220, 248, 0.4);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

/* Industry grid */
.trust-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 56px;
}

@media (max-width: 992px) {
  .trust-industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-industry-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.trust-industry-tile {
  background: rgba(195, 220, 248, 0.02);
  border: 1px solid rgba(195, 220, 248, 0.08);
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.trust-industry-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 232, 120, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.trust-industry-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 232, 120, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.trust-industry-tile:hover {
  border-color: rgba(195, 220, 248, 0.15);
  background: rgba(195, 220, 248, 0.04);
  transform: translateY(-2px);
}

.trust-industry-tile:hover::before,
.trust-industry-tile:hover::after {
  opacity: 1;
}

.trust-tile-icon {
  font-size: 1.1rem;
  color: var(--green-live);
  opacity: 0.65;
  line-height: 1;
  display: block;
}

.trust-tile-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(195, 220, 248, 0.88);
  letter-spacing: -0.01em;
  display: block;
}

.trust-tile-desc {
  font-size: 0.75rem;
  color: rgba(195, 220, 248, 0.42);
  line-height: 1.55;
  display: block;
}

/* Platform strip */
.trust-platform-strip {
  text-align: center;
}

/* Legacy — keep these so old pill markup doesn't break if cached */
.trust-industry-pill { display: none; }
.trust-platform-badge { display: none; }

.roi-card {
  background: var(--bg-card);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  padding: 52px 56px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.roi-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(7, 196, 44, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.roi-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}

@media (max-width: 600px) {
  .roi-inputs {
    grid-template-columns: 1fr;
  }

  .roi-card {
    padding: 32px 24px;
  }
}

.roi-field label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-live);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.roi-field .roi-value-display {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text-bright);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.roi-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--bg-elevated);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-live);
  box-shadow: 0 0 10px rgba(7, 196, 44, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.roi-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-live);
  border: none;
  cursor: pointer;
}

.roi-result {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--green-border);
  text-align: center;
}

.roi-result .result-pre {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.roi-result .result-number {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  color: var(--green-live);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  transition: transform 0.15s ease;
}

.roi-result .result-post {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* ── 33. Trust Badge Row ─────────────────────────────────────── */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-quiet);
  text-transform: uppercase;
}

.trust-badge svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--green-live);
  stroke-width: 2;
  flex-shrink: 0;
}

@keyframes packet-flow {
  0% {
    left: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ── 35. Decorative section separator ───────────────────────── */
.section-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-border), transparent);
  margin: 0;
}

/* ── 31. Breathing room — sections feel less packed ──────────── */
/* Increase inter-section spacing on large screens */
@media (min-width: 1200px) {
  .flat-spacing {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
  }
}

/* More space below section labels so they don't sit on headings */
.section-label {
  display: block;
  margin-bottom: 16px !important;
}

/* Hero content: push list down a bit from the top */
.section-hero-v1 .col-left .tf-list {
  margin-bottom: 200px !important;
}

.section-hero-v1 .col-right .top {
  margin-bottom: 200px !important;
}

@media (max-width: 1599px) {
  .section-hero-v1 .col-left .tf-list {
    margin-bottom: 120px !important;
  }

  .section-hero-v1 .col-right .top {
    margin-bottom: 120px !important;
  }
}

@media (max-width: 991px) {
  .section-hero-v1 .col-left .tf-list {
    margin-bottom: 32px !important;
  }

  .section-hero-v1 .col-right .top {
    margin-bottom: 32px !important;
  }
}

/* ── 32. Performance — GPU compositing hints ─────────────────── */
#neural-bg,
.hero-boot,
.sorix-ticker .ticker-track,
.section-hero-v1 .content-wrap::before {
  will-change: transform;
  transform: translateZ(0);
}

/* Contain layout recalc to each section */
.flat-spacing {
  contain: layout style;
}

/* Reduce paint cost on animated canvas */
#neural-bg {
  contain: strict;
}

/* ================================================================
   SORIX VISUAL UPGRADE v2 — Drama, Depth & Color Variety
   ================================================================ */

/* ── V1. Section background alternation — no more flat monotone ── */
.section-workflow {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      var(--bg-surface) 50%,
      var(--bg-body) 100%) !important;
  border-top: 1px solid rgba(0, 232, 120, 0.10) !important;
  border-bottom: 1px solid rgba(0, 232, 120, 0.10) !important;
}

.section-testimonial {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      var(--bg-surface) 100%) !important;
}

.indicator-wrap {
  background: linear-gradient(180deg,
      var(--bg-surface) 0%,
      rgba(12, 21, 50, 0.9) 100%) !important;
}

.section-pricing {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      rgba(7, 9, 28, 1) 50%,
      var(--bg-body) 100%) !important;
}

.section-faq {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      rgba(9, 14, 36, 1) 100%) !important;
}

.section-cta {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      rgba(6, 11, 30, 1) 50%,
      var(--bg-body) 100%) !important;
}

.tf-footer {
  background: var(--bg-surface) !important;
}

/* ── V2. Service cards — gradient background + animated top bar ── */
.service-card {
  background: linear-gradient(160deg,
      rgba(12, 21, 50, 0.85) 0%,
      rgba(7, 9, 28, 0.95) 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Animated rainbow-to-green gradient top border on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--green-live),
      var(--accent-blue),
      var(--green-live),
      transparent);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 3;
}

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

/* ── V3. Process cards — richer look (no bg image needed) ──────── */
.wg-process .bg-img {
  display: none !important;
}

.wg-process {
  background: linear-gradient(145deg,
      rgba(12, 21, 50, 0.9),
      rgba(7, 9, 28, 1)) !important;
}

/* ── V4. Featured work — richer hover overlay ────────────────────── */
.wg-feature-v01 {
  border-radius: 12px;
  overflow: hidden;
}

/* ── V5. Pricing cards — featured plan elevated + glowing ─────────── */
.tf-grid-layout.md-col-2.lg-col-3 .wg-plan.style-2:nth-child(2) {
  background: linear-gradient(155deg,
      rgba(0, 45, 20, 0.55) 0%,
      rgba(7, 9, 28, 0.95) 100%) !important;
  border-color: rgba(0, 232, 120, 0.45) !important;
  box-shadow:
    0 0 60px rgba(0, 232, 120, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 232, 120, 0.15) inset !important;
  transform: translateY(-6px) !important;
}

.tf-grid-layout.md-col-2.lg-col-3 .wg-plan.style-2:nth-child(2):hover {
  transform: translateY(-10px) !important;
  box-shadow:
    0 0 80px rgba(0, 232, 120, 0.18),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 232, 120, 0.25) inset !important;
}

/* ── V6. All pricing cards — smooth lift on hover ─────────────────── */
.wg-plan {
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.2, 0, 0.2, 1) !important;
}

.wg-plan:hover {
  transform: translateY(-6px) !important;
}

/* ── V7. ROI Card — premium feel ──────────────────────────────────── */
.roi-card {
  background: linear-gradient(135deg,
      rgba(12, 21, 50, 1) 0%,
      rgba(7, 9, 28, 1) 40%,
      rgba(7, 9, 28, 1) 60%,
      rgba(9, 14, 36, 1) 100%) !important;
  box-shadow:
    0 0 80px rgba(0, 232, 120, 0.07),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 232, 120, 0.12) inset !important;
}

/* ── V8. Custom AI block — standout ──────────────────────────────── */
.custom-ai-block {
  background: linear-gradient(145deg,
      rgba(12, 21, 50, 0.95) 0%,
      rgba(7, 9, 28, 1) 100%) !important;
  border-color: rgba(0, 232, 120, 0.28) !important;
  box-shadow:
    0 0 80px rgba(0, 232, 120, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.45) !important;
}

/* ── V9. Workflow nodes — more dramatic glow ──────────────────────── */
.workflow-diagram.is-active .workflow-node .node-icon {
  background: linear-gradient(145deg,
      rgba(0, 232, 120, 0.12),
      var(--bg-elevated)) !important;
  border-color: var(--green-live) !important;
  box-shadow:
    0 0 28px rgba(0, 232, 120, 0.30),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.workflow-connector .flow-packet {
  background: var(--green-live) !important;
  box-shadow: 0 0 10px var(--green-live), 0 0 20px rgba(0, 232, 120, 0.4) !important;
}

/* ── V10. Ecosystem items — richer blue-dark background ───────────── */
.app_item {
  background: rgba(9, 14, 36, 0.9) !important;
  border-color: rgba(0, 232, 120, 0.15) !important;
}

.app_item:hover {
  background: rgba(0, 232, 120, 0.1) !important;
  border-color: var(--green-live) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 12px rgba(0, 232, 120, 0.15) !important;
}

/* ── V11. Ticker — add blue+green shimmer to separators ───────────── */
.ticker-track span.ticker-sep {
  color: var(--green-live) !important;
  text-shadow: 0 0 8px rgba(0, 232, 120, 0.6);
}

/* ── V12. Section label — glow effect ────────────────────────────── */
.section-label {
  color: var(--green-live) !important;
  text-shadow: 0 0 12px rgba(0, 232, 120, 0.5);
}

/* ── V13. Hero Aurora — floating colour blobs ────────────────────── */
.hero-aurora {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
  will-change: transform;
}

.hero-aurora--green {
  width: 65vw;
  height: 65vw;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 232, 120, 0.28) 0%, transparent 65%);
  animation: aurora-a 10s ease-in-out infinite alternate;
}

.hero-aurora--blue {
  width: 50vw;
  height: 50vw;
  top: 10%;
  right: -8%;
  background: radial-gradient(circle, rgba(62, 207, 255, 0.22) 0%, transparent 65%);
  animation: aurora-b 13s ease-in-out infinite alternate;
}

.hero-aurora--green2 {
  width: 45vw;
  height: 45vw;
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(0, 232, 120, 0.16) 0%, transparent 65%);
  animation: aurora-c 8s ease-in-out infinite alternate;
}

@keyframes aurora-a {
  0% {
    transform: translate(0, 0) scale(1.0);
    opacity: 0.7;
  }

  100% {
    transform: translate(8%, 12%) scale(1.3);
    opacity: 1.0;
  }
}

@keyframes aurora-b {
  0% {
    transform: translate(0, 0) scale(1.0);
    opacity: 0.6;
  }

  100% {
    transform: translate(-6%, 10%) scale(1.2);
    opacity: 0.9;
  }
}

@keyframes aurora-c {
  0% {
    transform: translate(0, 0) scale(1.0);
    opacity: 0.5;
  }

  100% {
    transform: translate(-5%, -8%) scale(1.25);
    opacity: 0.8;
  }
}

/* ── Mobile: disable expensive aurora blobs & reduce canvas ────────── */
@media (max-width: 991px) {
  .hero-aurora {
    display: none !important;
  }

  #neural-bg {
    opacity: 0.4 !important;
    animation: none !important;
  }
}

/* ── V14. Header sticky — blue-tinted glass ───────────────────────── */
header.header-sticky {
  background: rgba(4, 7, 13, 0.92) !important;
  backdrop-filter: blur(28px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(28px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(0, 232, 120, 0.18) !important;
  box-shadow: 0 1px 0 rgba(0, 232, 120, 0.18), 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* ── V15. Process section — subtle gradient tint ─────────────────── */
.section-process {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      rgba(7, 9, 28, 1) 50%,
      var(--bg-body) 100%) !important;
}

/* ── V16. About section — darker blue center ─────────────────────── */
.section-about-me {
  background: linear-gradient(180deg,
      var(--bg-body) 0%,
      rgba(6, 10, 28, 1) 50%,
      var(--bg-body) 100%) !important;
}

/* ── V17. Review images — richer card ─────────────────────────────── */
.review-image {
  background: linear-gradient(145deg, rgba(12, 21, 50, 0.9), rgba(7, 9, 28, 1)) !important;
  border-color: rgba(0, 232, 120, 0.18) !important;
}

/* ── V18. Button — hover lift & colour flip ─────────────────────── */
.tf-btn:hover {
  color: #04070d !important;
  background: linear-gradient(135deg, #3ecfff 0%, #00e878 100%) !important;
  box-shadow: 0 0 52px rgba(0, 232, 120, 0.75), 0 0 80px rgba(62, 207, 255, 0.28), 0 8px 28px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-3px) !important;
  animation: none !important;
}

.tf-btn:hover::before {
  animation: none !important;
  left: 130% !important;
}

/* ── V19. Hero sorix-large text — solid white with glow ────── */
.sorix-large {
  color: var(--text-bright);
}

.sorix-large .effectFade {
  display: inline-block;
  color: #eaf4ff;
  animation: hero-text-glow 3s ease-in-out infinite alternate;
}

@keyframes hero-text-glow {
  0% {
    filter: drop-shadow(0 0 18px rgba(0, 232, 120, 0.40)) drop-shadow(0 0 40px rgba(0, 232, 120, 0.15));
  }

  100% {
    filter: drop-shadow(0 0 52px rgba(0, 232, 120, 0.75)) drop-shadow(0 0 80px rgba(62, 207, 255, 0.28)) drop-shadow(0 0 120px rgba(0, 232, 120, 0.18));
  }
}

/* ── V20. CSS Flag Icons — cross-platform, no emoji needed ────────── */
.flag-icon {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  vertical-align: middle;
  pointer-events: none;
}

/* Netherlands: Red / White / Blue horizontal stripes */
.flag-nl {
  background: linear-gradient(to bottom,
      #AE1C28 0%, #AE1C28 33.33%,
      #FFFFFF 33.33%, #FFFFFF 66.67%,
      #21468B 66.67%, #21468B 100%);
}

/* France: Blue / White / Red vertical stripes */
.flag-fr {
  background: linear-gradient(to right,
      #002395 0%, #002395 33.33%,
      #FFFFFF 33.33%, #FFFFFF 66.67%,
      #ED2939 66.67%, #ED2939 100%);
}

/* UK Union Jack — horizontal + vertical white cross over blue,
   then the red cross on top */
.flag-gb {
  background: #012169;
}

.flag-gb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, #FFFFFF 40%, #FFFFFF 60%, transparent 60%),
    linear-gradient(to right, transparent 37%, #FFFFFF 37%, #FFFFFF 63%, transparent 63%);
}

.flag-gb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 45%, #CF142B 45%, #CF142B 55%, transparent 55%),
    linear-gradient(to right, transparent 41%, #CF142B 41%, #CF142B 59%, transparent 59%);
}

/* Update lang-btn to flex with flag + label */
.lang-btn {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: var(--text-mid) !important;
  padding: 5px 8px !important;
}

.lang-btn.active {
  color: var(--text-bright) !important;
}

.lang-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── V21. Wg-indicator numbers — green glow on counter ───────────── */
.wg-indicator .indicate-counter {
  color: var(--text-bright) !important;
}

.wg-indicator .indicate-counter .text-primary {
  color: var(--green-live) !important;
  text-shadow: 0 0 12px rgba(0, 232, 120, 0.5);
}

/* ── V22. Section feature radial — more vibrant ──────────────────── */
.section-feature::after {
  background: radial-gradient(circle,
      rgba(0, 232, 120, 0.09) 0%,
      rgba(62, 207, 255, 0.03) 40%,
      transparent 70%) !important;
  width: 800px;
  height: 800px;
}

/* ── V23. Services section radial bloom ──────────────────────────── */
.section-services::before {
  background: radial-gradient(circle,
      rgba(62, 207, 255, 0.06) 0%,
      rgba(0, 232, 120, 0.04) 40%,
      transparent 70%) !important;
}

/* ── V24. Pricing section glow — dual color ──────────────────────── */
.section-pricing::before {
  background: radial-gradient(circle,
      rgba(0, 232, 120, 0.07) 0%,
      rgba(62, 207, 255, 0.04) 40%,
      transparent 70%) !important;
}

/* ── V25. CTA section — blue grid instead of pure white ──────────── */
.section-cta::before {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   REVAMP V2 — New elements added in full website content revamp
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section subtitle paragraphs ────────────────────────────────── */
.section-subtitle {
  font-family: var(--font-body, 'Figtree', sans-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(195, 220, 248, 0.68);
  max-width: 620px;
  margin: 0.75rem 0 0;
}

/* ── Work card description paragraphs ───────────────────────────── */
.feature-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(195, 220, 248, 0.62);
  margin: 8px 0 0;
}

/* ── Services grid — 6-card border fix ──────────────────────────── */
/* Desktop (3-col): remove right border on 3rd column */
.services-grid .service-card:nth-child(3n) {
  border-right: none !important;
}

/* Desktop: add bottom border between rows 1 and 2 */
.services-grid .service-card:nth-child(-n+3) {
  border-bottom: 1px solid var(--green-border, rgba(0, 232, 120, 0.12)) !important;
}

/* Tablet (2-col, 576–991px) */
@media (max-width: 991px) and (min-width: 576px) {
  .services-grid .service-card:nth-child(3n) {
    border-right: 1px solid var(--green-border, rgba(0, 232, 120, 0.12)) !important;
  }

  .services-grid .service-card:nth-child(-n+3) {
    border-bottom: none !important;
  }

  .services-grid .service-card:nth-child(2n) {
    border-right: none !important;
  }

  .services-grid .service-card:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid var(--green-border, rgba(0, 232, 120, 0.12)) !important;
  }
}

/* Mobile (single column) */
@media (max-width: 575px) {
  .services-grid .service-card:nth-child(3n) {
    border-right: 1px solid var(--green-border, rgba(0, 232, 120, 0.12)) !important;
  }

  .services-grid .service-card:nth-child(-n+3) {
    border-bottom: none !important;
  }

  .services-grid .service-card:not(:last-child) {
    border-bottom: 1px solid var(--green-border, rgba(0, 232, 120, 0.12)) !important;
    border-right: none !important;
  }
}

/* ── About — body text paragraphs ───────────────────────────────── */
.about-body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(195, 220, 248, 0.68);
  margin-bottom: 0;
}

/* ── About — credentials strip ──────────────────────────────────── */
.credentials-strip {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credentials-strip li {
  font-family: var(--font-body, 'Figtree', sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(195, 220, 248, 0.75);
  padding-left: 22px;
  position: relative;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.credentials-strip li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-live, #00e878);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* ── Testimonials — text testimonial cards ──────────────────────── */
/* ── Testimonials Grid ───────────────────────────────────────── */
.tpc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 52px 0 0;
}

.tpc-featured {
  grid-column: 1 / -1;
}

@media (max-width: 991px) {
  .tpc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tpc-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .tpc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ── Card Base ───────────────────────────────────────────────── */
.text-testimonial-card {
  background: rgba(12, 18, 48, 0.6);
  border: 1px solid rgba(0, 232, 120, 0.10);
  border-radius: 14px;
  padding: 26px 28px 22px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-testimonial-card:hover {
  border-color: rgba(0, 232, 120, 0.24);
  box-shadow: 0 4px 32px rgba(0, 232, 120, 0.07), 0 0 0 1px rgba(0, 232, 120, 0.06);
  transform: translateY(-2px);
}

/* Featured card gets extra accent */
.tpc-featured {
  background: rgba(10, 16, 40, 0.75);
  border-color: rgba(0, 232, 120, 0.18);
  padding: 32px 36px 28px;
}

.tpc-featured:hover {
  border-color: rgba(0, 232, 120, 0.32);
  box-shadow: 0 8px 48px rgba(0, 232, 120, 0.10), 0 0 0 1px rgba(0, 232, 120, 0.10);
}

/* ── Card Header ─────────────────────────────────────────────── */
.tpc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tpc-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 232, 120, 0.2) 0%, rgba(62, 207, 255, 0.15) 100%);
  border: 1px solid rgba(0, 232, 120, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #00e878;
  letter-spacing: 0;
  font-family: 'Exo 2', sans-serif;
}

.tpc-featured .tpc-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  font-size: 1.0625rem;
}

.tpc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.tpc-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #eaf4ff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tpc-location {
  font-size: 0.75rem;
  color: rgba(195, 220, 248, 0.45);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tpc-stars {
  font-size: 0.75rem;
  color: #00e878;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ── Quote ───────────────────────────────────────────────────── */
.text-testimonial-card .quote {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(195, 220, 248, 0.82);
  margin: 0;
  flex: 1;
  position: relative;
}

.tpc-featured .quote {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(195, 220, 248, 0.9);
}

/* Subtle left accent bar on featured */
.tpc-featured .quote::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, #00e878 0%, transparent 100%);
  border-radius: 2px;
  opacity: 0.5;
}


/* ── Testimonial Marquee ─────────────────────────────────────────── */
.tpc-marquee-wrap {
  margin-top: 28px;
  overflow: hidden;
  /* Fade edges so cards dissolve at sides */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.tpc-marquee {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  overflow: visible;
}

.tpc-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Animation handled entirely by JS drag-scroll loop */
.tpc-marquee-track {
  will-change: transform;
}

/* Cards inside marquee — fixed width, drag cursor */
.tpc-marquee .text-testimonial-card {
  width: 380px;
  min-width: 380px;
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
}

.tpc-marquee .text-testimonial-card:active {
  cursor: grabbing;
}

.tpc-marquee .text-testimonial-card:hover {
  border-color: rgba(0, 232, 120, 0.3);
  box-shadow: 0 0 40px rgba(0, 232, 120, 0.09);
}

/* Avatar image support */
.tpc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@media (max-width: 767px) {
  .tpc-marquee .text-testimonial-card {
    width: 300px;
    min-width: 300px;
  }
}

/* Country badge replacing flag emoji */
.tpc-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(195, 220, 248, 0.55);
  border: 1px solid rgba(195, 220, 248, 0.18);
  border-radius: 3px;
  padding: 1px 5px;
  background: rgba(195, 220, 248, 0.05);
  vertical-align: middle;
  margin-right: 4px;
  line-height: 1.6;
}

/* Featured card — full width, inside container */
.tpc-featured {
  margin-bottom: 0;
}

/* ── Pricing — inline "MOST POPULAR" badge ──────────────────────── */
.plan-badge-inline {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #04070d;
  background: linear-gradient(90deg, #00e878 0%, #3ecfff 100%);
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 8px;
  text-transform: uppercase;
  position: relative;
  top: -1px;
}

/* ── Contact — subheadline ───────────────────────────────────────── */
.contact-sub {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(195, 220, 248, 0.62);
  max-width: 420px;
  margin-left: auto;
  margin-top: 12px;
}

/* ── Contact — meta info block ──────────────────────────────────── */
.contact-meta {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 232, 120, 0.10);
}

.contact-meta-detail {
  font-size: 0.8125rem;
  color: rgba(165, 200, 230, 0.50);
  line-height: 1.6;
  margin: 4px 0 0;
}

/* ── Footer — tagline ───────────────────────────────────────────── */
.footer-tagline {
  text-align: center;
  padding: 0 0 18px;
}

.footer-tagline p {
  font-size: 0.875rem;
  color: rgba(165, 200, 230, 0.40);
  letter-spacing: 0.04em;
  margin: 0;
  font-style: italic;
}

/* ── Footer — main nav links ────────────────────────────────────── */
.footer-nav-link {
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: rgba(195, 220, 248, 0.75) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  line-height: 1.4 !important;
}

.footer-nav-link:hover {
  color: var(--green-live, #00e878) !important;
}

.footer-menu-list li {
  margin-bottom: 6px !important;
}

/* ── Footer — sub service links ─────────────────────────────────── */
.footer-sub-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-sub-item {
  font-size: 0.8125rem !important;
  color: rgba(165, 200, 230, 0.45) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  padding-left: 10px !important;
  position: relative !important;
  letter-spacing: 0.02em !important;
}

.footer-sub-item::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--green-live, #00e878);
  opacity: 0.6;
}

.footer-sub-item:hover {
  color: var(--green-live, #00e878) !important;
}

/* ── Testimonial section subtitle centred ───────────────────────── */
.section-results .section-subtitle,
.section-testimonial .section-subtitle {
  margin: 0.5rem auto 0;
  text-align: center;
}

/* ── Process step number prefix ─────────────────────────────────── */
.process-icon-step-num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-live, #00e878);
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}

/* ── Workflow 6th node — same styling as existing nodes ─────────── */
.workflow-node:nth-child(6) {
  /* inherits all existing .workflow-node styles — no extra override needed */
}

/* ── Mobile: section subtitle full-width ────────────────────────── */
@media (max-width: 575px) {
  .section-subtitle {
    max-width: 100%;
    font-size: 0.9375rem;
  }

  .contact-sub {
    text-align: left !important;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SERVICE TAGS — actual clickable service buttons
   ═══════════════════════════════════════════════════════════════════ */

.hero-service-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(195, 220, 248, 0.80);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid rgba(0, 232, 120, 0.18);
  border-radius: 4px;
  background: rgba(0, 232, 120, 0.04);
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-service-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 232, 120, 0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.hero-service-btn:hover::after {
  transform: translateX(100%);
}

.hero-service-btn:hover {
  color: var(--green-live, #00e878);
  border-color: rgba(0, 232, 120, 0.55);
  background: rgba(0, 232, 120, 0.08);
  transform: translateX(4px);
  text-decoration: none;
}

.hero-service-btn .btn-icon {
  font-size: 0.8125rem;
  color: var(--green-live, #00e878);
  opacity: 0.7;
  flex-shrink: 0;
  line-height: 1;
}

.hero-service-btn:hover .btn-icon {
  opacity: 1;
}

@media (max-width: 575px) {
  .hero-service-btn {
    font-size: 0.625rem;
    padding: 7px 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — upgraded brightness, depth, and animation system
   ═══════════════════════════════════════════════════════════════════ */

/* Brighter multi-layer hero background */
.section-hero-v1 {
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(0, 232, 120, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(62, 207, 255, 0.24) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(0, 232, 120, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 105%, rgba(62, 207, 255, 0.10) 0%, transparent 50%),
    #04070d !important;
}

/* Stronger horizontal glow line at bottom */
.section-hero-v1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 232, 120, 0.60) 25%,
      rgba(62, 207, 255, 0.55) 55%,
      rgba(0, 232, 120, 0.40) 75%,
      transparent 100%);
  box-shadow: 0 0 30px rgba(0, 232, 120, 0.25), 0 0 60px rgba(62, 207, 255, 0.12);
  z-index: 5;
  animation: hero-border-pulse 4s ease-in-out infinite alternate;
}

@keyframes hero-border-pulse {
  0% {
    opacity: 0.65;
    box-shadow: 0 0 20px rgba(0, 232, 120, 0.20);
  }

  100% {
    opacity: 1.0;
    box-shadow: 0 0 50px rgba(0, 232, 120, 0.45), 0 0 90px rgba(62, 207, 255, 0.18);
  }
}

/* Subtle aurora blobs — depth without overwhelming */
.hero-aurora--green {
  background: radial-gradient(circle, rgba(0, 232, 120, 0.18) 0%, rgba(0, 232, 120, 0.04) 50%, transparent 70%) !important;
  filter: blur(90px) !important;
}

.hero-aurora--blue {
  background: radial-gradient(circle, rgba(62, 207, 255, 0.14) 0%, rgba(62, 207, 255, 0.02) 50%, transparent 70%) !important;
  filter: blur(100px) !important;
}

.hero-aurora--green2 {
  background: radial-gradient(circle, rgba(0, 232, 120, 0.10) 0%, rgba(0, 232, 120, 0.02) 55%, transparent 72%) !important;
  filter: blur(110px) !important;
}

/* Neural canvas — opacity handled by fadeInNeural keyframe (ends at 0.92) */

/* Floating orb — center depth accent */
.section-hero-v1::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(0, 232, 120, 0.10) 0%,
      rgba(62, 207, 255, 0.07) 30%,
      transparent 70%);
  pointer-events: none;
  z-index: 1;
  animation: hero-orb-pulse 6s ease-in-out infinite alternate;
}

@keyframes hero-orb-pulse {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.5;
  }

  100% {
    transform: translateX(-50%) scale(1.15);
    opacity: 1.0;
  }
}

/* Hero service tag buttons — glowing animated ring */
.hero-service-btn {
  animation: tag-glow-in 0.6s ease both !important;
}

.hero-service-btn:nth-child(1) {
  animation-delay: 0.1s !important;
}

.hero-service-btn:nth-child(2) {
  animation-delay: 0.25s !important;
}

.hero-service-btn:nth-child(3) {
  animation-delay: 0.40s !important;
}

.hero-service-btn:nth-child(4) {
  animation-delay: 0.55s !important;
}

@keyframes tag-glow-in {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle continuous shimmer on hero service tags */
.hero-service-tags {
  position: relative;
}

.hero-service-tags::after {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 232, 120, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: tags-ambient 5s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes tags-ambient {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  100% {
    opacity: 1.0;
    transform: scale(1.05);
  }
}

/* Hero SORIX text — subtle glow, not overpowering */
.sorix-large .effectFade {
  animation: hero-text-glow-v2 4s ease-in-out infinite alternate !important;
}

@keyframes hero-text-glow-v2 {
  0% {
    filter: drop-shadow(0 0 8px rgba(0, 232, 120, 0.18));
  }

  100% {
    filter: drop-shadow(0 0 22px rgba(0, 232, 120, 0.32)) drop-shadow(0 0 44px rgba(62, 207, 255, 0.12));
  }
}

/* Hero desc text — subtle fade-up entrance */
.section-hero-v1 .bot .desc {
  animation: hero-desc-in 1.2s ease 0.8s both;
}

@keyframes hero-desc-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED PAGE LAYOUT — for service / about / faq pages
   ═══════════════════════════════════════════════════════════════════ */

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 232, 120, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 90% 50%, rgba(62, 207, 255, 0.10) 0%, transparent 55%),
    var(--bg-body, #04070d);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 232, 120, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 232, 120, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-live, #00e878);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.page-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-bright, #eaf4ff);
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(195, 220, 248, 0.68);
  max-width: 540px;
  margin-bottom: 32px;
}

.page-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(195, 220, 248, 0.55);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.page-hero-back:hover {
  color: var(--green-live, #00e878);
  text-decoration: none;
}

/* Inner page section spacing */
.inner-section {
  padding: 80px 0;
}

.inner-section-alt {
  padding: 80px 0;
  background: var(--bg-surface, #07091c);
}

/* Use case cards on service pages */
/* ── Process Steps ───────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  background: rgba(195, 220, 248, 0.03);
  border: 1px solid rgba(195, 220, 248, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s;
}

.process-step:hover {
  border-color: rgba(195, 220, 248, 0.16);
}

.process-step-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--green-live);
  display: block;
  margin-bottom: 14px;
  opacity: 0.8;
}

.process-step h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(195, 220, 248, 0.92);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(195, 220, 248, 0.55);
  margin: 0;
}

/* ── Use Case Grid ───────────────────────────────────────────────── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .usecase-grid {
    grid-template-columns: 1fr;
  }
}

.usecase-card {
  background: var(--bg-elevated, #0c1230);
  border: 1px solid rgba(0, 232, 120, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.usecase-card:hover {
  border-color: rgba(0, 232, 120, 0.20);
  box-shadow: 0 8px 40px rgba(0, 232, 120, 0.06);
  transform: translateY(-3px);
}

.usecase-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.3s;
}

.usecase-card:hover .usecase-card-img {
  filter: brightness(0.95) saturate(1.1);
}

.usecase-card-body {
  padding: 24px 26px;
}

.usecase-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-live, #00e878);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.usecase-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-bright, #eaf4ff);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.usecase-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(195, 220, 248, 0.65);
  margin: 0;
}

/* Feature list on inner pages */
.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 575px) {
  .feature-list-grid {
    grid-template-columns: 1fr;
  }
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(0, 232, 120, 0.03);
  border: 1px solid rgba(0, 232, 120, 0.08);
  border-radius: 8px;
}

.feature-list-item::before {
  content: '→';
  color: var(--green-live, #00e878);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-list-item span {
  font-size: 0.875rem;
  color: rgba(195, 220, 248, 0.75);
  line-height: 1.5;
}

/* FAQ page accordion */
.faq-page-item {
  border-bottom: 1px solid rgba(0, 232, 120, 0.10);
  padding: 24px 0;
}

.faq-page-question {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-bright, #eaf4ff);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-page-question .faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 232, 120, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-live, #00e878);
  font-size: 1rem;
  transition: background 0.2s, transform 0.3s;
}

.faq-page-item.open .faq-icon {
  background: rgba(0, 232, 120, 0.12);
  transform: rotate(45deg);
}

.faq-page-answer {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(195, 220, 248, 0.68);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-page-item.open .faq-page-answer {
  max-height: 400px;
  padding-top: 16px;
}

/* Contact page layout */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-info-block h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright, #eaf4ff);
  margin-bottom: 16px;
}

.contact-info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 232, 120, 0.08);
  font-size: 0.9375rem;
  color: rgba(195, 220, 248, 0.70);
}

.contact-info-line .info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--green-live, #00e878);
  text-transform: uppercase;
  min-width: 100px;
  flex-shrink: 0;
}

/* About page */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 767px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

.about-value-card {
  background: var(--bg-elevated, #0c1230);
  border: 1px solid rgba(0, 232, 120, 0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.about-value-card:hover {
  border-color: rgba(0, 232, 120, 0.18);
  box-shadow: 0 0 28px rgba(0, 232, 120, 0.05);
}

.about-value-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.about-value-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright, #eaf4ff);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(195, 220, 248, 0.62);
  margin: 0;
}

.team-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 48px 0;
}

@media (max-width: 767px) {
  .team-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-stat {
  background: var(--bg-elevated, #0c1230);
  padding: 28px 20px;
  text-align: center;
}

.team-stat .stat-num {
  font-family: 'Exo 2', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-live, #00e878);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.team-stat .stat-label {
  font-size: 0.8125rem;
  color: rgba(195, 220, 248, 0.55);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────────
   IMPECCABLE PASS — Premium polish layer
   ───────────────────────────────────────────────────────────────── */

/* Team stat row — subtle outer border */
.team-stat-row {
  border: 1px solid rgba(0, 232, 120, 0.10);
  border-radius: 12px;
  overflow: hidden;
}

/* Team stat — hover lift */
.team-stat {
  transition: background 0.25s ease;
}

.team-stat:hover {
  background: rgba(0, 232, 120, 0.06);
}

/* About values grid — consistent layout */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 991px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Section labels on sub-pages — no data-i18n needed */
.inner-section .section-label,
.inner-section-alt .section-label,
.page-hero .page-hero-label {
  text-shadow: 0 0 10px rgba(0, 232, 120, 0.45);
}

/* Inner section alt — more distinct from inner-section */
.inner-section-alt {
  background: var(--bg-surface, #07091c);
  border-top: 1px solid rgba(0, 232, 120, 0.07);
  border-bottom: 1px solid rgba(0, 232, 120, 0.07);
}

/* Page hero grid background */
.page-hero {
  isolation: isolate;
}

/* Workflow section heading */
.section-workflow h2 {
  font-family: 'Exo 2', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

/* About section — video border glow */
.sorix-video {
  box-shadow: 0 0 60px rgba(0, 232, 120, 0.08), 0 32px 64px rgba(0, 0, 0, 0.5) !important;
}

/* FAQ accordion — tighter, more editorial */
.accordion-action {
  padding: 20px 0 !important;
}

/* Contact meta — tighter spacing */
.contact-meta {
  margin-top: 24px;
}

/* Form CTA — full width button style */
.form-action .tf-btn {
  width: 100%;
  justify-content: center;
}

/* Wg-plan benefit list — better spacing */
.benefit-list.tf-list.vertical li {
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
}

/* Services section card content padding */
.service-card .card-content {
  padding: 28px 28px 32px !important;
}

/* Workflow section — stronger heading contrast */
.section-workflow .text-center h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
  margin-bottom: 12px !important;
}

/* Ecosystem subtext — consistent spacing */
.ecosystem-subtext {
  font-family: var(--font-body, 'Figtree', sans-serif);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(195, 220, 248, 0.62);
  max-width: 540px;
  margin: 12px auto 0;
}

/* ROI section label — centered */
.roi-card .section-label {
  text-align: left;
  display: block;
  margin-bottom: 12px !important;
}

/* ROI card h2 */
.roi-card h2 {
  font-family: 'Exo 2', sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--text-bright) !important;
}

/* Process section — add grid bg for texture */
.section-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

.section-process .container {
  position: relative;
  z-index: 1;
}

/* Process items — ensure content is above pseudo bg */
.wg-process {
  position: relative;
  z-index: 1;
}

/* Ticker — slightly taller for breathing room */
.sorix-ticker {
  padding: 14px 0 !important;
}

/* ── Services section header spacing + centering fix ─────────── */
.section-services .s-header {
  margin-bottom: 52px !important;
  text-align: center !important;
  align-items: center !important;
}

/* Force section-label children to fill width so text-align centers them */
.s-header.text-center .section-label,
.section-services .s-header .section-label,
.section-feature .s-header .section-label,
.section-process .s-header .section-label {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* ── Process — clean 4-column grid, fully overrides stacked template layout */
@media (min-width: 900px) {

  /* Kill the stacked/offset layout from styles.css */
  .section-process .swiper-process {
    padding-left: 0 !important;
    overflow: visible !important;
  }

  .section-process .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    transform: none !important;
    width: 100% !important;
    align-items: start !important;
  }

  /* Reset every slide — including the nth-child offsets */
  .section-process .swiper-slide,
  .section-process .swiper-slide:not(:first-child),
  .section-process .swiper-slide:nth-child(2),
  .section-process .swiper-slide:nth-child(3),
  .section-process .swiper-slide:nth-child(4) {
    width: auto !important;
    min-width: unset !important;
    margin-top: 0 !important;
    left: 0 !important;
    position: relative !important;
  }

  .section-process .wg-process {
    max-width: 100% !important;
    height: 100% !important;
  }
}

@media (min-width: 1440px) {
  .section-process .process-list {
    padding-right: 0 !important;
  }
}

/* ── Process — centered header ───────────────────────────────── */
.section-process .s-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  margin-bottom: 48px !important;
  justify-content: center !important;
}

.section-process .s-header .title {
  margin-top: 10px !important;
}

.section-process .s-header .section-subtitle {
  margin-top: 10px !important;
  max-width: 540px !important;
}

/* ── Use-case chip buttons (01 / OUR WORK header) ─────────────── */
.usecase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.usecase-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 232, 120, 0.22);
  border-radius: 999px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(195, 220, 248, 0.75);
  background: rgba(0, 232, 120, 0.04);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.usecase-chip:hover {
  border-color: rgba(0, 232, 120, 0.5);
  background: rgba(0, 232, 120, 0.09);
  color: var(--green-live);
  text-decoration: none;
}

.usecase-chip .chip-arrow {
  color: var(--green-live);
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.usecase-chip:hover .chip-arrow {
  transform: translateX(3px);
}

/* ── Service card — secondary detail link ────────────────────── */
.service-card-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(195, 220, 248, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.service-detail-link:hover {
  color: var(--green-live);
  text-decoration: none;
}

.service-detail-link .link-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.service-detail-link:hover .link-arrow {
  transform: translateX(3px);
}

/* ── Nav active state ────────────────────────────────────────── */
.item-link.is-active {
  color: var(--green-live) !important;
}

.item-link.is-active span {
  color: var(--green-live) !important;
}

/* ── Sub-page header — fixed position ───────────────────────── */
.tf-header.is-subpage {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.tf-header.is-subpage .header-inner {
  padding: 14px 0;
}

/* ── Footer USE CASES sub-heading ───────────────────────────── */
.footer-use-cases-label {
  display: block;
  margin-top: 14px;
  font-family: 'Exo 2', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(195, 220, 248, 0.45);
}

/* Indicator wrap — more generous padding */
.wg-indicator {
  padding: 48px 24px !important;
}

/* Footer bottom text — better contrast */
.footer-bottom .text-nocopy {
  font-size: 0.8125rem !important;
  color: rgba(165, 200, 230, 0.45) !important;
  letter-spacing: 0.06em !important;
}

/* Footer headings — tighter */
.footer-heading {
  font-size: 0.625rem !important;
  letter-spacing: 0.16em !important;
  color: rgba(165, 200, 230, 0.40) !important;
  margin-bottom: 14px !important;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════
   2026-04 FIXES — Header dropdown · Footer grid · Text contrast
   Workflow heading · Feature card gap · Hero tags · S4 label
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Global text contrast — raise visibility on dark bg ─────── */
:root {
  --text-mid: rgba(215, 235, 255, 0.90);
  --text-quiet: rgba(200, 222, 252, 0.68);
}

.text-white-64 {
  color: rgba(225, 240, 255, 0.86) !important;
}

.section-subtitle {
  color: var(--text-mid) !important;
  line-height: 1.75 !important;
}

.feature-desc,
.about-body-text {
  color: rgba(215, 235, 255, 0.80) !important;
  line-height: 1.75 !important;
}

.workflow-node p,
.wg-process .desc {
  color: rgba(200, 222, 252, 0.72) !important;
  line-height: 1.72 !important;
}

/* ── 2. Header — premium dropdown navigation ────────────────────── */

.nav-has-dropdown {
  position: relative;
}

/* Invisible bridge covers the 18px gap between nav item and dropdown,
   keeping hover active while the mouse moves toward the dropdown. */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 22px;
  background: transparent;
}

.nav-has-dropdown>.item-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.nav-caret {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.40;
  transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-has-dropdown:hover .nav-caret {
  opacity: 0.90;
  transform: rotate(225deg) translateY(2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: oklch(0.09 0.012 240);
  border: 1px solid rgba(0, 232, 120, 0.22);
  border-radius: 10px;
  min-width: 270px;
  padding: 10px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(0, 232, 120, 0.04) inset;
}

/* Arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: oklch(0.09 0.012 240);
  border-top: 1px solid rgba(0, 232, 120, 0.22);
  border-left: 1px solid rgba(0, 232, 120, 0.22);
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-label {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 232, 120, 0.55);
  padding: 10px 18px 6px;
}

.nav-dropdown-label:first-child {
  padding-top: 4px;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(195, 220, 248, 0.72);
  text-decoration: none !important;
  transition: background 0.13s ease, color 0.13s ease;
  white-space: nowrap;
}

.nav-dropdown-link::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-live);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.13s ease;
}

.nav-dropdown-link:hover {
  background: rgba(0, 232, 120, 0.07);
  color: #eaf4ff !important;
  text-decoration: none !important;
}

.nav-dropdown-link:hover::before {
  opacity: 1;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(0, 232, 120, 0.10);
  margin: 6px 18px;
}

/* ── 3. Hero service tags — clean text indicators, no boxes ─────── */

.hero-service-tags {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  margin-bottom: 32px !important;
}

.hero-service-tags::after {
  display: none !important;
}

.hero-service-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Exo 2', sans-serif !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(205, 228, 255, 0.52) !important;
  text-decoration: none !important;
  padding: 6px 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  width: fit-content !important;
  overflow: visible !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  transform: none !important;
}

.hero-service-btn::after {
  display: none !important;
}

.hero-service-btn .btn-icon {
  display: inline-block !important;
  color: var(--green-live) !important;
  opacity: 0.45 !important;
  font-size: 0.5rem !important;
  transition: opacity 0.2s ease !important;
  line-height: 1 !important;
}

.hero-service-btn:hover {
  color: rgba(225, 242, 255, 0.92) !important;
  background: transparent !important;
  border-color: transparent !important;
  transform: translateX(5px) !important;
  text-decoration: none !important;
}

.hero-service-btn:hover .btn-icon {
  opacity: 1 !important;
}

/* ── 4. Featured Works — fix absolute-content gap ───────────────── */

.wg-feature-v01 {
  border-radius: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  height: auto !important;
}

.wg-feature-v01 .feature-image {
  height: auto !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.wg-feature-v01 .feature-image img {
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  display: block !important;
  width: 100% !important;
  border-radius: 0 !important;
}

.wg-feature-v01 .feature-content {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  background: var(--bg-elevated) !important;
  padding: 20px 24px 26px !important;
  flex: 1 !important;
  display: block !important;
}

.wg-feature-v01 .feature-content::before {
  display: none !important;
}

.wg-feature-v01 .feature-content .tag {
  font-size: 0.5625rem !important;
  letter-spacing: 0.16em !important;
  color: var(--green-live) !important;
  opacity: 0.80;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.wg-feature-v01 .feature-content .name {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: var(--text-bright) !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
}

.wg-feature-v01 .feature-content .name a {
  color: var(--text-bright) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.wg-feature-v01 .feature-content .name a:hover {
  color: var(--green-live) !important;
}

.feature-desc {
  font-size: 0.875rem !important;
  color: rgba(205, 228, 255, 0.72) !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .feature-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ── 5. Workflow heading — large and commanding ──────────────────── */

.section-workflow .text-center h2,
.section-workflow h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.05 !important;
  color: var(--text-bright) !important;
  margin-bottom: 14px !important;
}

/* ── 6. Process step S4 label ────────────────────────────────────── */

.process-s4-label {
  font-family: 'Exo 2', Verdana, Geneva, Tahoma, sans-serif;
  font-size: 4.85rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: rgb(255, 255, 255);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 99px;
  height: 64px;
  user-select: none;
}

/* ── 7. Footer — 5-column premium grid ──────────────────────────── */

/* Hide the old Bootstrap row layout */
.footer-inner .row {
  display: none !important;
}

/* Grid container */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.85fr 0.9fr 1fr;
  gap: 0 52px;
  padding: 68px 0 56px;
  align-items: start;
}

@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    margin-bottom: 44px;
  }

  .footer-brand-desc {
    max-width: 500px !important;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding: 48px 0 36px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Brand column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo {
  height: 90px !important;
  width: 90px !important;
  display: block !important;
  opacity: 0.85;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(195, 220, 248, 0.52);
  line-height: 1.72;
  max-width: 230px;
  margin-bottom: 20px;
}

.footer-brand-email {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--green-live) !important;
  text-decoration: none !important;
  display: inline-block;
  margin-bottom: 14px;
  transition: opacity 0.2s ease;
}

.footer-brand-email:hover {
  opacity: 0.70;
  text-decoration: none !important;
}

.footer-availability {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(195, 220, 248, 0.28);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-availability::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-live);
  box-shadow: 0 0 8px rgba(0, 232, 120, 0.75);
  flex-shrink: 0;
  animation: f-pulse-dot 2.4s ease-in-out infinite;
}

@keyframes f-pulse-dot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(0, 232, 120, 0.75);
  }

  50% {
    opacity: 0.3;
    box-shadow: 0 0 2px rgba(0, 232, 120, 0.25);
  }
}

/* Nav columns */
.footer-nav-col {
  display: flex;
  flex-direction: column;
}

.footer-col-heading {
  font-family: 'Exo 2', sans-serif !important;
  font-size: 0.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(0, 232, 120, 0.55) !important;
  margin-bottom: 18px !important;
  display: block;
}

.footer-nav-col ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-nav-col ul li a {
  font-family: 'Figtree', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  color: rgba(195, 220, 248, 0.58) !important;
  text-decoration: none !important;
  transition: color 0.18s ease !important;
  letter-spacing: 0.005em !important;
  line-height: 1.3 !important;
}

.footer-nav-col ul li a:hover {
  color: #eaf4ff !important;
  text-decoration: none !important;
}

.footer-location {
  margin-top: 22px;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(165, 200, 230, 0.26);
  line-height: 2;
}

/* ── Team Strip (About section) ─────────────────────────────── */
.team-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(195,220,248,0.08);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 180px;
}

.team-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(195,220,248,0.06);
  border: 1px solid rgba(195,220,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-avatar-placeholder {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(195,220,248,0.5);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #eaf4ff;
  letter-spacing: 0.02em;
}

.team-role {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(195,220,248,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── About Page — Team Grid ──────────────────────────────────── */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

.about-team-card {
  display: flex;
  gap: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(195,220,248,0.08);
  border-radius: 16px;
  padding: 32px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}

.about-team-card:hover {
  border-color: rgba(195,220,248,0.16);
}

.about-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(195,220,248,0.06);
  border: 1px solid rgba(195,220,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.about-team-initials {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(195,220,248,0.35);
  pointer-events: none;
}

.about-team-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-team-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #eaf4ff;
  letter-spacing: 0.02em;
}

.about-team-role {
  font-family: 'Figtree', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--clr-primary, #00e676);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-team-bio {
  font-family: 'Figtree', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(195,220,248,0.6);
  margin-top: 8px;
}

.about-team-contact {
  font-family: 'Figtree', sans-serif;
  font-size: 0.82rem;
  color: rgba(195,220,248,0.45);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.18s ease;
}

.about-team-contact:hover {
  color: #eaf4ff;
}

/* ================================================================
   FIX PACK — Heading gaps, large monitors, mobile polish
   ================================================================ */

/* ── FIX 1. Consistent section heading gaps ──────────────────── */
/* Smooth s-header bottom padding instead of 88px → 40px jump */
.s-header {
  padding-bottom: clamp(40px, 4.5vw, 72px) !important;
}

/* Section label always has same breathing room below it */
.section-label {
  margin-bottom: 20px !important;
}

/* Heading-to-subtitle gap — uniform across all sections */
.s-header h2 + p,
.s-header h2 + .section-subtitle {
  margin-top: 16px !important;
}

/* Section subtitle consistent sizing */
.section-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem) !important;
  line-height: 1.7 !important;
  color: var(--text-mid) !important;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FIX 2. Large monitor constraints (1920px+) ──────────────── */
@media (min-width: 1920px) {
  /* Cap section padding so it doesn't feel cavernous */
  .flat-spacing {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  /* Cap s-header bottom gap */
  .s-header {
    padding-bottom: 60px !important;
  }

  /* Tighten the hero — sorix-large already clamped to 200px max */
  .section-hero-v1 .sorix-large {
    font-size: clamp(120px, 10vw, 200px) !important;
    line-height: clamp(128px, 10vw, 200px) !important;
  }

  /* Anchor container so nothing bleeds past sensible width */
  .container {
    max-width: 1440px !important;
  }
}

@media (min-width: 2560px) {
  /* Ultra-wide: prevent over-spaced layouts */
  .flat-spacing {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .s-header {
    padding-bottom: 56px !important;
  }

  .container {
    max-width: 1600px !important;
  }
}

/* ── FIX 3. Mobile offcanvas — use transform (GPU, no reflow) ── */
/* Override any legacy top-based rules */
@media (max-width: 1199px) {
  .offcanvas-menu {
    transform: translateY(100%) !important;
    top: auto !important;
    will-change: transform;
  }

  .offcanvas-menu.show {
    transform: translateY(0) !important;
  }
}

/* ── FIX 4. Mobile scroll performance ───────────────────────── */
@media (max-width: 767px) {
  /* Reduce effectFade to opacity-only on mobile — no Y transform jank */
  .effectFade:not(.fadeUp):not(.fadeDown):not(.fadeLeft):not(.fadeRight) {
    will-change: opacity;
  }

  /* Prevent layout recalc from contain: layout style on narrow screens */
  .flat-spacing {
    contain: style !important;
  }
}

/* ── FIX 5. Section header layout consistency ────────────────── */
/* All s-headers use column layout — label above heading */
.s-header {
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

/* Centered s-headers stay centered */
.s-header.text-center,
.section-feature .s-header,
.section-services .s-header,
.section-testimonial .s-header,
.section-trust .s-header,
.section-faq .s-header,
#pricing .s-header {
  align-items: center !important;
}

/* Gap: label → heading = consistent 20px (label margin handles it) */
.s-header .section-label {
  margin-bottom: 20px !important;
}

/* Gap: heading → subtitle = consistent 16px */
.s-header h1 + p,
.s-header h2 + p,
.s-header h1 + .section-subtitle,
.s-header h2 + .section-subtitle,
.s-header .overflow-hidden + p,
.s-header .overflow-hidden + .section-subtitle {
  margin-top: 16px !important;
}

/* Fix services subtitle — remove the 60px bottom, s-header padding handles gap to content */
.section-services .section-subtitle {
  margin: 0 auto !important;
  padding-bottom: 0 !important;
}

/* Fix section-trust s-header — label should be above heading */
.section-trust .s-header {
  flex-direction: column !important;
  align-items: center !important;
}

/* Remove extra margin-top from h2 inside s-header (causes double-gap) */
.s-header h2 {
  margin-top: 0 !important;
}

/* Fix services subtitle margin-top (zeroed by earlier rule) */
.section-services .section-subtitle {
  margin-top: 16px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   MOBILE SUB-TOGGLE — Chevron arrow, left-side, prominent
   ═══════════════════════════════════════════════════════════════════ */
.mb-sub-toggle {
  position: absolute !important;
  left: 20px !important;
  right: auto !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(0, 232, 120, 0.45) !important;
  background: rgba(0, 232, 120, 0.08) !important;
  color: var(--green-live) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  font-size: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

.mb-sub-toggle:hover {
  background: rgba(0, 232, 120, 0.18) !important;
  border-color: var(--green-live) !important;
}

.mb-sub-toggle svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  stroke: var(--green-live) !important;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
  pointer-events: none !important;
}

.mb-sub-toggle.is-open svg {
  transform: rotate(180deg) !important;
}

/* Indent has-sub items to make room for circle on left */
.nav-ul-mb .has-sub > .item .mb-menu-link {
  padding-left: 80px !important;
}

/* ═══════════════════════════════════════════════════════════════════
   WORKFLOW — Multi-color nodes (higher specificity than V9 rule)
   ═══════════════════════════════════════════════════════════════════ */

/* Color inheritance for SVG currentColor + text */
.workflow-node { color: var(--green-live); }
.workflow-node.node-blue { color: var(--accent-blue); }
.workflow-node.node-purple { color: #a855f7; }
.workflow-node.node-complete { color: #f59e0b; }

.workflow-node.node-blue h4 { color: var(--accent-blue) !important; }
.workflow-node.node-purple h4 { color: #a855f7 !important; }
.workflow-node.node-complete h4 { color: #f59e0b !important; }

/* HIGH SPECIFICITY overrides for is-active state (beats the V9 rule 0,4,0) */
.workflow-diagram.is-active .workflow-node.node-blue .node-icon {
  background: linear-gradient(145deg, rgba(62, 207, 255, 0.14), var(--bg-elevated)) !important;
  border-color: rgba(62, 207, 255, 0.70) !important;
  box-shadow:
    0 0 28px rgba(62, 207, 255, 0.30),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.workflow-diagram.is-active .workflow-node.node-purple .node-icon {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.14), var(--bg-elevated)) !important;
  border-color: rgba(168, 85, 247, 0.65) !important;
  box-shadow:
    0 0 28px rgba(168, 85, 247, 0.28),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

.workflow-diagram.is-active .workflow-node.node-complete .node-icon {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.14), var(--bg-elevated)) !important;
  border-color: rgba(245, 158, 11, 0.70) !important;
  box-shadow:
    0 0 28px rgba(245, 158, 11, 0.30),
    0 8px 24px rgba(0, 0, 0, 0.45) !important;
}

/* Gradient connectors (desktop: horizontal) */
.workflow-connector.conn-green-blue::before { background: linear-gradient(90deg, var(--green-live), var(--accent-blue)) !important; opacity: 0.5 !important; }
.workflow-connector.conn-blue-purple::before { background: linear-gradient(90deg, var(--accent-blue), #a855f7) !important; opacity: 0.5 !important; }
.workflow-connector.conn-purple-blue::before { background: linear-gradient(90deg, #a855f7, var(--accent-blue)) !important; opacity: 0.5 !important; }
.workflow-connector.conn-blue-green::before { background: linear-gradient(90deg, var(--accent-blue), var(--green-live)) !important; opacity: 0.5 !important; }
.workflow-connector.conn-green-gold::before { background: linear-gradient(90deg, var(--green-live), #f59e0b) !important; opacity: 0.5 !important; }

/* Flow packets match the connector lead color */
.workflow-connector.conn-green-blue .flow-packet { background: var(--accent-blue) !important; box-shadow: 0 0 8px var(--accent-blue) !important; }
.workflow-connector.conn-blue-purple .flow-packet { background: #a855f7 !important; box-shadow: 0 0 8px #a855f7 !important; }
.workflow-connector.conn-purple-blue .flow-packet { background: var(--accent-blue) !important; box-shadow: 0 0 8px var(--accent-blue) !important; }
.workflow-connector.conn-blue-green .flow-packet { background: var(--green-live) !important; box-shadow: 0 0 8px var(--green-live) !important; }
.workflow-connector.conn-green-gold .flow-packet { background: #f59e0b !important; box-shadow: 0 0 8px #f59e0b !important; }

/* Mobile vertical: flip gradient direction */
@media (max-width: 767px) {
  .workflow-connector.conn-green-blue::before { background: linear-gradient(180deg, var(--green-live), var(--accent-blue)) !important; }
  .workflow-connector.conn-blue-purple::before { background: linear-gradient(180deg, var(--accent-blue), #a855f7) !important; }
  .workflow-connector.conn-purple-blue::before { background: linear-gradient(180deg, #a855f7, var(--accent-blue)) !important; }
  .workflow-connector.conn-blue-green::before { background: linear-gradient(180deg, var(--accent-blue), var(--green-live)) !important; }
  .workflow-connector.conn-green-gold::before { background: linear-gradient(180deg, var(--green-live), #f59e0b) !important; }
}


/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Social row (LinkedIn badge)
   ═══════════════════════════════════════════════════════════════════ */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 2px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-mid);
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
  border-color: var(--accent-blue-border);
  color: var(--accent-blue);
  background: var(--accent-blue-glow);
}

/* ═══════════════════════════════════════════════════════════════════
   LOCAL BUSINESS SECTION
   ═══════════════════════════════════════════════════════════════════ */
.section-local-biz {
  position: relative;
  overflow: hidden;
}

/* Subtle left accent border */
.section-local-biz::before {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--green-live) 30%, var(--accent-blue) 70%, transparent);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════
   LOCAL BUSINESS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.lb-label {
  color: var(--green-live) !important;
}

.lb-heading {
  margin-top: 16px !important;
}

/* Feature list */
.lb-feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lb-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.5;
}

.lb-check {
  color: var(--green-live);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA row */
.lb-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.lb-secondary-btn {
  border: 1px solid var(--green-border) !important;
  color: var(--green-live) !important;
  background: transparent !important;
}

.lb-secondary-btn:hover {
  background: var(--green-glow) !important;
}

/* Right column */
.lb-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pricing cards wrap */
.lb-pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual price cards */
.lb-price-card {
  position: relative;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lb-price-card--starter {
  border-color: rgba(255, 255, 255, 0.08);
}

.lb-price-card--main {
  border-color: rgba(0, 232, 120, 0.50);
  box-shadow: 0 0 32px rgba(0, 232, 120, 0.09), 0 4px 16px rgba(0,0,0,0.28);
  background: linear-gradient(140deg, rgba(0, 232, 120, 0.07) 0%, var(--bg-card) 55%);
}

.lb-price-card--alt {
  border-color: rgba(62, 207, 255, 0.22);
}

/* Horizontal row: name left, price right */
.lb-price-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* "Most Popular" badge */
.lb-price-card-badge {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 3px 11px;
  background: var(--green-live);
  color: #000;
  font-family: 'Exo 2', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 20px;
}

/* Plan name */
.lb-price-card-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-quiet);
}

.lb-price-card--main .lb-price-card-name { color: var(--green-live); }
.lb-price-card--alt  .lb-price-card-name { color: var(--accent-blue); }

/* Price amount */
.lb-price-card-amount {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  line-height: 1;
}

.lb-price-currency {
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
  align-self: flex-start;
  margin-top: 4px;
}

.lb-price-number {
  font-family: 'Exo 2', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-bright);
}

.lb-price-card--main .lb-price-number { color: var(--green-live); }
.lb-price-card--alt  .lb-price-number { color: var(--accent-blue); }

.lb-price-per {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: var(--text-quiet);
  margin-bottom: 5px;
  margin-left: 1px;
}

.lb-price-card-note {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  color: var(--text-quiet);
  line-height: 1.5;
}

/* Industry tiles grid */
.lb-industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lb-industry-tile {
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lb-industry-tile:hover {
  border-color: var(--green-border);
  color: var(--green-live);
  background: var(--green-glow);
}

/* Footnote */
.lb-footnote {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  color: var(--text-quiet);
  margin: 0;
}

.lb-footnote-link {
  color: var(--green-live);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.lb-footnote-link:hover {
  border-color: var(--green-live);
}

/* Mobile */
@media (max-width: 767px) {
  .lb-industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lb-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .lb-cta-row .tf-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AURORA BLOBS — Compositor layer to isolate blur repaint
   ═══════════════════════════════════════════════════════════════════ */
.hero-aurora {
  will-change: transform;
  transform: translateZ(0);
  contain: paint;
}
