:root {
  --ink: #10243a;
  --muted: #5f7282;
  --paper: #f6fbff;
  --white: #ffffff;
  --line: #dbe9f2;
  --teal: #4aa6d6;
  --teal-dark: #297fb8;
  --navy: #071fae;
  --deep: #08126f;
  --coral: #e87b22;
  --amber: #f2cf3a;
  --blue: #1269d7;
  --shadow: 0 24px 70px rgba(7, 31, 174, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(242, 207, 58, 0.22), transparent 25rem),
    radial-gradient(circle at 86% 12%, rgba(74, 166, 214, 0.16), transparent 30rem),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 46%, #f2f8fd 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(220, 232, 232, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(7, 31, 174, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 285px;
  min-height: 74px;
}

.brand-logo {
  width: 100%;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #30454f;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  padding: 8px 0;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 760;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--deep));
}

.btn {
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn:hover,
.header-cta:hover,
.product-card a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  box-shadow: 0 16px 32px rgba(7, 31, 174, 0.22);
}

.btn-secondary {
  color: var(--deep);
  background: #fffdf0;
  border-color: rgba(242, 207, 58, 0.62);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

.section-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
  border-radius: 8px;
  border: 1px solid rgba(220, 232, 232, 0.95);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  min-height: 500px;
  max-height: 560px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
}

.hero-copy {
  align-self: center;
  max-width: 620px;
}

.eyebrow,
.form-kicker {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3.05rem;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.86rem;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  max-height: 330px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(7, 31, 174, 0.18);
}

.metric-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 158px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(7, 31, 174, 0.12);
  backdrop-filter: blur(14px);
}

.metric-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.metric-card strong {
  color: var(--deep);
  font-size: 1.25rem;
}

.metric-card-one {
  left: -18px;
  bottom: 54px;
}

.metric-card-two {
  right: 24px;
  top: 28px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: #4f636c;
  background: var(--white);
  font-weight: 800;
}

.split-section,
.platform-section,
.pricing-section {
  width: min(1180px, calc(100% - 32px));
  margin: 74px auto;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.feature-grid,
.product-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.price-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-card p,
.product-card p,
.price-card p,
.section-heading p,
.platform-copy p,
.workflow-step p,
.site-footer p,
.faq-answer {
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: #edf8ff;
  font-weight: 850;
}

.product-suite {
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(8, 18, 111, 0.96), rgba(41, 127, 184, 0.94)),
    var(--deep);
}

.product-suite .section-heading,
.product-suite .section-heading p {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.product-card {
  min-height: 280px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.product-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--deep);
  font-weight: 850;
  transition: transform 180ms ease;
}

.accent-teal {
  border-top: 6px solid var(--teal);
}

.accent-coral {
  border-top: 6px solid var(--coral);
}

.accent-blue {
  border-top: 6px solid var(--blue);
}

.platform-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 42px;
  align-items: center;
}

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

.check-list span {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.check-list span::before {
  position: absolute;
  left: 16px;
  content: "✓";
  color: var(--navy);
  font-weight: 900;
}

.workflow-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background: #f5faf9;
}

.workflow-step.active {
  color: var(--white);
  background: var(--deep);
}

.workflow-step.active p {
  color: rgba(255, 255, 255, 0.78);
}

.workflow-step span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  font-weight: 900;
}

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

.price-card {
  min-height: 260px;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  transform: translateY(-14px);
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.price {
  margin: 12px 0 22px;
  color: var(--deep);
  font-size: 1.75rem;
  font-weight: 900;
}

.faq-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: clamp(28px, 5vw, 58px);
}

.location-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 74px;
}

.address-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.address-panel {
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(255, 253, 240, 0.96), rgba(237, 248, 255, 0.96)),
    var(--white);
}

.address-panel h2 {
  font-size: 2.25rem;
  line-height: 1.08;
}

.address-intro {
  color: var(--muted);
  line-height: 1.65;
}

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

.address-list div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(219, 233, 242, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.address-list span {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-list strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}

.map-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #edf8ff;
}

.map-panel::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(1.08) contrast(1.02);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item strong {
  font-size: 1.2rem;
}

.faq-answer {
  display: none;
  padding: 0 16px 12px;
}

.faq-item[aria-expanded="true"] + .faq-answer {
  display: block;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfc;
}

label {
  display: grid;
  gap: 8px;
  color: #344b55;
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cddedf;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(74, 166, 214, 0.18);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 74px auto 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 270px;
  min-height: 76px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    width: 230px;
    min-height: 66px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-items: start;
    gap: 8px;
    padding: 8px 4px 4px;
  }

  .hero,
  .split-section,
  .platform-section,
  .faq-contact,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    max-height: none;
    gap: 18px;
    padding: 24px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .logo-strip,
  .product-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-panel,
  .split-section,
  .platform-section,
  .pricing-section,
  .logo-strip,
  .location-section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .map-panel,
  .map-panel iframe {
    min-height: 320px;
  }

  .hero {
    min-height: auto;
    gap: 14px;
    padding: 18px;
  }

  .brand {
    width: 190px;
    min-height: 56px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 2.1rem;
    line-height: 1.05;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin: 18px 0;
  }

  .hero-proof span {
    padding: 9px 10px;
  }

  .hero-visual img {
    aspect-ratio: 16 / 8;
    max-height: 190px;
  }

  .hero-proof,
  .feature-grid,
  .logo-strip,
  .product-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .metric-card {
    display: none;
  }

  .logo-strip span {
    min-height: 52px;
  }

  .hero-actions {
    display: grid;
  }

  .site-footer {
    display: grid;
  }
}
