 :root {
  --blue: #1d4f91;
  --blue-dark: #143968;
  --blue-soft: #eaf1f8;
  --text: #111827;
  --muted: #4b5563;
  --line: #d7e0ea;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 70%, #f3f6fa 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 11000;
  transform: translate(-50%, -50%);
  transition: opacity .16s ease, border-color .2s ease, background-color .2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #244b7a;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(36, 75, 122, .5);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(2px);
}

body.cursor-enabled {
  cursor: none;
}

body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled .btn,
body.cursor-enabled [role="button"],
body.cursor-enabled .nav-link,
body.cursor-enabled .flow-item {
  cursor: none;
}

body.cursor-visible .cursor-dot,
body.cursor-visible .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  transform: translate(-50%, -50%) scale(1.28);
  border-color: rgba(36, 75, 122, .85);
  background: rgba(36, 75, 122, .08);
}

body.cursor-hover .cursor-dot {
  transform: translate(-50%, -50%) scale(1.08);
}

body.cursor-pressed .cursor-ring {
  transform: translate(-50%, -50%) scale(.92);
}

body.cursor-pressed .cursor-dot {
  transform: translate(-50%, -50%) scale(.8);
}

#loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #e6edf5, #ffffff 52%);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .45s ease, visibility .45s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(360px, 90%);
  padding: 34px;
  border-radius: 20px;
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
}

.loader-logo {
  width: min(120px, 100%);
  max-width: 120px;
  max-height: 120px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  margin-bottom: 22px;
  box-shadow: 0 10px 24px rgba(20, 57, 104, .18);
  border: 1px solid #ced9e5;
}

.loader-bar {
  height: 8px;
  width: 100%;
  background: #eaf2ff;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 14px;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  border-radius: 50px;
  animation: loading 1s infinite ease-in-out;
}

@keyframes loading {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

.nav-premium {
  padding: 18px 0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .7);
  transition: .25s ease;
}

.nav-premium.scrolled {
  padding: 12px 0;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
}

.navbar-brand {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.7px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  max-width: 58px;
  max-height: 58px;
  border-radius: 12px;
  object-fit: cover;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(20, 57, 104, .15);
  border: 1px solid #ced9e5;
}

.nav-link {
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  margin: 0 8px;
}

.nav-link:hover {
  color: var(--blue);
}

.btn {
  border-radius: 12px;
  font-weight: 700;
  padding: 13px 22px;
  border: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 24px rgba(20, 57, 104, .22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1b4a86, #122f55);
}

.btn-light {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-light:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.btn-nav {
  font-size: 14px;
  padding: 11px 18px;
}

.hero-section {
  position: relative;
  padding: 176px 0 108px;
  background:
    radial-gradient(circle at top left, #ebf1f8, transparent 38%),
    linear-gradient(180deg, #ffffff, #f6f9fc);
  overflow: hidden;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.neural-network {
  position: absolute;
  inset: 70px 40px 50px;
  opacity: .36;
  pointer-events: none;
  z-index: 1;
}

.neural-network svg {
  width: 100%;
  height: 100%;
}

.neural-lines path {
  fill: none;
  stroke: #2b4e78;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 8 10;
  animation: neuralFlow 24s linear infinite;
}

.neural-nodes circle {
  fill: #214f8e;
  opacity: .85;
  animation: neuralPulse 4.5s ease-in-out infinite;
}

.neural-nodes circle:nth-child(3n) {
  animation-delay: .8s;
}

.neural-nodes circle:nth-child(4n) {
  animation-delay: 1.5s;
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .16;
  pointer-events: none;
}

.hero-blur-1 {
  width: 330px;
  height: 330px;
  background: #9cb2cc;
  top: 110px;
  right: -90px;
}

.hero-blur-2 {
  width: 260px;
  height: 260px;
  background: #2d4f7a;
  bottom: 80px;
  left: -120px;
}

.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef3f8;
  color: var(--blue);
  border: 1px solid #d4dde8;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.badge-premium.light {
  background: rgba(255,255,255,.14);
  color: #ffffff;
  border-color: rgba(255,255,255,.22);
}

h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

h1 span {
  color: var(--blue);
}

.hero-text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 620px;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-metrics {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-metrics div {
  min-width: 120px;
}

.hero-metrics strong {
  display: block;
  font-size: 22px;
  color: var(--text);
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.dashboard-card {
  position: relative;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  animation: floatCard 7s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #dbeafe;
  display: inline-block;
  margin-right: 6px;
}

.dashboard-top small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-content {
  padding: 36px;
}

.ai-orb {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #244b7a, #2d5f9c);
  color: #ffffff;
  font-size: 36px;
  box-shadow: 0 18px 44px rgba(20,57,104,.26);
  margin-bottom: 24px;
}

.dashboard-content h3 {
  font-weight: 800;
  letter-spacing: -1px;
}

.dashboard-content p {
  color: var(--muted);
  line-height: 1.7;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.flow-item {
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flow-item.active {
  background: #244b7a;
  color: #ffffff;
}

.growth-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 18px;
  background: #1a2a3f;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.growth-box small {
  color: #a9c7ff;
  display: block;
}

.growth-box strong {
  font-size: 34px;
}

.growth-line {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 70px;
}

.growth-line span {
  width: 12px;
  background: linear-gradient(180deg, #7db9ff, #ffffff);
  border-radius: 20px;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section::before {
  content: none;
}

.section .container {
  position: relative;
}

.section .container::after {
  content: none;
}

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

.section-kicker {
  color: var(--muted);
  font-weight: 700;
}

.logo-strip {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(15, 23, 42, .04);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-strip span {
  font-weight: 800;
  color: #475569;
  background: #f8fbff;
  padding: 11px 16px;
  border-radius: 999px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-header h2,
.ecosystem-section h2,
.results-card h2,
.contact-card h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.section-header p,
.ecosystem-section p,
.results-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.74;
  font-size: 16px;
  margin-bottom: 0;
}

.service-card {
  height: 100%;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
  transition: .25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.timeline-item::before,
.stats-grid div::before,
.trusted-logos span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #244b7a, #4d6f96, transparent);
  opacity: .7;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  border-color: #cfe5ff;
}

.service-card i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.7px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.ecosystem-section {
  background:
    radial-gradient(circle at right, #e7eef6, transparent 35%),
    #f6f9fc;
}

.check-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #334155;
}

.check-list i {
  color: var(--blue);
  font-size: 22px;
}

.ecosystem-map {
  position: relative;
  min-height: 470px;
  border-radius: 24px;
  background:
    linear-gradient(transparent 96%, rgba(78, 104, 136, 0.10) 96%),
    linear-gradient(90deg, transparent 96%, rgba(78, 104, 136, 0.10) 96%),
    rgba(255,255,255,.80);
  background-size: 24px 24px, 24px 24px, auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ecosystem-map::before {
  content: "";
  position: absolute;
  inset: 70px;
  border: 1px dashed #bad8ff;
  border-radius: 50%;
}

.center-node,
.node {
  position: absolute;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 15px 45px rgba(15, 23, 42, .08);
}

.center-node {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #244b7a, #2f5f98);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding: 7px;
}

.center-node-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.node {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 13px 18px;
  color: #334155;
}

.node-1 { top: 70px; left: 70px; }
.node-2 { top: 80px; right: 72px; }
.node-3 { top: 220px; right: 35px; }
.node-4 { bottom: 70px; right: 95px; }
.node-5 { bottom: 80px; left: 70px; }
.node-6 { top: 220px; left: 38px; }

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

.timeline-item {
  padding: 30px 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, .05);
  position: relative;
  overflow: hidden;
}

.timeline-item span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.results-section {
  padding-top: 46px;
}

.results-card {
  border-radius: 24px;
  padding: 60px 54px;
  background:
    radial-gradient(circle at top right, rgba(122,149,184,.35), transparent 32%),
    linear-gradient(135deg, #1a2a3f, #244b7a);
  color: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.results-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.06), transparent 38%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.07) 0 1px,
      transparent 1px 42px
    );
  pointer-events: none;
}

.results-card p {
  color: #dceaff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stats-grid div {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  overflow: hidden;
}

.stats-grid strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
}

.stats-grid span {
  color: #dceaff;
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  padding-top: 56px;
}

.contact-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 66px 40px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top, #ebf1f8, transparent 40%),
    #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card::before,
.trusted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(36, 75, 122, 0.07), transparent 28%);
  pointer-events: none;
}

.contact-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  padding: 72px 0 26px;
  border-top: 1px solid #d3dee9;
  background:
    radial-gradient(circle at 15% 0%, #e9f1fb, transparent 36%),
    linear-gradient(180deg, #f7fafd, #edf3f9);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid #d9e3ed;
}

.footer-brand p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 460px;
  line-height: 1.7;
}

.footer-title {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a,
.footer-contact a {
  color: #334155;
  font-weight: 700;
}

.footer-contact span {
  color: #475569;
  font-weight: 600;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue);
}

.footer-meta {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-meta small {
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 991px) {
  .nav-premium {
    padding: 12px 0;
  }

  .brand-icon {
    width: 50px;
    height: 50px;
  }

  .btn-nav {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .hero-section {
    padding: 146px 0 84px;
  }

  .neural-network {
    inset: 100px 20px 30px;
    opacity: .22;
  }

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

  .navbar-collapse {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    margin-top: 14px;
    box-shadow: var(--shadow);
  }

  .nav-link {
    margin: 0;
    padding: 10px 4px;
  }

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

@media (max-width: 767px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-section {
    padding: 128px 0 72px;
  }

  .badge-premium {
    font-size: 12px;
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    margin-bottom: 14px;
  }

  .neural-network {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 10px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 15px;
  }

  .hero-metrics {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-metrics strong {
    font-size: 19px;
  }

  .hero-metrics span {
    font-size: 12px;
  }

  .dashboard-card {
    border-radius: 20px;
  }

  .dashboard-top {
    padding: 14px 16px;
  }

  .flow-grid,
  .stats-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    padding: 20px 18px;
  }

  .ai-orb {
    width: 72px;
    height: 72px;
    font-size: 30px;
    margin-bottom: 16px;
  }

  .flow-item {
    padding: 14px;
    border-radius: 14px;
  }

  .growth-box {
    padding: 16px;
    border-radius: 14px;
  }

  .growth-box strong {
    font-size: 30px;
  }

  .section-header h2,
  .ecosystem-section h2,
  .results-card h2,
  .contact-card h2 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.14;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .section-header p,
  .ecosystem-section p,
  .results-card p,
  .contact-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-card,
  .timeline-item,
  .stats-grid div {
    border-radius: 16px;
    padding: 22px 18px;
  }

  .service-card h3,
  .timeline-item h3 {
    font-size: 18px;
  }

  .service-card p,
  .timeline-item p {
    line-height: 1.62;
    font-size: 14px;
  }

  .results-card {
    border-radius: 20px;
    padding: 34px 20px;
  }

  .stats-grid strong {
    font-size: 24px;
  }

  .contact-card {
    border-radius: 20px;
    padding: 36px 18px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .ecosystem-map {
    min-height: 400px;
    border-radius: 20px;
  }

  .node {
    font-size: 12px;
    padding: 10px 12px;
  }

  .node-1 { top: 46px; left: 20px; }
  .node-2 { top: 52px; right: 20px; }
  .node-3 { top: 190px; right: 18px; }
  .node-4 { bottom: 52px; right: 35px; }
  .node-5 { bottom: 60px; left: 22px; }
  .node-6 { top: 190px; left: 18px; }

  .trusted-section {
    padding: 12px 0 68px;
  }

  .trusted-card {
    border-radius: 18px;
    padding: 28px 16px;
  }

  .trusted-card p {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: .07em;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-brand p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.62;
  }

  .footer-meta {
    padding-top: 14px;
    gap: 8px;
  }

  .footer-meta small {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media (max-width: 575px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-section {
    padding-top: 116px;
  }

  .brand-icon {
    width: 44px;
    height: 44px;
  }

  .navbar-toggler {
    padding: 6px 9px;
    border-radius: 10px;
  }

  .navbar-collapse {
    padding: 14px;
    border-radius: 16px;
  }

  .btn {
    border-radius: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .ecosystem-map {
    min-height: 370px;
  }

  .center-node {
    width: 110px;
    height: 110px;
    padding: 6px;
  }

  .node {
    font-size: 11px;
    padding: 8px 10px;
  }

  .node-3 { top: 170px; right: 10px; }
  .node-6 { top: 170px; left: 10px; }

  footer {
    padding: 56px 0 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-card,
  .neural-lines path,
  .neural-nodes circle {
    animation: none !important;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@keyframes neuralFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -190; }
}

@keyframes neuralPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.14); opacity: 1; }
}
.trusted-section {
  padding: 24px 0 100px;
  background: #ffffff;
}

.trusted-card {
  padding: 42px 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f6f9fc);
  box-shadow: 0 18px 55px rgba(15, 23, 42, .05);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trusted-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 24px;
}

.trusted-neural {
  position: relative;
  min-height: 520px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(36, 75, 122, 0.08), rgba(36, 75, 122, 0) 52%),
    linear-gradient(transparent 96%, rgba(78, 104, 136, 0.08) 96%),
    linear-gradient(90deg, transparent 96%, rgba(78, 104, 136, 0.08) 96%),
    #f8fbff;
  background-size: auto, 28px 28px, 28px 28px, auto;
  border: 1px solid #d8e2ed;
  overflow: hidden;
}

.trusted-neural::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 14px;
  border: 1px solid rgba(36, 75, 122, 0.14);
  pointer-events: none;
}

.trusted-lines {
  position: absolute;
  inset: 34px 42px;
  width: calc(100% - 84px);
  height: calc(100% - 68px);
}

.trusted-lines path {
  fill: none;
  stroke: rgba(36, 75, 122, 0.25);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: trustedFlow 15s linear infinite;
}

.trusted-lines path:nth-child(2n) {
  animation-duration: 17s;
}

.trusted-lines path:nth-child(3n) {
  animation-duration: 20s;
}

.trusted-node {
  position: absolute;
  width: min(290px, 35%);
  padding: 20px 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d4e0ec;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
  transform: translateZ(0);
  animation: trustedPulse 6s ease-in-out infinite;
}

.trusted-node h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0f172a;
}

.trusted-node p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
}

.trusted-node:hover {
  border-color: #bcd3e7;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
}

.node-a {
  top: 58px;
  left: 56px;
}

.node-b {
  top: 58px;
  right: 56px;
  animation-delay: .8s;
}

.node-c {
  bottom: 58px;
  left: 56px;
  animation-delay: 1.4s;
}

.node-d {
  bottom: 58px;
  right: 56px;
  animation-delay: 2s;
}

@keyframes trustedFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -300; }
}

@keyframes trustedPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 991px) {
  .trusted-neural {
    min-height: auto;
    padding: 24px;
    display: grid;
    gap: 14px;
  }

  .trusted-neural::before,
  .trusted-lines {
    display: none;
  }

  .trusted-node {
    position: static;
    width: 100%;
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trusted-lines path,
  .trusted-node {
    animation: none !important;
  }
}
