
.brand-text strong {
  display:block;
  position:relative;
  font-size:1.16rem;
  letter-spacing:.12em;
  font-weight:800;
  line-height:1.05;

  background: linear-gradient(90deg,#0c1830 0%,#17345f 25%,#0f5fe7 65%,#52b6ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 1px 0 rgba(255,255,255,.35),
    0 2px 0 rgba(9,28,69,.12),
    0 3px 0 rgba(9,28,69,.08),
    0 8px 18px rgba(15,95,231,.16);
}

.brand-text strong::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg,
    rgba(12,24,48,0) 0%,
    rgba(15,95,231,.35) 20%,
    rgba(82,182,255,.7) 50%,
    rgba(15,95,231,.35) 80%,
    rgba(12,24,48,0) 100%);
}



.hero-divider{
  position:relative;
  width:98%;
  margin:6px auto 34px;
  height:22px;
}

.hero-divider::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:10px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,
    rgba(12,24,48,0) 0%,
    rgba(15,95,231,.9) 30%,
    rgba(130,214,255,1) 50%,
    rgba(15,95,231,.9) 70%,
    rgba(12,24,48,0) 100%);
  box-shadow:
    0 0 10px rgba(82,182,255,.6),
    0 0 24px rgba(15,95,231,.4),
    0 0 48px rgba(82,182,255,.25);
}

.hero-divider svg{
  display:none !important;
}



:root {
  --bg: #edf4ff;
  --bg2: #ffffff;
  --text: #0b2147;
  --muted: #50627f;
  --line: rgba(15, 95, 231, 0.14);
  --line-strong: rgba(15, 95, 231, 0.28);
  --blue: #0f5fe7;
  --blue-dark: #103a8f;
  --navy: #081c45;
  --glow: rgba(15, 95, 231, 0.22);
  --shadow: 0 24px 60px rgba(18, 61, 132, 0.12);
  --shadow-soft: 0 32px 90px rgba(20, 70, 150, 0.12);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15,95,231,0.10), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(68,160,255,0.10), transparent 18%),
    radial-gradient(circle at bottom right, rgba(15,95,231,0.09), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 32%, #f9fbff 67%, #eef6ff 100%);
  line-height: 1.65;
  overflow-x: clip;
  padding-top: 90px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-shell {
  position: relative;
  overflow-x: hidden;
}
.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  width: 38vw;
  height: 38vw;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .45;
  z-index: 0;
}
.site-shell::before {
  top: -14vw;
  right: -8vw;
  background: rgba(15,95,231,0.11);
}
.site-shell::after {
  bottom: -14vw;
  left: -8vw;
  background: rgba(78,168,255,0.11);
}

.wrap {
  width: min(1760px, calc(100% - 44px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(15,95,231,0.10);
}
.topbar-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: .94rem;
}
.menu {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,95,231,0.10);
  box-shadow: 0 8px 25px rgba(16,58,143,0.06);
  transition: .22s ease;
}
.menu a:hover,
.menu a:focus-visible {
  background: rgba(15,95,231,0.08);
  outline: none;
  transform: translateY(-1px);
}
.menu .menu-cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff;
  border-color: transparent;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(15,95,231,0.15);
  border-radius: 14px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: .2s ease;
}
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 18, 48, 0.35);
  z-index: 40;
}
body.nav-open .hamburger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2){ opacity: 0; }
body.nav-open .hamburger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  padding: 86px 0 0;
  min-height: calc(100svh - 88px);
  isolation: isolate;
}
.hero-bg,
.hero-overlay,
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media {
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.98) contrast(1.03) brightness(1.08);
}
.hero-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.92), transparent 36%),
    radial-gradient(circle at 88% 14%, rgba(66,162,255,0.18), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(15,95,231,0.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,251,255,0.84));
  pointer-events: none;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(248,252,255,0.78) 0%, rgba(247,251,255,0.69) 50%, rgba(245,250,255,0.80) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 92px;
}
.hero-copy,
.hero-panel,
.glass-box,
.feature-card,
.service-card,
.project-card,
.geo-card,
.contact-card,
.step,
.faq-list details,
.mini-card,
.hero-stack-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}
.hero-copy {
  padding: clamp(28px, 3.1vw, 48px) clamp(28px, 4vw, 64px);
  width: 100%;
  max-width: none;
  min-height: clamp(360px, 42vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 30px 90px rgba(16,58,143,0.17), inset 0 1px 0 rgba(255,255,255,0.46);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin: 0 0 14px;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}
.hero-copy .eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-wordmark {
  width: min(780px, 100%);
  margin: 0 auto 18px;
}
.hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 5.4rem);
  line-height: .98;
  margin: 0 auto 16px;
  max-width: 18ch;
}
.hero-text {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  color: var(--muted);
  max-width: 980px;
  margin-inline: auto;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-actions {
  justify-content: center;
}
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 16px 40px rgba(15,95,231,0.28);
  transition: .22s ease;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
.btn-secondary {
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 28px rgba(16,58,143,0.08);
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 24px;
  width: 100%;
}
.mini-card {
  padding: 18px;
}
.mini-card strong {
  display: block;
  margin-bottom: 6px;
}
.mini-card span { color: var(--muted); font-size: .95rem; }
.hero-panel {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.panel-glow {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(15,95,231,0.18), transparent 42%),
    radial-gradient(circle at bottom left, rgba(79,169,255,0.14), transparent 35%);
  pointer-events: none;
}
.hero-stack-card {
  position: relative;
  width: 100%;
  padding: 26px clamp(24px, 3vw, 42px);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(240,247,255,0.86));
}
.chip,
.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: .10em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.hero-stack-card h2 { margin: 16px 0 10px; font-size: 1.95rem; }
.hero-stack-card p { color: var(--muted); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}
.check-list.dark li::before { background: var(--navy); }
.compact li { margin-bottom: 10px; }

.hero-divider {
  position: relative;
  width: 100%;
  margin-top: -30px;
  z-index: 2;
}
.hero-divider svg {
  display: block;
  width: 100%;
  height: clamp(100px, 11vw, 180px);
  filter: drop-shadow(0 -14px 20px rgba(15,95,231,0.08));
}

.section {
  position: relative;
  padding: 44px 0 104px;
}
.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.42), rgba(255,255,255,0));
  pointer-events: none;
}
.section-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(15,95,231,0.05), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(67,161,255,0.06), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.56), rgba(244,249,255,0.74) 44%, rgba(255,255,255,0.52));
}
.section-head {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto 32px;
}
.section-head h2,
.split-layout h2,
.geo-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.05;
  margin: 0 0 14px;
}
.section-head p,
.split-layout p,
.geo-card p,
.contact-card p,
.service-card p,
.feature-card p,
.project-card p,
.step p,
.faq-list p,
.glass-box p {
  color: var(--muted);
}
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 30px;
  align-items: start;
}
.glass-box { padding: 30px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.value-grid article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(15,95,231,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(244,249,255,0.72));
}
.value-grid strong,
.feature-card h3,
.service-card h3,
.project-card h3,
.step h3,
.contact-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.feature-grid,
.service-grid,
.project-grid {
  display: grid;
  gap: 20px;
}
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card,
.service-card,
.project-card { padding: 28px; }
.feature-card,
.service-card,
.project-card,
.step,
.contact-card,
.faq-list details,
.mini-card,
.hero-copy,
.hero-panel,
.glass-box,
.geo-card {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.feature-card:hover,
.service-card:hover,
.project-card:hover,
.step:hover,
.contact-card:hover,
.faq-list details:hover,
.mini-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 36px 85px rgba(16,58,143,0.16);
}
.geo-layout { align-items: center; }
.geo-card { padding: 30px; }
.logo-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.logo-chip {
  min-height: 118px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 800;
  border-radius: 26px;
  color: var(--navy);
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step { padding: 28px; }
.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  font-weight: 900;
  margin-bottom: 14px;
}
.faq-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-list details { padding: 0 24px; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin: 0 0 22px; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(320px,.8fr);
  gap: 20px;
}
.contact-card { padding: 30px; }
.contact-card.big {
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(236,245,255,0.84));
}
.footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(15,95,231,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(240,247,255,0.7));
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner p,
.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  margin: 4px 0;
}



.hero h1,
.section-head h2,
.split-layout h2,
.geo-card h2,
.contact-card h2,
.hero-stack-card h2,
.feature-card h3,
.service-card h3,
.project-card h3,
.step h3,
.contact-card h3,
.value-grid strong,
.faq-list summary {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: linear-gradient(90deg, #0c1830 0%, #17345f 28%, #0f5fe7 72%, #52b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.hero h1::after,
.section-head h2::after,
.split-layout h2::after,
.geo-card h2::after,
.contact-card h2::after,
.hero-stack-card h2::after,
.feature-card h3::after,
.service-card h3::after,
.project-card h3::after,
.step h3::after,
.contact-card h3::after,
.value-grid strong::after,
.faq-list summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: min(92%, 220px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14,24,48,0.92), rgba(15,95,231,0.78), rgba(82,182,255,0.16));
  box-shadow: 0 0 16px rgba(15,95,231,0.22);
}

.hero h1::before,
.section-head h2::before,
.split-layout h2::before,
.geo-card h2::before,
.contact-card h2::before,
.hero-stack-card h2::before,
.feature-card h3::before,
.service-card h3::before,
.project-card h3::before,
.step h3::before,
.contact-card h3::before,
.value-grid strong::before,
.faq-list summary::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -16px;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(15,95,231,0.60);
  border-bottom: 2px solid rgba(82,182,255,0.55);
  transform: skewX(-24deg);
  filter: drop-shadow(0 0 10px rgba(15,95,231,0.18));
}

.hero h1 {
  padding-bottom: 18px;
}

.section-head h2,
.split-layout h2,
.geo-card h2,
.contact-card h2,
.hero-stack-card h2 {
  padding-bottom: 16px;
}

.feature-card h3,
.service-card h3,
.project-card h3,
.step h3,
.contact-card h3,
.value-grid strong,
.faq-list summary {
  padding-bottom: 14px;
}

.section-head h2,
.hero-stack-card h2 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 760px) {
  .hero h1::before,
  .section-head h2::before,
  .split-layout h2::before,
  .geo-card h2::before,
  .contact-card h2::before,
  .hero-stack-card h2::before,
  .feature-card h3::before,
  .service-card h3::before,
  .project-card h3::before,
  .step h3::before,
  .contact-card h3::before,
  .value-grid strong::before,
  .faq-list summary::before {
    right: -14px;
    width: 12px;
    height: 12px;
  }
}

.reveal-ready [data-reveal],
.reveal-ready [data-reveal-item] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-ready [data-reveal="left"] { transform: translateX(-30px); }
.reveal-ready [data-reveal="up"] { transform: translateY(30px); }
.reveal-ready .is-in {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

@media (max-width: 1240px) {
  .split-layout,
  .contact-grid,
  .geo-layout { grid-template-columns: 1fr; }
  .feature-grid,
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero h1 { max-width: 18ch; }
}

@media (max-width: 1180px) {
  .hero-points { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hamburger { display: inline-block; }
  .menu {
    position: fixed;
    top: 96px;
    right: 18px;
    width: min(340px, calc(100% - 36px));
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .22s ease;
  }
  body.nav-open .menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu a { text-align: center; }
}

@media (max-width: 760px) {
  body { padding-top: 78px; }
  .wrap { width: min(100% - 22px, 1600px); }
  .topbar-inner { min-height: 78px; }
  .brand-icon { width: 52px; height: 52px; }
  .brand-text span { font-size: .85rem; }
  .hero {
    padding-top: 36px;
    min-height: auto;
  }
  .hero-copy,
  .hero-panel,
  .glass-box,
  .feature-card,
  .service-card,
  .project-card,
  .geo-card,
  .contact-card,
  .step,
  .hero-stack-card,
  .mini-card { padding: 20px; }
  .feature-grid,
  .service-grid,
  .project-grid,
  .steps,
  .value-grid,
  .logo-cloud,
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 24px 0 68px; }
  .hero-grid { padding-bottom: 60px; }
  .hero-copy { min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 10vw, 3.15rem); }
  .hero-wordmark { width: 100%; }
  .hero-divider { margin-top: -10px; }
}
