:root {
  --hero-bg-image: url("../img/hero-bg.svg");
  --hero-bg-color: linear-gradient(135deg, #050b18 0%, #081327 58%, #071e2c 100%);
  --bg: #060b18;
  --bg-2: #0b1326;
  --card: #0f172a;
  --text: #f8fafc;
  --muted: #94a3b8;
  --light: #f8fafc;
  --dark-text: #0f172a;
  --blue: #1d9bf0;
  --cyan: #22d3ee;
  --green: #22c55e;
  --violet: #8b5cf6;
  --orange: #f59e0b;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 70px rgba(2, 6, 23, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-padding {
  padding: 94px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 16px 40px rgba(29, 155, 240, 0.3);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand-text small {
  color: #aab8cf;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d7e3f5;
  font-size: 15px;
  font-weight: 600;
}

.nav a:not(.nav-cta):hover {
  color: #fff;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  color: var(--text);
  min-height: auto;
  padding: 118px 0 104px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.95) 0%, rgba(5, 11, 24, 0.78) 52%, rgba(5, 11, 24, 0.62) 100%),
    var(--hero-bg-image) center / cover no-repeat,
    var(--hero-bg-color);
  background-attachment: scroll;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.04));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(29, 155, 240, 0.12);
  border: 1px solid rgba(29, 155, 240, 0.24);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.hero h1,
.section-head h2,
.feature-copy h2,
.about-card h2,
.cta-box h2,
.contact-copy h2 {
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 82px);
  max-width: 820px;
}

.hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: #b6c4d9;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  box-shadow: 0 18px 40px rgba(29, 155, 240, 0.25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn-light {
  background: #ffffff;
  color: #0f172a;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 22px;
  color: #dbeafe;
}

.trust-row div {
  display: grid;
  gap: 2px;
}

.trust-row strong {
  font-size: 22px;
}

.trust-row span {
  color: #91a4bd;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 16, 32, 0.94));
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(29, 155, 240, 0.22);
  filter: blur(18px);
}

.panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9fb0c8;
  font-size: 13px;
  margin-bottom: 18px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.green { background: var(--green); }
.blue { background: var(--blue); }
.violet { background: var(--violet); }

.dashboard-main {
  position: relative;
  z-index: 2;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: end;
  gap: 24px;
  padding: 24px;
  border-radius: 25px;
  background:
    linear-gradient(135deg, rgba(29, 155, 240, 0.22), rgba(34, 197, 94, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.dashboard-main span,
.metric-card span {
  color: #aab8cf;
  font-size: 14px;
}

.dashboard-main strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.dashboard-main small {
  display: block;
  margin-top: 8px;
  color: #8aa0bb;
}

.mini-chart {
  height: 124px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.mini-chart span {
  flex: 1;
  min-width: 12px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 10px 28px rgba(34, 211, 238, 0.18);
}

.dashboard-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.metric-card {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.logos-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.strip-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  padding: 22px 0;
  color: #64748b;
  font-weight: 800;
  white-space: nowrap;
  scrollbar-width: none;
}

.strip-wrap::-webkit-scrollbar {
  display: none;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-head .eyebrow,
.about-card .eyebrow,
.contact-copy .eyebrow {
  background: #e0f2fe;
  border-color: #bae6fd;
  color: #0369a1;
}

.section-head h2,
.feature-copy h2,
.about-card h2,
.cta-box h2,
.contact-copy h2 {
  font-size: clamp(34px, 5vw, 58px);
}

.section-head p,
.about-card p,
.contact-copy p {
  color: #64748b;
  font-size: 17px;
  margin-top: 14px;
}

.soft-section {
  background: #f8fafc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.business-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 450px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #bfdbfe;
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.1);
}

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

.muted-card {
  background: #ffffff;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eff6ff;
  font-size: 28px;
}

.service-card h3 {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.service-card p {
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}

.service-card ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.service-card li {
  color: #334155;
  font-size: 15.5px;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .service-card h3 {
    white-space: nowrap;
  }

  .service-card li {
    white-space: nowrap;
  }
}

.service-card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 12px;
  font-weight: 800;
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(29, 155, 240, 0.18), transparent 26%),
    linear-gradient(135deg, #061020, #0f172a);
}

.dark-section .eyebrow,
.cta-box .eyebrow {
  background: rgba(29, 155, 240, 0.12);
  border-color: rgba(29, 155, 240, 0.24);
  color: #7dd3fc;
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.feature-copy p {
  color: #aebdd2;
  margin: 18px 0 30px;
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(29, 155, 240, 0.16);
  color: #7dd3fc;
  font-weight: 800;
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.feature-item p {
  color: #aebdd2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.about-card,
.stats-grid {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.07);
}

.about-card {
  padding: 42px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #e2e8f0;
}

.stats-grid div {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 150px;
  padding: 24px;
  background: #fff;
}

.stats-grid strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.stats-grid span {
  color: #64748b;
  font-size: 14px;
}

.cta-section {
  padding: 0 0 94px;
  background: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.22), transparent 28%),
    linear-gradient(135deg, #0f172a, #03142d 68%, #073a3a);
  box-shadow: var(--shadow);
}

.cta-box p {
  color: #b9c6d8;
  margin-top: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}

.contact-list span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eff6ff;
}

.contact-list small {
  display: block;
  color: #64748b;
  margin-top: 2px;
}

.contact-form {
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  color: #0f172a;
  outline: none;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.full-btn {
  width: 100%;
  border: 0;
}

.form-note {
  color: #64748b;
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}

.footer {
  color: #cbd5e1;
  background: #050b18;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 0.6fr;
  gap: 30px;
}

.footer p {
  color: #94a3b8;
  max-width: 440px;
  margin-top: 18px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 16px;
}

.footer a:not(.brand) {
  display: block;
  color: #94a3b8;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 88px 0 76px;
  }

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

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .section-padding {
    padding: 70px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(5, 11, 24, 0.98);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(255,255,255,0.06);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .brand-text small {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .dashboard-main {
    grid-template-columns: 1fr;
  }

  .mini-chart {
    height: 96px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .dashboard-grid,
  .service-grid,
  .business-grid,
  .compact-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .about-card,
  .contact-form,
  .cta-box {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .service-card,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
