:root {
      --navy: #001f54;
      --red: #D52941;
      --gold: #f8c630;
      --ink: #001f54;
      --muted: #26364f;
      --line: #d6dce5;
      --soft: #f4f5f7;
      --white: #ffffff;
      --serif: "Calisto MT", Calisto, Georgia, "Times New Roman", serif;
      --sans: Coolvetica, "Helvetica Neue", Arial, sans-serif;
      --content: 1240px;
    }

    * { box-sizing: border-box; }
    body {
      color: var(--ink);
      background: var(--white);
      font-family: var(--sans);
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }

    .container {
      width: min(calc(100% - 48px), var(--content));
      margin: 0 auto;
    }

    .section { padding: 84px 0; }
    .section--navy { background: var(--navy); color: var(--white); }
    .section--tight { padding: 44px 0; }

.section-label {
  margin: 0 0 18px;
  padding-bottom: 8px;

  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-label--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label-dark {
  color: var(--ink);
}

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
    .headline-xl {
      margin-bottom: 20px;
      font-size: 3.5rem;
      line-height: .98;
      letter-spacing: -.035em;
    }
    .headline-lg {
      margin-bottom: 18px;
      font-size: 3rem;
      line-height: 1.03;
      letter-spacing: -.03em;
    }
    .headline-md {
      margin-bottom: 18px;
      font-size: clamp(2.15rem, 3.4vw, 3.35rem);
      line-height: 1.04;
      letter-spacing: -.025em;
    }
    .accent { color: var(--red); }
    .body-lg {
      color: var(--muted);
      font-size: 1.2rem;
      line-height: 1.55;
    }
    .section--navy .body-lg { color: rgba(255,255,255,.8); }

    .btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
    .btn {
      min-height: 52px;
      padding: 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      border: 1px solid transparent;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: .01em;
      cursor: pointer;
    }
    .btn--gold { background: var(--gold); color: var(--ink); }
    .btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
    .section--navy .btn--outline { color: var(--white); border-color: rgba(255,255,255,.8); }

    .hero {
      min-height: 680px;
      display: flex;
      align-items: center;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      align-items: center;
      gap: 52px;
    }
    .hero-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-right: 48px;
      border-right: 1px solid var(--line);
    }
    .hero-logo { width: min(100%, 600px); }
    .hero-copy { max-width: 630px; }

    .problem-grid {
      display: grid;
      grid-template-columns: 1.45fr repeat(4, 1fr);
      align-items: stretch;
    }
    .problem-intro { padding-right: 38px; }
    .problem-intro h2 {
      max-width: 360px;
      margin-bottom: 0;
      font-size: clamp(2rem, 3vw, 3.15rem);
      line-height: 1.08;
    }
    .stat {
      padding: 0 28px;
      text-align: center;
      border-left: 1px solid rgba(255,255,255,.28);
    }
    .stat-icon { width: 33px; height: 33px; margin: 0 auto 14px; color: #fff; }
    .stat-value { color: var(--red); font-size: clamp(2.2rem, 3.5vw, 3.6rem); font-weight: 800; line-height: 1; }
    .stat strong { display: block; margin-top: 10px; line-height: 1.22; }
    .stat p { margin: 10px auto 0; max-width: 170px; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.35; }

.stat-source {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a.stat-source:hover,
a.stat-source:focus {
  color: #fff;
}

    .solution-head { max-width: 990px; margin: 0 auto 42px; text-align: center; }
    .solution-head p { max-width: 820px; margin: 0 auto; }
    .solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .solution-card {
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }
    .solution-top { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; }
    .icon-circle {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      color: var(--red);
    }
    .icon-circle svg { width: 42px; height: 42px; }
    .solution-number { color: var(--red); font-weight: 800; font-size: 1.2rem; }
    .chip {
      display: inline-flex; align-items: center; gap: 8px;
      margin-left: 12px;
      color: var(--ink); font-size: .75rem; font-weight: 700;
    }
    .solution-card h3 { margin: 14px 0 10px; font-size: 1.8rem; }
    .solution-card p { margin: 0; color: var(--muted); line-height: 1.52; }
    .solution-close { margin: 30px auto 0; text-align: center; color: var(--ink); line-height: 1.5; }
    .solution-close strong { display: block; }

    .demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.demo-copy {
  margin: 0;
  padding-left: 48px;
}

.demo-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 26px;
}

.demo-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 13px 0;
  font-size: 1.1rem;
}

.check {
  width: 18px;
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
}

.demo-note {
  margin-top: 15px;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
}

.demo-shot {
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.demo-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

    .features-head { text-align: center; margin-bottom: 42px; }
    .features-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
    .feature { padding: 0 25px; text-align: center; }
    .feature + .feature { border-left: 1px solid var(--line); }
    .feature .icon-circle { width: 44px; height: 44px; margin: 0 auto 17px; }
    .feature .icon-circle svg { width: 34px; height: 34px; }
    .feature h3 { margin: 0 0 10px; font-family: var(--sans); font-size: 1rem; font-weight: 800; }
    .feature p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.48; }

    .faq-wrap { max-width: 1040px; margin: 0 auto; }
    .faq-list { margin-top: 34px; }
    .faq-item { display: grid; grid-template-columns: 26px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
    .faq-item:last-child { border-bottom: 0; }
    .faq-check { width: 18px; margin-top: 2px; color: var(--red); font-size: 1rem; font-weight: 900; }
    .faq-item h3 { margin: 0 0 5px; font-family: var(--sans); font-size: 1.08rem; font-weight: 800; }
    .faq-item p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.45; }

 .cta {
  padding: 72px 0 28px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 58px;
  align-items: stretch;
}

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 54px 4px 0;
  border-right: 1px solid var(--ink);
}

.cta-left .headline-md {
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 28px 0 30px;
  display: grid;
  gap: 18px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.benefits .faq-check {
  flex: 0 0 auto;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 54px;
  margin-top: 40px;
}

.cta-logo {
  width: 190px;
  margin: 0;
}

.cta-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-form-heading {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-style: italic;
  font-weight: 400;
}

.cta-form-panel {
  padding: 26px 46px 36px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: .92rem;
}

input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: var(--ink);
}

input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

textarea {
  width: 100%;
  min-height: 110px;
  padding: 14px 16px;
  border: 0;
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}

textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Honeypot field: visually hidden but present in the DOM, so bots that
   auto-fill every input trip it while real visitors never see it. */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-status {
  margin-top: 14px;
  font-size: .9rem;
  min-height: 1.2em;
}

.form-status--success {
  color: #8fe3a5;
}

.form-status--error {
  color: #ff9b8e;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  border: 0;
  font-size: 1.35rem;
}

footer {
  margin-top: 46px;
  padding: 24px 0 6px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: #53617b;
  font-size: .82rem;
}

.footer-links {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
    @media (max-width: 980px) {
      .hero { min-height: auto; padding: 72px 0; }
      .hero-grid, .demo-grid, .cta-grid { grid-template-columns: 1fr; }
      .hero-logo-wrap { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 40px; }
      .hero-copy { max-width: 720px; }
      .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
      .problem-intro { grid-column: 1 / -1; padding: 0 0 20px; }
      .stat:nth-child(2), .stat:nth-child(4) { border-left: 0; }
      .solution-grid { grid-template-columns: 1fr; }
      .demo-shot { width: min(100%, 760px); margin: 0 auto; }
      .features-grid { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
      .feature:nth-child(4) { border-left: 0; }
      .cta-left { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 50px; }
      .cta-logo { width: 340px; }
    }

    @media (max-width: 640px) {
      .container { width: min(calc(100% - 28px), var(--content)); }
      .section { padding: 64px 0; }
      .hero-grid { gap: 34px; }
      .headline-xl { font-size: 2.7rem; }
      .headline-lg { font-size: 2.35rem; }
      .headline-md { font-size: 2.15rem; }
      .btn-row { align-items: stretch; }
      .btn { width: 100%; }
      .problem-grid { grid-template-columns: 1fr; }
      .stat { padding: 24px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
      .features-grid { grid-template-columns: 1fr; }
      .feature { padding: 24px 0; }
      .feature + .feature { border-left: 0; border-top: 1px solid var(--line); }
      .cta-logo { width: min(100%, 330px); }
      .cta-form-panel { padding: 34px 22px; }
      .form-grid { grid-template-columns: 1fr; }
      .field--full { grid-column: auto; }
      .footer-row { flex-direction: column; align-items: flex-start; }
      .footer-links { gap: 16px 24px; }
    }

/* =========================================================
   LEGAL PAGES
   Privacy Policy / Terms of Service
   ========================================================= */

.legal-page {
  min-height: 100vh;
  background: var(--white);
  color: var(--ink);
}

.legal-header {
  background: var(--navy);
  color: var(--white);
}

.legal-header__inner {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 54px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 72px;
  align-items: center;
}

.legal-header__label {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.legal-header h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.4vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.035em;
}

.legal-header__statement {
  margin: 0;
  padding: 8px 0 8px 44px;
  border-left: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.5;
}

.legal-content {
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 46px 0 72px;
}

.legal-updated {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .9rem;
}

.legal-section {
  margin: 0 0 34px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  line-height: 1.1;
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.legal-section li {
  position: relative;
  margin: 7px 0;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.5;
}

.legal-section li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 900;
}

.legal-section a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.legal-section a:hover,
.legal-section a:focus {
  color: var(--red);
}

.legal-footer {
  margin: 0;
  padding: 0;
  border-top: 0;
  background: var(--navy);
  color: var(--white);
}

.legal-footer .footer-row {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 24px 0;
  color: rgba(255,255,255,.84);
}

.legal-footer .footer-links a {
  color: rgba(255,255,255,.84);
}

.legal-footer .footer-links a:hover,
.legal-footer .footer-links a:focus,
.legal-footer .footer-links a[aria-current="page"] {
  color: var(--red);
}

@media (max-width: 980px) {
  .legal-header__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .legal-header__statement {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.45);
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .legal-header__inner,
  .legal-content,
  .legal-footer .footer-row {
    width: min(calc(100% - 28px), var(--content));
  }

  .legal-header__inner {
    padding: 38px 0 42px;
  }

  .legal-header h1 {
    font-size: 3rem;
  }

  .legal-content {
    padding: 34px 0 54px;
  }

  .legal-section {
    margin-bottom: 28px;
  }

  .legal-footer .footer-row {
    align-items: flex-start;
  }
}
