:root {
  --navy: #07152f;
  --navy-2: #0c1f47;
  --blue: #1264f3;
  --cyan: #20a4f3;
  --violet: #7247f5;
  --ink: #0b1734;
  --muted: #65718c;
  --line: #dfe5f0;
  --soft: #f4f7fc;
  --white: #ffffff;
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(7, 21, 47, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 110px 0; }

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 95, 255, .11), transparent 67%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 30;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7,21,47,.08);
}
.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { width: 185px; }
.brand img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--blue);
  transition: .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-cta {
  padding: 13px 19px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 810px;
  padding-top: 170px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(118, 71, 245, .11), transparent 32%),
    radial-gradient(circle at 72% 65%, rgba(18, 100, 243, .1), transparent 28%),
    linear-gradient(180deg, #fff, #f8faff);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,21,47,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,21,47,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0, black 15%, black 80%, transparent);
  z-index: -2;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
  z-index: -1;
}
.orb-one {
  width: 330px; height: 330px;
  right: -120px; top: 100px;
  background: radial-gradient(circle at 30% 30%, #8d69ff, transparent 70%);
}
.orb-two {
  width: 260px; height: 260px;
  left: -140px; bottom: 20px;
  background: radial-gradient(circle at 70% 50%, #1b7df7, transparent 70%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow, .kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: rgba(18,100,243,.07);
  border: 1px solid rgba(18,100,243,.13);
  border-radius: 999px;
}
.eyebrow span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(18,100,243,.12);
}
.hero h1, .section-heading h2, .methodology-copy h2, .cta-card h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
}
.hero h1 {
  font-size: clamp(54px, 6.4vw, 86px);
  line-height: .97;
  margin: 25px 0 25px;
  max-width: 760px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 14px 35px rgba(48, 82, 235, .28);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.hero-proof {
  display: flex;
  gap: 32px;
  padding-top: 42px;
}
.hero-proof div { display: grid; gap: 3px; }
.hero-proof strong {
  font-family: "Space Grotesk";
  font-size: 25px;
}
.hero-proof span {
  color: var(--muted);
  font-size: 11px;
  max-width: 115px;
  line-height: 1.45;
}

.system-card {
  border-radius: 34px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,244,255,.83));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 35px 100px rgba(7,21,47,.15), inset 0 0 0 1px rgba(7,21,47,.05);
}
.system-top, .system-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #6a7693;
}
.live { display: flex; align-items: center; gap: 7px; }
.live i {
  width: 7px; height: 7px;
  background: #1fc778;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31,199,120,.12);
}
.system-center {
  position: relative;
  height: 480px;
  margin: 5px 0;
}
.core {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: white;
  box-shadow: 0 20px 60px rgba(43,68,145,.18);
  display: grid;
  place-items: center;
  z-index: 3;
}
.core::before, .core::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(34,98,242,.22);
  border-radius: 50%;
  animation: pulse 3s infinite;
}
.core::after { inset: -38px; animation-delay: .8s; }
.core img {
  width: 105px;
  height: 75px;
  object-fit: contain;
  object-position: left;
}
.node {
  position: absolute;
  width: 120px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,21,47,.08);
  box-shadow: 0 15px 38px rgba(7,21,47,.1);
  z-index: 2;
}
.node b { display: block; font-size: 13px; }
.node small { color: var(--muted); }
.node-1 { left: 13px; top: 45px; }
.node-2 { right: 5px; top: 35px; }
.node-3 { right: 8px; bottom: 42px; width: 135px; }
.node-4 { left: 5px; bottom: 45px; }
.connections {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.connections path {
  stroke: rgba(36,97,239,.35);
  stroke-width: 2;
  stroke-dasharray: 7 8;
  fill: none;
  animation: dash 7s linear infinite;
}
.system-bottom {
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.system-bottom span {
  background: white;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 999px;
  letter-spacing: 0;
  font-size: 9px;
}

.trust-strip {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-strip p {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 20px;
}
.sector-list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #939caf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.section-heading { margin-bottom: 54px; max-width: 780px; }
.section-heading.narrow { max-width: 760px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .methodology-copy h2, .cta-card h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 16px 0 20px;
}
.section-heading p, .methodology-copy > p, .cta-card > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.problem-section { background: var(--soft); }
.shift-grid {
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;
}
.shift-card {
  min-height: 400px;
  border-radius: var(--radius-lg);
  padding: 42px;
  background: white;
  border: 1px solid var(--line);
}
.shift-card.new {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: var(--shadow);
}
.card-label {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef2f8;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.new .card-label { background: rgba(255,255,255,.1); color: #cdd7f2; }
.shift-card h3 {
  font-family: "Space Grotesk";
  font-size: 32px;
  line-height: 1.15;
  margin: 24px 0 28px;
}
.shift-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.shift-card li {
  position: relative;
  padding-left: 29px;
  color: var(--muted);
}
.new li { color: #dbe2f3; }
.shift-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--blue);
  font-weight: 900;
}
.new li::before { color: #6fa4ff; }
.shift-arrow {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: auto;
  z-index: 2;
}

.services-section { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: linear-gradient(160deg, var(--navy), #102d68);
  color: white;
  border: none;
}
.service-number {
  margin-left: auto;
  font-family: "Space Grotesk";
  font-size: 13px;
  color: var(--muted);
}
.featured .service-number { color: #9daed2; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 17px;
  background: #eef4ff;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 35px;
}
.featured .service-icon { background: rgba(255,255,255,.11); color: white; }
.service-card h3 {
  font-family: "Space Grotesk";
  font-size: 28px;
  margin: 0 0 18px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 30px;
}
.featured p { color: #c6d0e8; }
.service-card a {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
}
.featured a { color: white; }
.service-card a span { margin-left: 6px; }

.methodology-section {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.methodology-section::before {
  content: "";
  position: absolute;
  width: 580px; height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65,91,255,.25), transparent 68%);
  left: -210px; bottom: -220px;
}
.methodology-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  position: relative;
}
.methodology-copy { position: sticky; top: 140px; height: max-content; }
.kicker.light, .methodology-copy .kicker { color: #78a6ff; }
.methodology-copy > p { color: #b7c3dc; }
.guarantee-box {
  margin-top: 45px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
  border-radius: 24px;
}
.guarantee-box span {
  color: #92a5ce;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 800;
}
.guarantee-box strong {
  display: block;
  font-family: "Space Grotesk";
  font-size: 44px;
  margin: 8px 0;
}
.guarantee-box p { margin: 0; color: #b7c3dc; font-size: 13px; }

.timeline { position: relative; display: grid; gap: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 29px; top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(#4b7efe, rgba(255,255,255,.1));
}
.phase {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding: 25px;
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}
.phase-marker {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  display: grid;
  place-items: center;
  font-family: "Space Grotesk";
  font-size: 21px;
  font-weight: 700;
  z-index: 1;
}
.phase span {
  color: #82a7f6;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.phase h3 {
  font-family: "Space Grotesk";
  font-size: 23px;
  margin: 7px 0 7px;
}
.phase p { color: #aebbd6; margin: 0; line-height: 1.6; font-size: 14px; }

.results-section { background: #fff; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.metric {
  padding: 36px;
  min-height: 240px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric:nth-child(3n) { border-right: 0; }
.metric:nth-child(n+4) { border-bottom: 0; }
.metric strong {
  display: block;
  color: var(--blue);
  font-family: "Space Grotesk";
  font-size: 13px;
}
.metric h3 {
  font-family: "Space Grotesk";
  font-size: 26px;
  margin: 34px 0 12px;
}
.metric p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.final-cta { padding-top: 30px; }
.cta-card {
  background:
    radial-gradient(circle at 15% 15%, rgba(115,72,245,.48), transparent 34%),
    linear-gradient(135deg, #0a1b3d, #123a85);
  color: white;
  border-radius: 38px;
  padding: 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  box-shadow: 0 35px 100px rgba(7,21,47,.22);
}
.cta-card > div > p { color: #c5d0e7; }
.contact-form {
  background: white;
  color: var(--ink);
  border-radius: 26px;
  padding: 30px;
  display: grid;
  gap: 15px;
}
.contact-form label { display: grid; gap: 7px; }
.contact-form label span {
  font-size: 11px;
  font-weight: 800;
  color: #4e5c77;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
  transition: border .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #6e8df5;
  box-shadow: 0 0 0 4px rgba(63,101,242,.1);
}
.btn-white {
  margin-top: 5px;
  color: white;
  background: var(--navy);
}
.form-note { color: #8791a5; font-size: 10px; line-height: 1.5; margin: 0; }
.form-success {
  display: none;
  padding: 12px;
  border-radius: 12px;
  color: #0a7043;
  background: #e8f8f0;
  font-size: 12px;
  font-weight: 700;
}
.form-success.show { display: block; }

footer { padding: 60px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr 1fr;
  gap: 50px;
}
.footer-brand img {
  width: 170px;
  height: 55px;
  object-fit: contain;
  object-position: left;
}
.footer-brand p, .footer-legal p { color: var(--muted); font-size: 12px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid span {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px;
}
.footer-grid a { font-size: 13px; font-weight: 600; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@keyframes pulse {
  0%,100% { opacity:.3; transform:scale(.96); }
  50% { opacity:.8; transform:scale(1.04); }
}
@keyframes dash { to { stroke-dashoffset: -100; } }

@media (max-width: 980px) {
  .section { padding: 85px 0; }
  .main-nav {
    position: fixed;
    inset: 86px 20px auto;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 20px;
    padding: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .main-nav.open { display: flex; }
  .menu-toggle {
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: white;
    display: grid;
    place-content: center;
    gap: 4px;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--navy); }
  .hero { padding-top: 145px; }
  .hero-content, .methodology-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { max-width: 650px; width: 100%; margin: 0 auto; }
  .methodology-copy { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3n) { border-right: 1px solid var(--line); }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .metric:nth-child(n+5) { border-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { gap: 40px; padding: 50px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 70px 0; }
  .hero h1 { font-size: 48px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-proof { gap: 16px; justify-content: space-between; }
  .system-center { height: 390px; }
  .core { width: 115px; height: 115px; }
  .core img { width: 82px; }
  .node { width: 95px; padding: 11px; }
  .node b { font-size: 11px; }
  .node small { font-size: 9px; }
  .node-3 { width: 110px; }
  .sector-list { flex-wrap: wrap; justify-content: center; }
  .shift-grid { grid-template-columns: 1fr; gap: 15px; }
  .shift-arrow { transform: rotate(90deg); }
  .shift-card { min-height: auto; padding: 30px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .cta-card { padding: 30px 20px; border-radius: 26px; }
  .contact-form { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading h2, .methodology-copy h2, .cta-card h2 { font-size: 38px; }
  .phase { padding: 18px 16px; grid-template-columns: 50px 1fr; gap: 15px; }
  .phase-marker { width: 48px; height: 48px; }
  .timeline::before { left: 24px; }
}

.whatsapp-float{position:fixed;right:24px;bottom:24px;width:64px;height:64px;border-radius:50%;background:#25D366;display:grid;place-items:center;box-shadow:0 15px 35px rgba(0,0,0,.25);z-index:1000;padding:12px}
.whatsapp-float img{width:100%;height:100%;object-fit:contain;border-radius:50%}
