/* ═══════════════════════════════════════════════════════════
   VL Operações Digitais — style.css
   ✏️  EDITE AS CORES AQUI (seção :root)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Brand Colors */
  --color-bg:        #060D1A;      /* fundo principal */
  --color-bg2:       #091224;      /* fundo secundário */
  --color-card:      #0D1B2E;      /* fundo dos cards */
  --color-card2:     #0F2040;      /* fundo cards hover */
  --color-border:    rgba(0,229,255,0.12);

  --color-cyan:      #00E5FF;
  --color-green:     #00FF94;
  --color-purple:    #6C63FF;
  --color-red:       #FF6B6B;
  --color-wpp:       #25D366;

  --color-text:      #E8F0FE;
  --color-muted:     #7A9CC0;
  --color-white:     #FFFFFF;

  /* Typography */
  --font-display:    'Syne', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --section-py:      80px;
  --container-max:   1200px;
  --radius:          12px;
  --radius-lg:       20px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION LABELS ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 48px;
  text-align: center;
}
.section-title.left { text-align: left; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-cyan);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  transition: border-color .2s, color .2s, transform .2s;
}
.btn-ghost:hover { border-color: var(--color-cyan); color: var(--color-cyan); transform: translateY(-2px); }

.arrow { font-style: normal; }

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,13,26,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(6,13,26,.97); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-vl { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--color-cyan); }
.logo-sub { font-size: 9px; font-weight: 500; color: var(--color-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-cyan);
  transition: width .25s;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--color-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,229,255,.12), transparent 70%);
  top: -100px; left: -150px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,99,255,.1), transparent 70%);
  bottom: -100px; right: -100px;
}

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

/* Hero copy */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 6px 12px;
}

/* Hero Dashboard */
.hero-dashboard { position: relative; }
.dashboard-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,229,255,.06);
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-title { font-weight: 700; font-size: 14px; color: var(--color-white); }
.dash-date { font-size: 11px; color: var(--color-muted); display: flex; align-items: center; gap: 4px; }

/* KPI grid */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.kpi-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 12px;
}
.kpi-label { display: block; font-size: 9px; color: var(--color-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.kpi-value { display: block; font-size: 18px; font-weight: 800; color: var(--color-white); line-height: 1; margin-bottom: 4px; }
.kpi-delta { font-size: 9px; color: var(--color-green); }
.kpi-delta.negative { color: var(--color-red); }

/* Dash row */
.dash-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 14px; }

.panel-label { display: block; font-size: 10px; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

/* Flow panel */
.flow-panel {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
}
.flow-nodes { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.flow-node {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 9px;
  text-align: center;
  color: var(--color-muted);
  line-height: 1.2;
}
.flow-node.active { border-color: var(--color-green); color: var(--color-green); background: rgba(0,255,148,.06); }
.flow-node.done { border-color: var(--color-cyan); color: var(--color-cyan); background: rgba(0,229,255,.06); }
.fn-icon { display: flex; justify-content: center; margin-bottom: 4px; }
.flow-arrow { color: var(--color-muted); font-size: 14px; flex-shrink: 0; }
.flow-sub-node {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--color-muted);
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 8px;
}
.fn-sub-icon { font-size: 12px; }

/* IA panel */
.ia-panel {
  width: 130px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ia-brain { margin-bottom: 8px; animation: pulse-slow 4s ease-in-out infinite; }
@keyframes pulse-slow { 0%,100%{ opacity:.8; } 50%{ opacity:1; } }
.ia-desc { font-size: 9px; color: var(--color-muted); text-align: center; margin-bottom: 8px; }
.ia-bar-wrap { width: 100%; display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--color-cyan); font-weight: 700; }
.ia-bar {
  flex: 1;
  height: 4px;
  background: rgba(0,229,255,.15);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.ia-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--color-cyan), var(--color-green));
  border-radius: 4px;
  animation: bar-fill 2s ease forwards;
}
@keyframes bar-fill { from { width: 0; } to { width: var(--w); } }

/* Dash bottom */
.dash-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; }

/* Recent */
.recent-panel {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
}
.activity-list { display: flex; flex-direction: column; gap: 7px; }
.activity-list li { display: flex; align-items: center; gap: 6px; font-size: 9px; color: var(--color-muted); }
.act-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.act-dot.green  { background: var(--color-green); }
.act-dot.blue   { background: var(--color-cyan); }
.act-dot.purple { background: var(--color-purple); }
.act-dot.cyan   { background: #00BFFF; }
.act-text { flex: 1; }
.act-time { color: var(--color-muted); opacity: .7; white-space: nowrap; }

/* Channel */
.channel-panel {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
}
.donut-wrap { margin-bottom: 8px; }
.channel-legend { font-size: 9px; color: var(--color-muted); display: flex; flex-direction: column; gap: 3px; align-self: flex-start; }
.channel-legend li { display: flex; align-items: center; gap: 4px; }
.leg-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.channel-legend b { color: var(--color-white); }

/* Health */
.health-panel {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
}
.health-ring {}
.health-delta { font-size: 9px; color: var(--color-green); font-weight: 600; }

/* ═══════════ SERVICES ═══════════ */
.services {
  padding: var(--section-py) 0;
  background: var(--color-bg2);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
  opacity: .3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  border-color: rgba(0,229,255,.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,229,255,.08);
}
.svc-icon {
  width: 56px; height: 56px;
  background: rgba(0,229,255,.06);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--color-white); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--color-muted); line-height: 1.6; margin-bottom: 18px; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--color-cyan); display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.svc-link:hover { gap: 8px; }

/* ═══════════ PROCESS ═══════════ */
.process { padding: var(--section-py) 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}
.step-num-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
}
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,229,255,.05);
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, background .25s;
}
.process-step:hover .step-icon {
  border-color: var(--color-cyan);
  background: rgba(0,229,255,.1);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--color-cyan);
}
.step-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 36px);
  width: calc(100% - 36px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-cyan), transparent);
  opacity: .3;
}
.process-step:last-child .step-connector { display: none; }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--color-white); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--color-muted); line-height: 1.6; }

/* ═══════════ SOLUTIONS ═══════════ */
.solutions { padding: var(--section-py) 0; background: var(--color-bg2); }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sol-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color .25s, transform .25s;
}
.sol-card:hover { border-color: rgba(0,229,255,.35); transform: translateY(-4px); }

.sol-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(0,229,255,.06);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sol-card h4 { font-size: 15px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.sol-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.sol-list li { font-size: 12px; color: var(--color-muted); }
.sol-list li::before { content: none; }

/* ═══════════ NUMBERS ═══════════ */
.numbers {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(0,229,255,.05), rgba(108,99,255,.05));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.num-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,229,255,.07);
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.num-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.num-label { font-size: 13px; color: var(--color-muted); line-height: 1.4; }

/* ═══════════ ABOUT ═══════════ */
.about { padding: var(--section-py) 0; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}
.about-features li svg { flex-shrink: 0; }
.about-visual { display: flex; justify-content: center; align-items: center; }
.globe-wrap { animation: spin-slow 30s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  padding: 48px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.cta-text h3 { font-size: 20px; font-weight: 700; color: var(--color-white); margin-bottom: 6px; }
.cta-text p { font-size: 14px; color: var(--color-muted); max-width: 480px; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

.btn-wpp {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-wpp);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.btn-wpp:hover { opacity: .9; transform: translateY(-2px); }

.btn-meeting {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--color-border);
  transition: border-color .2s, color .2s, transform .2s;
  white-space: nowrap;
}
.btn-meeting:hover { border-color: var(--color-cyan); color: var(--color-cyan); transform: translateY(-2px); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--color-bg2);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-tagline { font-size: 13px; color: var(--color-muted); line-height: 1.6; margin: 14px 0 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--color-cyan); color: var(--color-cyan); }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav h5 { font-size: 13px; font-weight: 700; color: var(--color-white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.footer-nav a { font-size: 13px; color: var(--color-muted); transition: color .2s; }
.footer-nav a:hover { color: var(--color-cyan); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact h5 { font-size: 13px; font-weight: 700; color: var(--color-white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span { font-size: 12px; color: var(--color-muted); }

/* ═══════════ FLOAT WPP ═══════════ */
.float-wpp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--color-wpp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .25s;
  z-index: 900;
}
.float-wpp:hover { transform: scale(1.1); }

/* ═══════════ AOS ANIMATIONS ═══════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos][data-aos-delay="100"] { transition-delay: .1s; }
[data-aos][data-aos-delay="200"] { transition-delay: .2s; }
[data-aos][data-aos-delay="300"] { transition-delay: .3s; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"]  { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate { transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid,
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-connector { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-dashboard { max-width: 100%; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-bottom { grid-template-columns: 1fr 1fr; }
  .health-panel { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
}

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

  /* Navbar */
  .nav-links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(6,13,26,.98);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Sections */
  .services-grid,
  .solutions-grid,
  .process-steps,
  .numbers-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; }
  .cta-left { flex-direction: column; }
  .cta-btns { width: 100%; }
  .btn-wpp, .btn-meeting { justify-content: center; }

  /* Hero */
  .hero-title { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { text-align: center; justify-content: center; }

  /* Dashboard simplify */
  .dash-row { grid-template-columns: 1fr; }
  .ia-panel { width: 100%; }
  .dash-bottom { grid-template-columns: 1fr; }
  .channel-panel, .health-panel { width: 100%; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }

  .float-wpp { bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; align-items: flex-start; }
}


/* ===== V7 refinements ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.brand-logo {
  width: 176px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0,229,255,.12));
}
.footer-brand-logo {
  width: 190px;
}
.footer-logo-link {
  margin-bottom: 10px;
}
.footer-socials-note {
  margin-top: 10px;
}
.social-coming {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
.social-coming::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-cyan), var(--color-green));
  box-shadow: 0 0 12px rgba(0,229,255,.35);
}
.hero-copy {
  max-width: 560px;
}
.hero-title {
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 10.5ch;
  text-wrap: balance;
}
.hero-desc {
  font-size: 17px;
  max-width: 500px;
}
.section-title {
  font-size: clamp(28px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.section-title.left {
  text-align: left;
  max-width: 14ch;
  margin-left: 0;
  margin-right: 0;
}
.process-step .step-icon {
  box-shadow: 0 0 0 1px rgba(0,229,255,.06), 0 0 18px rgba(0,229,255,.08);
}
.step-connector {
  position: absolute;
  top: 35px;
  left: calc(50% + 38px);
  width: calc(100% - 32px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0,229,255,.8) 0 10px, transparent 10px 18px);
  opacity: .85;
  overflow: visible;
  animation: workflowDash 1.2s linear infinite;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-green);
  border-right: 2px solid var(--color-green);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(0,255,148,.35));
}
@keyframes workflowDash {
  from { background-position: 0 0; }
  to { background-position: 18px 0; }
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ai-brain-wrap {
  width: min(100%, 420px);
  min-height: 360px;
  padding: 18px 14px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 50% 10%, rgba(0,229,255,.08), transparent 35%),
    radial-gradient(circle at 78% 78%, rgba(0,255,148,.07), transparent 24%),
    rgba(13,27,46,.44);
  box-shadow: 0 26px 80px rgba(0,0,0,.28), inset 0 0 0 1px rgba(255,255,255,.02);
}
.brain-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-cyan);
  margin: 0 auto 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,.16);
  background: rgba(255,255,255,.03);
}
.brain-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 10px rgba(0,255,148,.5);
  animation: brainPulse 1.4s ease-in-out infinite;
}
.ai-brain-graphic {
  margin: 0 auto;
  overflow: visible;
}
.brain-orbit {
  fill: none;
  stroke-width: 1;
  opacity: .25;
  transform-origin: 170px 170px;
}
.orbit-1 { stroke: var(--color-cyan); stroke-dasharray: 7 6; animation: spinOrbit 18s linear infinite; }
.orbit-2 { stroke: var(--color-green); stroke-dasharray: 6 8; animation: spinOrbitReverse 14s linear infinite; }
.orbit-3 { stroke: var(--color-purple); stroke-dasharray: 5 8; animation: spinOrbit 10s linear infinite; }
.brain-outline {
  fill: rgba(0,229,255,.03);
  stroke: rgba(0,229,255,.75);
  stroke-width: 2.2;
  filter: drop-shadow(0 0 10px rgba(0,229,255,.1));
}
.brain-line {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: 2;
  stroke-linecap: round;
}
.pulse-path {
  stroke-dasharray: 8 10;
  animation: dataFlow 2.6s linear infinite;
}
.pulse-path.delay-1 { animation-delay: .2s; }
.pulse-path.delay-2 { animation-delay: .45s; }
.pulse-path.delay-3 { animation-delay: .7s; }
.pulse-path.delay-4 { animation-delay: .95s; }
.pulse-path.delay-5 { animation-delay: 1.15s; }
.brain-node {
  animation: nodePulse 2s ease-in-out infinite;
}
.brain-node.cyan { fill: var(--color-cyan); }
.brain-node.green { fill: var(--color-green); }
.brain-node.purple { fill: var(--color-purple); }
.brain-core {
  fill: rgba(0,229,255,.14);
  stroke: var(--color-cyan);
  stroke-width: 1.5;
  animation: corePulse 1.9s ease-in-out infinite;
}
.brain-bars rect {
  fill: rgba(0,255,148,.65);
  animation: barsWork 1.3s ease-in-out infinite;
  transform-origin: center bottom;
}
.brain-bars rect:nth-child(2) { animation-delay: .2s; }
.brain-bars rect:nth-child(3) { animation-delay: .4s; }
@keyframes dataFlow {
  from { stroke-dashoffset: 60; opacity: .4; }
  50% { opacity: .95; }
  to { stroke-dashoffset: 0; opacity: .4; }
}
@keyframes nodePulse {
  0%,100% { opacity: .72; transform: scale(1); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.18); transform-origin: center; }
}
@keyframes corePulse {
  0%,100% { opacity: .9; transform: scale(1); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.07); transform-origin: center; }
}
@keyframes barsWork {
  0%,100% { transform: scaleY(.82); opacity: .72; }
  50% { transform: scaleY(1.06); opacity: 1; }
}
@keyframes brainPulse {
  0%,100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.25); opacity: 1; }
}
@keyframes spinOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinOrbitReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@media (max-width: 1024px) {
  .step-connector { display: none; }
  .hero-title { max-width: 11ch; }
}
@media (max-width: 768px) {
  .brand-logo { width: 150px; }
  .footer-brand-logo { width: 170px; }
  .hero-title {
    font-size: 34px;
    max-width: none;
  }
  .section-title, .section-title.left { max-width: none; }
  .ai-brain-wrap { min-height: 320px; }
}


/* ===== V8 final polish ===== */
.navbar {
  background: rgba(6,13,26,.9);
}
.logo {
  min-width: 0;
}
.brand-logo {
  width: 184px;
  max-width: 100%;
  filter: drop-shadow(0 0 14px rgba(0,229,255,.12));
}
.footer-brand-logo {
  width: 200px;
}
.hero-inner {
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  gap: 42px;
  align-items: center;
}
.hero-copy {
  max-width: 510px;
  min-width: 0;
}
.hero-dashboard {
  min-width: 0;
}
.hero-title {
  font-family: var(--font-body);
  font-size: clamp(30px, 3.35vw, 48px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 9.2ch;
  text-wrap: balance;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
  text-wrap: balance;
}
.section-title.left {
  max-width: 15ch;
}
.kpi-item, .flow-panel, .ia-panel, .recent-panel, .channel-panel, .health-panel {
  min-width: 0;
}
.dashboard-card {
  overflow: hidden;
}
.process-step {
  padding-inline: 6px;
}
.step-num {
  font-size: 16px;
}
.step-connector {
  top: 35px;
  left: calc(50% + 40px);
  width: calc(100% - 42px);
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(0,229,255,.85) 0 10px, transparent 10px 18px);
  opacity: .95;
  animation: workflowDash 1.35s linear infinite;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -3px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-green);
  border-top: 2px solid var(--color-green);
  transform: translateY(-50%) rotate(45deg);
}
.ai-brain-wrap-v8 {
  width: min(100%, 440px);
  min-height: 390px;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 14%, rgba(0,229,255,.1), transparent 36%),
    radial-gradient(circle at 78% 80%, rgba(0,255,148,.08), transparent 26%),
    linear-gradient(180deg, rgba(13,27,46,.72), rgba(9,18,36,.88));
  border: 1px solid rgba(0,229,255,.12);
  box-shadow: 0 26px 80px rgba(0,0,0,.32), inset 0 0 0 1px rgba(255,255,255,.02);
}
.ai-brain-graphic-v8 {
  margin: 0 auto;
  overflow: visible;
}
.brain-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-cyan);
  margin: 0 auto 12px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,.18);
  background: rgba(255,255,255,.03);
}
.brain-shell {
  fill: rgba(0,229,255,.035);
  stroke: url(#brainStroke);
  stroke-width: 2.6;
}
.brain-mid {
  fill: none;
  stroke: rgba(0,229,255,.55);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.brain-fold {
  fill: none;
  stroke: rgba(255,255,255,.22);
  stroke-width: 2;
  stroke-linecap: round;
}
.brain-circuit path {
  fill: none;
  stroke: rgba(0,229,255,.9);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
}
.brain-orbit {
  fill: none;
  stroke-width: 1;
  opacity: .2;
  transform-origin: 180px 180px;
}
.orbit-1 { stroke: var(--color-cyan); stroke-dasharray: 6 8; animation: spinOrbit 18s linear infinite; }
.orbit-2 { stroke: var(--color-green); stroke-dasharray: 8 10; animation: spinOrbitReverse 16s linear infinite; }
.orbit-3 { stroke: var(--color-purple); stroke-dasharray: 5 8; animation: spinOrbit 12s linear infinite; }
.brain-node {
  filter: drop-shadow(0 0 8px currentColor);
}
.brain-node.cyan { fill: var(--color-cyan); color: var(--color-cyan); animation: nodePulse 2s ease-in-out infinite; }
.brain-node.green { fill: var(--color-green); color: var(--color-green); animation: nodePulse 2s ease-in-out infinite .35s; }
.brain-node.purple { fill: var(--color-purple); color: var(--color-purple); animation: nodePulse 2s ease-in-out infinite .7s; }
.brain-core-ring {
  fill: none;
  stroke: rgba(0,229,255,.35);
  stroke-width: 2;
  stroke-dasharray: 5 6;
  animation: spinOrbit 10s linear infinite;
}
.brain-core {
  fill: url(#coreGlow);
  opacity: .95;
  animation: corePulse 2s ease-in-out infinite;
}
.brain-chip {
  fill: rgba(255,255,255,.08);
  stroke: rgba(255,255,255,.7);
  stroke-width: 1.2;
}
.brain-chip-line {
  fill: none;
  stroke: rgba(255,255,255,.8);
  stroke-width: 1.2;
  stroke-linecap: round;
}
.brain-bars rect {
  fill: rgba(0,255,148,.72);
  transform-origin: center bottom;
  animation: barsWork 1.35s ease-in-out infinite;
}
.brain-bars rect:nth-child(2) { animation-delay: .2s; }
.brain-bars rect:nth-child(3) { animation-delay: .4s; }
.float-wpp {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2fe36f, #20c55a);
  box-shadow: 0 10px 30px rgba(37,211,102,.42);
}
.float-wpp-icon {
  display: block;
}
.float-wpp:hover {
  transform: scale(1.08) translateY(-1px);
}
@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: 32px;
  }
  .hero-title {
    font-size: clamp(28px, 3.1vw, 44px);
    max-width: 9.4ch;
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-title {
    max-width: 11ch;
    font-size: clamp(30px, 6vw, 44px);
  }
  .section-title, .section-title.left {
    max-width: none;
  }
  .step-connector {
    display: none;
  }
}
@media (max-width: 640px) {
  .brand-logo {
    width: 152px;
  }
  .footer-brand-logo {
    width: 176px;
  }
  .hero-title {
    font-size: 34px;
    line-height: 1.03;
    letter-spacing: -0.04em;
    max-width: none;
  }
  .hero-desc {
    font-size: 14px;
  }
  .ai-brain-wrap-v8 {
    min-height: 330px;
    padding: 16px 10px 10px;
  }
}


/* ===== V9 final polish ===== */
html { -webkit-font-smoothing: antialiased; text-rendering: geometricPrecision; }
body { background-attachment: fixed; }
.section-title,
.hero-title,
.cta-text h3,
.solution-card h3,
.service-card h3 { text-wrap: balance; }
.hero-inner {
  grid-template-columns: minmax(0,.88fr) minmax(540px,1.12fr);
  gap: 40px;
  align-items: center;
}
.hero-copy {
  max-width: 500px;
}
.hero-title {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 9.6ch;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  max-width: 470px;
}
.section-title {
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  max-width: 18ch;
}
.section-title.left {
  max-width: 15ch;
}
.dashboard-card,
.service-card,
.solution-card,
.number-card,
.process-step,
.cta-inner,
.dataflow-wrap {
  box-shadow: 0 18px 52px rgba(0,0,0,.18);
}
.service-card,
.solution-card,
.number-card,
.process-step {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.service-card:hover,
.solution-card:hover,
.number-card:hover,
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(0,229,255,.22);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.flow-sub-node {
  gap: 8px;
  padding: 6px 10px;
}
.fn-sub-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fn-sub-icon svg { display: block; }
.about-inner {
  gap: 54px;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dataflow-wrap {
  width: min(100%, 450px);
  min-height: 360px;
  padding: 20px 18px 16px;
  border-radius: 24px;
  border: 1px solid rgba(0,229,255,.14);
  background:
    radial-gradient(circle at 50% 12%, rgba(0,229,255,.10), transparent 38%),
    radial-gradient(circle at 82% 82%, rgba(0,255,148,.07), transparent 26%),
    linear-gradient(180deg, rgba(13,27,46,.78), rgba(9,18,36,.92));
  overflow: hidden;
  position: relative;
}
.dataflow-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.05) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: flowShine 7s ease-in-out infinite;
  pointer-events: none;
}
.dataflow-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,255,.16);
  background: rgba(255,255,255,.03);
  color: var(--color-cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin: 0 auto 8px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 12px rgba(0,255,148,.55);
  animation: statusPulse 1.4s ease-in-out infinite;
}
.dataflow-graphic {
  overflow: visible;
  display: block;
  margin: 0 auto;
}
.flow-box {
  fill: rgba(255,255,255,.035);
  stroke: rgba(0,229,255,.18);
  stroke-width: 1.2;
}
.flow-box-mid { stroke: rgba(0,255,148,.28); }
.flow-box-right-bottom { stroke: rgba(108,99,255,.26); }
.flow-label {
  fill: #F5F7FB;
  font-size: 14px;
  font-weight: 700;
}
.flow-sub {
  fill: #9FB2C8;
  font-size: 11px;
}
.flow-path {
  fill: none;
  stroke: url(#flowGrad);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: .95;
}
.flow-path.alt {
  stroke: url(#flowGrad2);
}
.flow-path.subtle {
  stroke-width: 1.8;
  opacity: .5;
}
.flow-node {
  animation: nodePulse 2s ease-in-out infinite;
}
.flow-node.cyan { fill: var(--color-cyan); }
.flow-node.green { fill: var(--color-green); animation-delay: .35s; }
.flow-node.purple { fill: var(--color-purple); animation-delay: .7s; }
.flow-bars rect {
  fill: rgba(0,255,148,.72);
  transform-origin: center bottom;
  animation: barsWork 1.3s ease-in-out infinite;
}
.flow-bars rect:nth-child(2) { animation-delay: .15s; }
.flow-bars rect:nth-child(3) { animation-delay: .3s; }
.flow-bars rect:nth-child(4) { animation-delay: .45s; }
.flow-rings circle {
  fill: none;
  stroke: rgba(0,229,255,.22);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  transform-origin: 206px 172px;
}
.flow-rings circle:first-child { animation: spinOrbit 10s linear infinite; }
.flow-rings circle:last-child { animation: spinOrbitReverse 14s linear infinite; }
.float-wpp {
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, #31E26F, #21C85A);
  box-shadow: 0 10px 28px rgba(37,211,102,.42);
}
.float-wpp-icon {
  display: block;
}
.float-wpp:hover { transform: scale(1.08) translateY(-1px); }
@keyframes flowShine {
  0%, 18% { transform: translateX(-120%); }
  48%, 100% { transform: translateX(120%); }
}
@keyframes statusPulse {
  0%,100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.25); opacity: 1; }
}
@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0,.92fr) minmax(500px,1.08fr);
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-title {
    max-width: 11ch;
  }
  .section-title,
  .section-title.left {
    max-width: none;
  }
  .dataflow-wrap {
    width: min(100%, 480px);
  }
}
@media (max-width: 768px) {
  .about-visual {
    display: flex;
  }
  .dataflow-wrap {
    min-height: 320px;
    padding: 16px 10px 10px;
  }
}
@media (max-width: 640px) {
  .hero-title {
    font-size: 34px;
    max-width: none;
  }
  .hero-desc {
    font-size: 14px;
  }
  .dataflow-status {
    font-size: 10px;
    letter-spacing: 1.1px;
  }
}


/* ===== V10 dataflow layout cleanup ===== */
.dataflow-wrap-v10 {
  width: min(100%, 470px);
  min-height: 372px;
  padding: 20px 18px 14px;
}
.dataflow-graphic-v10 {
  display: block;
  margin: 2px auto 0;
  max-width: 100%;
  height: auto;
}
.dataflow-graphic-v10 .flow-box {
  fill: rgba(255,255,255,.03);
  stroke: rgba(0,229,255,.18);
  stroke-width: 1.2;
}
.dataflow-graphic-v10 .flow-box-mid { stroke: rgba(0,255,148,.28); }
.dataflow-graphic-v10 .flow-box-right-bottom { stroke: rgba(108,99,255,.28); }
.dataflow-graphic-v10 .flow-label {
  fill: #F7FAFD;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.dataflow-graphic-v10 .flow-sub {
  fill: #9FB2C8;
  font-size: 11px;
}
.dataflow-graphic-v10 .flow-path {
  fill: none;
  stroke: url(#flowGradV10);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: .95;
}
.dataflow-graphic-v10 .flow-path.alt { stroke: url(#flowGradV10B); }
.dataflow-graphic-v10 .flow-guide {
  fill: none;
  stroke: rgba(0,229,255,.26);
  stroke-width: 1.6;
  stroke-dasharray: 5 8;
}
.dataflow-graphic-v10 .flow-arrowhead {
  fill: none;
  stroke: rgba(0,255,148,.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dataflow-graphic-v10 .flow-rings circle {
  transform-origin: 215px 174px;
}
@media (max-width: 640px) {
  .dataflow-wrap-v10 {
    width: 100%;
    min-height: 336px;
    padding: 16px 10px 8px;
  }
}


/* ===== V11 finalissima ===== */
.hero-title,
.section-title,
.service-card h3,
.solution-card h3,
.cta-text h3 {
  text-wrap: balance;
}
.hero-title {
  letter-spacing: -0.038em;
}
.dashboard-card,
.service-card,
.solution-card,
.number-card,
.process-step,
.cta-inner,
.dataflow-wrap-v11 {
  box-shadow: 0 18px 54px rgba(0,0,0,.20);
}

/* Process path outside the icons */
.process-steps {
  gap: 30px;
}
.process-step {
  padding-top: 4px;
}
.step-num-wrap {
  margin-bottom: 18px;
}
.step-connector {
  top: 41px;
  left: calc(50% + 52px);
  width: calc(100% - 74px);
  height: 0;
  background: none;
  border-top: 2px dashed rgba(0,229,255,.72);
  opacity: .95;
  animation: workflowDash 1.45s linear infinite;
}
.step-connector::before {
  content: '';
  position: absolute;
  left: -6px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,229,255,.9);
  box-shadow: 0 0 10px rgba(0,229,255,.34);
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(0,255,148,.92);
  border-right: 2px solid rgba(0,255,148,.92);
  transform: rotate(45deg);
  filter: drop-shadow(0 0 7px rgba(0,255,148,.3));
}

/* Dataflow refined */
.dataflow-wrap-v11 {
  width: min(100%, 472px);
  min-height: 372px;
  padding: 20px 18px 14px;
  border-radius: 24px;
  border: 1px solid rgba(0,229,255,.14);
  background:
    radial-gradient(circle at 50% 8%, rgba(0,229,255,.10), transparent 38%),
    radial-gradient(circle at 82% 82%, rgba(0,255,148,.06), transparent 24%),
    linear-gradient(180deg, rgba(13,27,46,.76), rgba(9,18,36,.92));
  position: relative;
  overflow: hidden;
}
.dataflow-wrap-v11::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.04) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: flowShine 8s ease-in-out infinite;
}
.dataflow-graphic-v11 {
  display: block;
  margin: 6px auto 0;
  max-width: 100%;
  height: auto;
}
.dataflow-graphic-v11 .flow-box {
  fill: rgba(255,255,255,.03);
  stroke: rgba(0,229,255,.16);
  stroke-width: 1.15;
}
.dataflow-graphic-v11 .flow-box-mid {
  stroke: rgba(0,255,148,.28);
  fill: rgba(0,255,148,.03);
}
.dataflow-graphic-v11 .flow-box-right-bottom {
  stroke: rgba(108,99,255,.24);
}
.dataflow-graphic-v11 .flow-label {
  fill: #F7FAFD;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.dataflow-graphic-v11 .flow-sub {
  fill: #A2B5CB;
  font-size: 11px;
}
.dataflow-graphic-v11 .flow-path {
  fill: none;
  stroke: url(#flowGradV11);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: .96;
}
.dataflow-graphic-v11 .flow-path.alt {
  stroke: url(#flowGradV11B);
}
.dataflow-graphic-v11 .flow-return {
  fill: none;
  stroke: rgba(0,229,255,.22);
  stroke-width: 1.5;
  stroke-dasharray: 5 8;
}
.dataflow-graphic-v11 .flow-arrowhead {
  fill: none;
  stroke: rgba(0,255,148,.88);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dataflow-graphic-v11 .marker-cyan { fill: var(--color-cyan); }
.dataflow-graphic-v11 .marker-green { fill: var(--color-green); }
.dataflow-graphic-v11 .marker-purple { fill: var(--color-purple); }
.dataflow-graphic-v11 .flow-core .core-aura {
  fill: rgba(0,229,255,.10);
  stroke: rgba(0,229,255,.18);
  stroke-width: 1;
}
.dataflow-graphic-v11 .flow-core .core-chip {
  fill: rgba(255,255,255,.05);
  stroke: rgba(255,255,255,.55);
  stroke-width: 1.1;
}
.dataflow-graphic-v11 .flow-core .core-line {
  fill: none;
  stroke: rgba(255,255,255,.78);
  stroke-width: 1.1;
  stroke-linecap: round;
}
.dataflow-graphic-v11 .flow-bars rect {
  fill: rgba(0,255,148,.70);
  transform-origin: center bottom;
  animation: barsWork 1.35s ease-in-out infinite;
}
.dataflow-graphic-v11 .flow-bars rect:nth-child(2) { animation-delay: .15s; }
.dataflow-graphic-v11 .flow-bars rect:nth-child(3) { animation-delay: .3s; }
.dataflow-graphic-v11 .flow-bars rect:nth-child(4) { animation-delay: .45s; }
.dataflow-graphic-v11 .flow-pulse-ring {
  fill: none;
  stroke: rgba(0,229,255,.16);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  transform-origin: 222px 170px;
  animation: spinOrbit 14s linear infinite;
}
@media (max-width: 1180px) {
  .step-connector {
    left: calc(50% + 48px);
    width: calc(100% - 68px);
  }
}
@media (max-width: 1024px) {
  .step-connector { display: none; }
}
@media (max-width: 640px) {
  .dataflow-wrap-v11 {
    width: 100%;
    min-height: 338px;
    padding: 16px 10px 8px;
  }
}


/* ===== V12 final animation polish ===== */
.process-step {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.process-step .step-icon {
  animation: stepFloat 4.8s ease-in-out infinite;
}
.process-step:nth-child(2) .step-icon { animation-delay: .4s; }
.process-step:nth-child(3) .step-icon { animation-delay: .8s; }
.process-step:nth-child(4) .step-icon { animation-delay: 1.2s; }
.process-step:hover {
  transform: translateY(-3px);
}
.step-connector {
  border-top: 2px dashed rgba(0,229,255,.75);
  background: none !important;
  overflow: visible;
}
.step-connector::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, #00E5FF 0%, #00E5FF 45%, rgba(0,229,255,.15) 100%);
  box-shadow: 0 0 12px rgba(0,229,255,.45);
  animation: stepPulseTravel 2.6s linear infinite;
}
.step-connector::after {
  top: -5px;
}
@keyframes stepFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes stepPulseTravel {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}

.workflow-wrap-v12 {
  width: min(100%, 500px);
  min-height: 382px;
  padding: 20px 18px 14px;
  border-radius: 24px;
  border: 1px solid rgba(0,229,255,.14);
  background:
    radial-gradient(circle at 50% 8%, rgba(0,229,255,.10), transparent 36%),
    radial-gradient(circle at 84% 84%, rgba(0,255,148,.06), transparent 22%),
    linear-gradient(180deg, rgba(13,27,46,.78), rgba(9,18,36,.94));
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.workflow-wrap-v12::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.04) 50%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: flowShine 8s ease-in-out infinite;
}
.workflow-graphic-v12 {
  display: block;
  margin: 6px auto 0;
  max-width: 100%;
  height: auto;
}
.workflow-graphic-v12 .wf-box {
  fill: rgba(255,255,255,.03);
  stroke: rgba(0,229,255,.16);
  stroke-width: 1.15;
}
.workflow-graphic-v12 .wf-box-router,
.workflow-graphic-v12 .wf-box-qual,
.workflow-graphic-v12 .wf-box-enrich {
  stroke: rgba(0,255,148,.24);
}
.workflow-graphic-v12 .wf-box-out:nth-of-type(6) {
  stroke: rgba(108,99,255,.22);
}
.workflow-graphic-v12 .wf-title,
.workflow-graphic-v12 .wf-mini {
  fill: #F7FAFD;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.workflow-graphic-v12 .wf-sub,
.workflow-graphic-v12 .wf-mini-sub {
  fill: #A2B5CB;
  font-size: 10.5px;
}
.workflow-graphic-v12 .wf-path {
  fill: none;
  stroke: url(#wfGradA);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  opacity: .96;
}
.workflow-graphic-v12 .wf-path-soft {
  stroke-opacity: .72;
}
.workflow-graphic-v12 .wf-path-branch {
  stroke: url(#wfGradB);
}
.workflow-graphic-v12 .wf-path-branch-alt {
  stroke: url(#wfGradC);
}
.workflow-graphic-v12 .wf-arrow {
  fill: none;
  stroke: rgba(0,255,148,.88);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.workflow-graphic-v12 .wf-core-ring {
  fill: none;
  stroke: rgba(0,229,255,.18);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  transform-origin: 361px 173px;
  animation: spinOrbit 14s linear infinite;
}
.workflow-graphic-v12 .wf-core-dot {
  fill: rgba(0,255,148,.95);
  filter: drop-shadow(0 0 10px rgba(0,255,148,.4));
  animation: corePulse 2s ease-in-out infinite;
}
.workflow-graphic-v12 .wf-bars rect {
  fill: rgba(0,255,148,.72);
  transform-origin: center bottom;
  animation: barsWork 1.35s ease-in-out infinite;
}
.workflow-graphic-v12 .wf-bars rect:nth-child(2) { animation-delay: .15s; }
.workflow-graphic-v12 .wf-bars rect:nth-child(3) { animation-delay: .3s; }
.workflow-graphic-v12 .wf-bars rect:nth-child(4) { animation-delay: .45s; }
.workflow-graphic-v12 .marker-cyan { fill: var(--color-cyan); }
.workflow-graphic-v12 .marker-green { fill: var(--color-green); }
.workflow-graphic-v12 .marker-purple { fill: var(--color-purple); }
@media (max-width: 1024px) {
  .workflow-wrap-v12 {
    width: min(100%, 520px);
  }
}
@media (max-width: 640px) {
  .workflow-wrap-v12 {
    width: 100%;
    min-height: 346px;
    padding: 16px 10px 8px;
  }
}


/* ===== V13 floating WhatsApp icon fix ===== */
.float-wpp {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #31E26F, #22C55E);
  box-shadow: 0 12px 30px rgba(37,211,102,.38);
}
.float-wpp-icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}
.float-wpp:hover {
  transform: scale(1.08) translateY(-1px);
}


/* ===== V14 use provided WhatsApp image ===== */
.btn-wpp-icon-img {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.float-wpp {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}
.float-wpp-img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(37,211,102,.28));
}
.float-wpp:hover {
  transform: scale(1.06) translateY(-1px);
}


/* ===== V15 CTA WhatsApp image fix ===== */
.cta-wpp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-wpp-icon-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(37,211,102,.22));
}


/* ===== V16 email link fix ===== */
.btn-meeting {
  cursor: pointer;
}


/* ===== V17 e-mail copy fallback ===== */
.email-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%) translateY(16px);
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(8, 24, 44, 0.96);
  color: #F7FAFD;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.email-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.js-copy-email {
  cursor: pointer;
}
