:root {
  color-scheme: light;
  --navy: #061f46;
  --navy-2: #062b57;
  --blue: #155eef;
  --bg: #f8fafc;
  --surface: #ffffff;
  --line: #e4e7ec;
  --text: #101828;
  --muted: #667085;
  --green: #12b76a;
  --amber: #f79009;
  --red: #f04438;
  --shadow: 0 22px 52px rgba(16, 24, 40, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; display: block; }

.section-shell {
  width: min(1450px, calc(100% - 96px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  min-height: 78px;
  padding: 0 min(4.4vw, 58px);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 236, 0.64);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 39px;
}

.logo strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.logo small {
  display: block;
  margin-top: 3px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.link-button {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.primary-button,
.light-button,
.outline-button,
.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-button {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(6, 31, 70, 0.18);
}

.primary-button:hover,
.light-button:hover,
.outline-button:hover,
.video-button:hover {
  transform: translateY(-1px);
}

.large {
  min-width: 194px;
  min-height: 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(780px, 1.2fr);
  align-items: center;
  gap: 48px;
  padding: 66px 0 48px;
}

.hero-copy h1 {
  max-width: 600px;
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero-copy h1 strong {
  display: block;
  color: var(--blue);
}

.hero-copy p {
  max-width: 570px;
  margin: 0 0 28px;
  color: #344054;
  font-size: 18px;
  line-height: 1.62;
}

.quick-list {
  display: grid;
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
  list-style: none;
}

.quick-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.quick-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1.6px solid var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.video-button {
  gap: 8px;
  color: var(--navy);
  padding-inline: 0;
}

.video-button svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-note svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.product-preview {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 28px 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #031d3c, #062b57 72%, #031a35);
}

.preview-brand {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: start;
  margin-bottom: 14px;
}

.preview-brand span {
  grid-row: span 2;
  font-size: 34px;
}

.preview-brand strong {
  font-size: 13px;
  line-height: 1.02;
}

.preview-brand small {
  color: #28d8a8;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
}

.preview-sidebar > span {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 850;
}

.preview-sidebar > span.active {
  background: rgba(255, 255, 255, 0.13);
}

.preview-account {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-account strong,
.preview-account small {
  display: block;
  font-size: 10px;
}

.preview-account small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.preview-content {
  min-width: 0;
  padding: 25px 24px;
}

.preview-header,
.table-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-header strong {
  color: var(--navy);
  font-size: 17px;
}

.preview-header small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.preview-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-actions small {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: #067647;
  background: #ecfdf3;
  border: 1px solid #abefc6;
  border-radius: 5px;
}

.preview-actions button {
  min-height: 40px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  border-radius: 5px;
  font-weight: 900;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 25px 0 24px;
}

.preview-metrics article {
  min-height: 126px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.preview-metrics .m-ok { background: #f6fef9; border-color: #d1fadf; }
.preview-metrics .m-warn { background: #fffbf2; border-color: #fedf89; }
.preview-metrics .m-bad { background: #fff5f4; border-color: #fecdca; }
.preview-metrics .m-mail { background: #f5f9ff; border-color: #c7d7fe; }

.preview-metrics span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 9px;
  border-radius: 50%;
  font-weight: 900;
}

.m-ok span { color: var(--green); border: 1px solid var(--green); }
.m-warn span { color: var(--amber); border: 1px solid var(--amber); }
.m-bad span { color: var(--red); border: 1px solid var(--red); }
.m-mail span { color: var(--blue); border: 1px solid var(--blue); }

.preview-metrics b {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.preview-metrics strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 25px;
}

.preview-metrics small {
  color: var(--muted);
  font-size: 11px;
}

.preview-table {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.table-title {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.table-title strong {
  color: var(--navy);
  font-size: 14px;
}

.table-title em {
  margin-right: auto;
  padding: 4px 8px;
  color: #b54708;
  background: #fffaeb;
  border: 1px solid #fedf89;
  border-radius: 5px;
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.table-title a {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.table-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.8fr 1fr 0.55fr 1.45fr;
  gap: 12px;
  padding: 13px 16px;
  color: #344054;
  border-bottom: 1px solid #eef2f6;
  font-size: 11px;
}

.table-row:last-child { border-bottom: 0; }
.table-row.head { color: var(--muted); font-weight: 900; }

.table-row mark {
  color: var(--navy);
  background: #fef0c7;
  border-radius: 4px;
}

.preview-table.compact .table-row {
  grid-template-columns: 0.9fr 1.1fr 0.7fr 0.9fr 0.35fr;
}

.trust-strip {
  padding: 26px 0 52px;
  text-align: center;
}

.trust-strip p {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
}

.trust-strip div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  color: #667085;
  text-transform: uppercase;
}

.trust-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
}

.trust-strip b {
  margin-right: 10px;
  color: #5d6675;
  font-size: 38px;
  font-weight: 400;
  vertical-align: middle;
}

.trust-strip small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.feature-section {
  padding: 16px 0 34px;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.18;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-grid article {
  min-height: 210px;
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--blue);
  font-size: 40px;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 16px;
}

.feature-grid p {
  margin: 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.55;
}

.workflow-section {
  padding: 54px 0 58px;
  background: #ffffff;
  border-block: 1px solid var(--line);
  text-align: center;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 46px;
  margin-top: 34px;
}

.timeline article {
  position: relative;
  display: grid;
  justify-items: center;
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -41px;
  width: 34px;
  border-top: 2px dashed #c8d1df;
}

.timeline article:last-child::after { display: none; }

.timeline span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  font-size: 48px;
}

.timeline strong {
  max-width: 155px;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.timeline b {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  margin-right: 4px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
}

.testimonials-section {
  padding: 48px 0 30px;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 28px auto 18px;
  width: min(1260px, 100%);
}

.testimonial-grid article {
  min-height: 220px;
  padding: 28px 32px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.testimonial-grid article > span {
  color: #667085;
  font-size: 30px;
}

.testimonial-grid p {
  min-height: 72px;
  margin: 6px 0 24px;
  color: #344054;
  line-height: 1.65;
}

.testimonial-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-grid img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.testimonial-grid strong {
  color: var(--navy);
}

.testimonial-grid small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
}

.outline-button {
  min-width: 240px;
  color: var(--navy);
  background: #ffffff;
  border-color: var(--navy);
}

.final-cta {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 46px auto 44px;
  padding: 34px 46px;
  color: #ffffff;
  background: linear-gradient(100deg, #062b57, #031d3c);
  border-radius: 12px;
}

.final-cta > span {
  color: #ffffff;
  font-size: 54px;
}

.final-cta h2 {
  color: #ffffff;
  font-size: 30px;
}

.final-cta p {
  max-width: 730px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.light-button {
  min-width: 270px;
  color: var(--navy);
  background: #ffffff;
}

.cta-actions small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) 0.7fr 0.8fr 1fr minmax(300px, 1.3fr);
  gap: 44px;
  padding: 24px min(4.4vw, 58px) 26px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 11px;
}

.site-footer strong,
.newsletter strong {
  color: var(--navy);
  font-size: 14px;
}

.site-footer a {
  color: #344054;
  font-size: 13px;
}

.newsletter {
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 18px;
}

.newsletter input {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid #cdd5df;
  border-radius: 6px;
}

.newsletter button {
  min-height: 46px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
}

.phone-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue) !important;
  font-weight: 900;
}

.made-in {
  grid-column: 1 / -1;
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
}

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

  .top-nav {
    display: none;
  }

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

  .product-preview {
    max-width: 980px;
    margin: 0 auto;
  }

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

  .timeline article::after {
    display: none;
  }

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

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 32px, 1450px);
  }

  .site-header {
    min-height: 70px;
    padding: 0 16px;
  }

  .logo strong {
    font-size: 18px;
  }

  .nav-actions .link-button {
    display: none;
  }

  .nav-actions .primary-button {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding: 38px 0;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

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

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .video-button,
  .light-button,
  .outline-button {
    width: 100%;
  }

  .product-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-content {
    padding: 18px;
  }

  .preview-header,
  .preview-actions,
  .table-title {
    align-items: flex-start;
    display: grid;
  }

  .preview-metrics,
  .feature-grid,
  .timeline,
  .trust-strip div,
  .testimonial-grid,
  .site-footer,
  .newsletter form,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .table-row,
  .preview-table.compact .table-row {
    grid-template-columns: 1fr;
  }

  .trust-strip b {
    display: block;
    margin: 0 0 6px;
  }

  h2,
  .final-cta h2 {
    font-size: 25px;
  }

  .feature-grid article,
  .testimonial-grid article {
    min-height: auto;
  }

  .workflow-section {
    padding: 42px 0;
  }

  .timeline {
    gap: 24px;
  }

  .final-cta {
    text-align: center;
    padding: 28px 22px;
  }

  .final-cta > span {
    justify-self: center;
  }

  .made-in {
    justify-self: start;
  }
}
