:root {
  --navy: #1a2b4c;
  --navy-deep: #101c33;
  --navy-mid: #243860;
  --navy-soft: #2e4a73;
  --lime: #8cc63f;
  --lime-dark: #72a82e;
  --lime-soft: #eaf6d8;
  --white: #ffffff;
  --off: #f5f7fb;
  --mist: #e7ecf4;
  --text: #1a2433;
  --muted: #5c6778;
  --line: #d5dce8;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 44px rgba(26, 43, 76, 0.1);
  --shadow-lg: 0 28px 60px rgba(16, 28, 51, 0.18);
  --font-d: "Outfit", sans-serif;
  --font-b: "Inter", sans-serif;
  --container: 1180px;
  --header-h: 84px;
  --chrome: #172d54;
  --chrome-deep: #0e1c36;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lime-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--lime);
}

.eyebrow-light {
  color: var(--lime);
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--font-d);
  line-height: 1.15;
  color: var(--navy);
  font-weight: 700;
}

h1,
.h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.6rem);
  letter-spacing: -0.03em;
}

h2,
.h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  letter-spacing: -0.025em;
}

h3,
.h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-navy {
  background: var(--navy);
  color: #dce4f0;
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-off {
  background: var(--off);
}

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

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--navy-deep);
}

.btn-lime:hover {
  background: var(--lime-dark);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost-dark:hover {
  border-color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Topbar + header */
.topbar {
  background: var(--chrome-deep);
  color: #b7c3d8;
  font-size: 0.8rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--lime);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--chrome);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(10, 18, 36, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a:not(.btn) {
  color: #e8eef8;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 11px;
  border-radius: 8px;
}

.nav a:not(.btn):hover,
.nav a.active {
  color: var(--lime);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.2s;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(140, 198, 63, 0.16), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(36, 56, 96, 0.8), transparent 40%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1e355c 100%);
  color: #dce4f0;
  overflow: hidden;
  padding: 72px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero .lead {
  color: #c5d0e2;
}

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  padding: 28px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}

.trust-item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(26, 43, 76, 0.04);
  height: 100%;
  transition: 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cfe6a8;
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--lime-soft);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card a.more {
  display: inline-flex;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
}

.card a.more:hover {
  color: var(--lime-dark);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

/* Process */
.steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.step {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 16px;
  border: 1px solid var(--mist);
}

.step b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--lime-dark);
  margin-bottom: 8px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.84rem;
  color: var(--muted);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat strong {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lime);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #c5d0e2;
}

/* Platforms */
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: var(--off);
  border: 1px solid var(--mist);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
}

.chip-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #e8eef8;
}

/* Testimonials */
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--mist);
}

.quote p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 18px;
}

.quote footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-d);
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.quote small {
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(circle at 90% 20%, rgba(140, 198, 63, 0.2), transparent 32%),
    var(--navy-deep);
  color: #dce4f0;
}

.cta-band h2 {
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(135deg, rgba(16, 28, 51, 0.55), rgba(26, 43, 76, 0.72)),
    var(--navy);
  color: #dce4f0;
  padding: 64px 0 56px;
}

.page-hero h1 {
  color: #fff;
}

.crumb {
  font-size: 0.82rem;
  color: #9eb0c9;
  margin-bottom: 12px;
}

.crumb a:hover {
  color: var(--lime);
}

.legal-doc {
  max-width: 760px;
}

.legal-doc > * + * {
  margin-top: 22px;
}

.legal-doc h2 {
  margin-top: 40px;
  font-size: 1.35rem;
}

.legal-doc h3 {
  margin-top: 28px;
  font-size: 1.05rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
}

.legal-doc ul {
  list-style: disc;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}

.legal-doc a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--lime-dark);
}

/* Service detail */
.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--mist);
}

.feature-row h3 {
  grid-column: 2;
}

.num {
  font-family: var(--font-d);
  font-size: 1.6rem;
  color: var(--lime-dark);
}

/* Team */
.person {
  text-align: center;
}

.person .avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 12px;
  font-size: 1.4rem;
}

.person h3 {
  font-size: 1.05rem;
}

.person p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Values */
.value {
  padding: 8px 4px;
}

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  color: var(--muted);
  margin-top: 10px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.info-card {
  background: var(--navy);
  color: #dce4f0;
  border-radius: 22px;
  padding: 32px;
}

.info-card h2,
.info-card h3 {
  color: #fff;
}

.info-block {
  margin: 22px 0;
}

.info-block span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}

.form {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: #fff;
  color: var(--text);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(140, 198, 63, 0.45);
  border-color: var(--lime);
}

.form-note {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--lime-soft);
  color: #3d6418;
  font-weight: 600;
}

.form-note.show {
  display: block;
}

.map-placeholder {
  height: 220px;
  border-radius: 16px;
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(140, 198, 63, 0.2), transparent 40%),
    repeating-linear-gradient(90deg, #243860 0 1px, transparent 1px 28px),
    repeating-linear-gradient(#243860 0 1px, transparent 1px 28px),
    #1a2b4c;
  display: grid;
  place-items: center;
  color: #c5d0e2;
  font-size: 0.88rem;
}

/* Footer */
.footer {
  background: var(--chrome);
  color: #b7c3d8;
  padding: 56px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer h3 {
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin: 7px 0;
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--lime);
}

.footer .logo img {
  height: 42px;
  margin-bottom: 12px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* Mobile */
@media (max-width: 980px) {
  .grid-2,
  .contact-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .steps,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner > .btn {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    margin: 8px 4px 4px;
    width: fit-content;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--chrome);
    display: none;
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4,
  .steps,
  .stats,
  .form-row,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .topbar { display: none; }
  .hero { padding-top: 48px; }
  .section { padding: 64px 0; }
}

.soon-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(140, 198, 63, 0.2);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.soon-badge-dark {
  background: var(--lime-soft);
  color: #3d6418;
}

.card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.card-title h3 {
  margin-bottom: 0;
}

body[data-coming-soon] main > *:not(.coming-soon) {
  display: none !important;
}

.coming-soon {
  position: relative;
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 80% 10%, rgba(140, 198, 63, 0.16), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(36, 56, 96, 0.8), transparent 40%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1e355c 100%);
  color: #dce4f0;
  overflow: hidden;
}

.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.coming-soon h1 {
  color: #fff;
  margin-bottom: 16px;
}

.coming-soon .lead {
  margin-inline: auto;
  color: #c5d0e2;
}

.coming-soon .btn-row {
  justify-content: center;
}

/* Full-site maintenance mode (no header / footer) */
body.maintenance-mode {
  background: #182e55;
  min-height: 100vh;
}

.maintenance {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
  background: #182e55;
  color: #dce4f0;
  overflow: hidden;
}

.maintenance-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.maintenance-logo {
  height: 72px;
  width: auto;
  margin: 0 auto 36px;
}

.maintenance h1 {
  color: #fff;
  margin-bottom: 16px;
}

.maintenance .lead {
  margin-inline: auto;
  color: #c5d0e2;
}

.maintenance .btn-row {
  justify-content: center;
}

@media (max-width: 640px) {
  .maintenance-logo {
    height: 52px;
    margin-bottom: 28px;
  }
}
