
:root {
  --navy-950: #06182f;
  --navy-900: #0a2547;
  --navy-800: #0b3566;
  --blue-600: #1f7fe5;
  --blue-500: #2f8ff5;
  --blue-100: #eaf4ff;
  --ink: #182235;
  --muted: #5f6e82;
  --line: #e3e9f1;
  --surface: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(8, 33, 67, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(227, 233, 241, 0.95);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  font-size: 1.16rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), #54a8ff);
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(31, 127, 229, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  color: #334155;
}

.site-nav a:hover {
  color: var(--blue-600);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--blue-600);
  border-radius: 9px;
  color: var(--blue-600) !important;
}

.nav-cta:hover {
  background: var(--blue-600);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(52, 143, 239, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0d447e);
  color: var(--white);
  padding: 108px 0 104px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 850;
}

.eyebrow { color: #a9d7ff; }

.hero h1 {
  margin: 12px 0 22px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 790px;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.11rem;
  color: #d8e9fb;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-weight: 750;
  border: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 143, 245, 0.22);
}

.btn-primary:hover {
  background: #197fe7;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.68);
  color: var(--white);
  background: transparent;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.card-label {
  color: #a9d7ff;
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-card h2 {
  margin: 8px 0 18px;
  color: var(--white);
  font-size: 1.55rem;
}

.hero-card ul {
  padding-left: 18px;
  margin: 0;
  color: #e8f3ff;
}

.hero-card li { margin: 8px 0; }

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
}

.section-kicker {
  color: var(--blue-600);
  margin-bottom: 10px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  color: var(--navy-900);
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 78px;
  align-items: start;
}

.split p {
  color: #46566b;
  font-size: 1.02rem;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  min-height: 230px;
  box-shadow: 0 6px 20px rgba(10, 37, 71, 0.035);
  transition: .2s ease;
}

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

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-weight: 900;
  font-size: 1.05rem;
}

.service-card h3 {
  color: var(--navy-900);
  margin: 0 0 10px;
  line-height: 1.25;
  font-size: 1.08rem;
}

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

.dms-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.dms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(74,157,246,.18), transparent 25%);
}

.dms-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.dms-section h2 { color: var(--white); }
.dms-section .section-kicker { color: #a9d7ff; }
.dms-section p { color: #d5e6f8; }

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 750;
  color: #a9d7ff;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-list div {
  padding: 17px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: #edf6ff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.step {
  border-top: 3px solid var(--blue-600);
  padding-top: 18px;
}

.step span {
  color: var(--blue-600);
  font-weight: 850;
  font-size: .82rem;
  letter-spacing: .08em;
}

.step h3 {
  margin: 6px 0 8px;
  color: var(--navy-900);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.why-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px;
  font-weight: 700;
  color: #314157;
}

.contact-section {
  padding: 96px 0;
  background: #eef5fc;
}

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

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #dce5ef;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  font-weight: 750;
  margin-bottom: 16px;
  color: #2f3f55;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
  font: inherit;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(47,143,245,.17);
  border-color: var(--blue-500);
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(52, 143, 239, 0.24), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #0d447e);
  color: var(--white);
  padding: 86px 0;
}

.page-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  color: #d8e8fa;
  font-size: 1.08rem;
}

.inner-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(10, 37, 71, 0.05);
}

.content-card h3 {
  margin-top: 0;
  color: var(--navy-900);
}

.service-detail-grid,
.dms-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.service-detail,
.dms-capability {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}

.service-detail h3,
.dms-capability h3 {
  color: var(--navy-900);
  margin-top: 0;
}

.service-detail p,
.dms-capability p {
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-box {
  background: var(--white);
  border: 1px solid #dce5ef;
  border-radius: 13px;
  padding: 20px;
}

.notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue-600);
  background: var(--surface);
}

.legal {
  max-width: 860px;
}

.legal h2 {
  font-size: 1.45rem;
  margin-top: 34px;
}

.legal p,
.legal li {
  color: #46566b;
}

.site-footer {
  background: var(--navy-950);
  color: #d8e8fa;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-copy {
  color: #a9bfd7;
  max-width: 430px;
  margin-top: 10px;
  font-size: .94rem;
}

.footer-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: .93rem;
  color: #b9cade;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #9bb0c8;
  font-size: .86rem;
}

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

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

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

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
}

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

  .hero {
    padding: 78px 0 74px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .cards,
  .steps,
  .why-grid,
  .feature-list,
  .service-detail-grid,
  .dms-capabilities,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin-top: 14px;
  font-weight: 700;
  min-height: 24px;
}

.form-status.success {
  color: #087a45;
}

.form-status.error {
  color: #b42318;
}

.contact-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}
