:root {
  --navy: #1d347f;
  --navy-2: #0b1538;
  --blue: #2563eb;
  --gold: #ffc400;
  --gold-2: #ffdd57;
  --ink: #10203f;
  --muted: #64748b;
  --line: rgba(29, 52, 127, 0.16);
  --white: #ffffff;
  --soft: #f7f9ff;
  --shadow: 0 24px 80px rgba(13, 24, 64, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 196, 0, 0.2),
      transparent 34%
    ),
    linear-gradient(180deg, #fff 0%, #f8faff 45%, #ffffff 100%);
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}
.section {
  padding: 92px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.page-glow {
  position: fixed;
  inset: -20% -5% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(255, 196, 0, 0.25),
    rgba(37, 99, 235, 0.12),
    transparent 70%
  );
  filter: blur(10px);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(29, 52, 127, 0.1);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 62px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
}
.brand-text {
  display: grid;
  line-height: 1;
}
.brand-text strong {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  -webkit-text-stroke: 0.5px rgba(29, 52, 127, 0.25);
}
.brand-text small {
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--navy-2);
}
.nav-menu a:not(.btn):hover {
  color: var(--blue);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: 14px;
  padding: 11px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy-2);
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(255, 196, 0, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(255, 196, 0, 0.45);
}
.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(29, 52, 127, 0.22);
  color: var(--navy);
  box-shadow: none;
}

.hero {
  padding-top: 118px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  color: var(--navy);
  background: rgba(255, 196, 0, 0.22);
  border: 1px solid rgba(255, 196, 0, 0.45);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(2.65rem, 7vw, 5.65rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin: 22px 0 24px;
  color: var(--navy-2);
}
h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--navy-2);
  margin-bottom: 18px;
}
h3 {
  color: var(--navy-2);
}
.hero-copy p,
.section-heading p,
.solutions p,
.contact p {
  color: var(--muted);
  font-size: 1.09rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-visual {
  min-height: 540px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit-card,
.mini-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.main-card {
  width: min(390px, 88vw);
  padding: 36px;
  border-radius: 36px;
  text-align: center;
  animation: float 5s ease-in-out infinite;
}
.main-card img {
  width: 220px;
  margin: 0 auto 24px;
  border-radius: 22px;
}
.main-card h2 {
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--navy);
}
.main-card p {
  color: var(--muted);
}
.mini-card {
  display: grid;
  gap: 4px;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  font-weight: 900;
  z-index: 2;
}
.mini-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.mini-card-1 {
  top: 20px;
  left: 0;
  animation: float 5s ease-in-out 0.4s infinite;
}
.mini-card-2 {
  bottom: 44px;
  left: 36px;
  animation: float 5s ease-in-out 0.8s infinite;
}
.mini-card-3 {
  right: 0;
  top: 112px;
  animation: float 5s ease-in-out 1.2s infinite;
}

.stats {
  padding: 22px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-grid article {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(13, 24, 64, 0.06);
}
.stats-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: -0.04em;
}
.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card,
.process-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: 0 14px 50px rgba(13, 24, 64, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.service-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 196, 0, 0.55);
}
.service-card.highlighted {
  background: linear-gradient(
    145deg,
    rgba(29, 52, 127, 0.96),
    rgba(11, 21, 56, 0.96)
  );
  color: white;
}
.service-card.highlighted h3,
.service-card.highlighted a {
  color: white;
}
.service-card.highlighted p {
  color: rgba(255, 255, 255, 0.75);
}
.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 196, 0, 0.22);
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.service-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.7;
}
.service-card a {
  color: var(--navy);
  font-weight: 900;
}

.solutions {
  background: linear-gradient(
    135deg,
    rgba(29, 52, 127, 0.06),
    rgba(255, 196, 0, 0.08)
  );
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}
.check-list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-2);
  font-weight: 900;
}
.dashboard {
  border-radius: 34px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  padding: 28px;
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.dashboard::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.28);
  filter: blur(10px);
}
.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 46px;
}
.dashboard-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.dash-line {
  height: 12px;
  width: 62%;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 15px;
}
.dash-line.wide {
  width: 86%;
  background: rgba(255, 196, 0, 0.65);
}
.dash-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 42px 0 24px;
}
.dash-modules div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.dash-modules strong {
  display: block;
  font-size: 1.8rem;
  color: var(--gold);
}
.dash-modules span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}
.security-pulse {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 2rem;
}

.contact {
  background: var(--navy-2);
  color: white;
}
.contact h2 {
  color: white;
}
.contact p {
  color: rgba(255, 255, 255, 0.72);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-box {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
}
.contact-box a {
  color: var(--gold);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.form-msg {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 0.92rem;
  animation: fadeIn 0.35s ease;
}
.form-msg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-msg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.15);
}
textarea {
  resize: vertical;
}

.footer {
  padding: 28px 0;
  background: #070d24;
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer a {
  color: var(--gold);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    inset: 84px 28px auto 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .nav-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu a {
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 72px;
  }
  .hero-visual {
    min-height: 480px;
  }
  .stats-grid,
  .cards-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 56px), 1140px);
  }
  .section {
    padding: 56px 0;
  }
  .stats-grid,
  .cards-grid,
  .process-grid,
  .dash-modules {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 380px;
  }
  .main-card {
    padding: 24px;
    max-width: 100%;
    width: min(390px, calc(100% - 16px));
  }
  .main-card img {
    width: 160px;
  }
  .mini-card {
    width: 122px;
    padding: 10px;
    gap: 2px;
    font-size: 0.82rem;
  }
  .mini-card-1 {
    left: 8px;
    top: 8px;
  }
  .mini-card-2 {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .mini-card-3 {
    right: 8px;
    top: 8px;
  }
  .page-glow {
    width: 180px;
    height: 180px;
    inset: -10% -5% auto auto;
  }
  .stats-grid article {
    padding: 18px;
  }
  .stats-grid strong {
    font-size: 1.5rem;
  }
  .service-card,
  .process-card {
    padding: 22px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .contact-form {
    padding: 20px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .brand-text {
    display: none;
  }
}

@media (min-width: 621px) and (max-width: 940px) {
  .container {
    width: min(calc(100% - 56px), 1140px);
  }
  .mini-card-1 {
    left: 12px;
    top: 16px;
  }
  .mini-card-2 {
    left: 24px;
    bottom: 36px;
  }
  .mini-card-3 {
    right: 12px;
    top: 100px;
  }
  .page-glow {
    width: 380px;
    height: 380px;
    inset: -20% -5% auto auto;
  }
}
