:root {
  --navy: #0b1f33;
  --navy-2: #102c46;
  --blue: #0b6fb8;
  --blue-dark: #07558d;
  --orange: #f28a2e;
  --orange-dark: #d96f16;
  --white: #ffffff;
  --off-white: #f5f8fb;
  --light-blue: #eaf4fb;
  --text: #24374a;
  --muted: #66788a;
  --border: #d9e3ec;
  --shadow: 0 18px 50px rgba(11, 31, 51, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.narrow {
  width: min(820px, 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 227, 236, 0.85);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img,
.footer-logo {
  width: 220px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 20px;
  background: var(--white);
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242, 138, 46, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
}

.button-full {
  width: 100%;
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  font-weight: 800;
  color: var(--blue);
}

.hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 138, 46, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fbfd 0%, #eef6fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  margin: 0 0 24px;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.hero-lead {
  font-size: 1.18rem;
  color: #486176;
  max-width: 720px;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  font-weight: 700;
}

.hero-points span {
  color: var(--orange);
  margin-right: 8px;
}

.hero-price {
  border-left: 4px solid var(--orange);
  padding-left: 18px;
  margin: 26px 0;
}

.price-label {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.hero-price strong {
  display: block;
  font-size: 2rem;
  color: var(--navy);
}

.hero-price small {
  display: block;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.text-link {
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
}

.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
}

.report-preview {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.report-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
}

.report-badge {
  background: var(--orange);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.report-body {
  padding: 34px;
}

.report-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
}

.report-body h2 {
  font-size: 2rem;
}

.report-line {
  width: 70px;
  height: 5px;
  background: var(--orange);
  border-radius: 999px;
  margin: 20px 0 28px;
}

.report-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.report-row strong {
  color: var(--blue);
}

.report-note {
  margin-top: 24px;
  padding: 18px;
  border-radius: 12px;
  background: var(--light-blue);
  font-weight: 700;
}

.trust-strip {
  display: flex;
  flex-direction: column;
  width: 84%;
  margin: -10px auto 0;
  padding: 18px 24px;
  position: relative;
  background: var(--blue);
  color: var(--white);
  border-radius: 0 0 14px 14px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(11, 111, 184, 0.2);
}

.problem-section,
.included-section,
.who-section,
.process-section,
.faq-section,
.signup-section {
  padding: 90px 0;
}

.problem-section p {
  font-size: 1.1rem;
  color: var(--muted);
}

.problem-section .emphasis {
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 800;
}

.included-section,
.process-section,
.signup-section {
  background: var(--off-white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.05);
}

.feature-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.number {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card ul,
.pricing-card ul,
.check-list {
  padding-left: 20px;
  margin-bottom: 0;
}

.feature-card li,
.pricing-card li,
.check-list li {
  margin-bottom: 8px;
}

.outcomes-section {
  padding: 90px 0;
  background: var(--navy);
}

.light h2,
.light p {
  color: var(--white);
}

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

.outcomes-grid article {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
}

.outcomes-grid span {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  margin-bottom: 16px;
}

.outcomes-grid h3,
.outcomes-grid p {
  color: var(--white);
}

.outcomes-grid p {
  color: #cdd9e4;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 54px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  margin-right: 10px;
}

.value-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--light-blue);
  border-left: 5px solid var(--blue);
}

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

.process-grid article {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.pricing-section {
  padding: 94px 0;
  background: linear-gradient(135deg, #eef6fb 0%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.founding-counter {
  margin-top: 30px;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 4px 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.founding-counter strong {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
}

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

.pricing-card {
  position: relative;
  padding: 42px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 2px solid var(--orange);
}

.price-tag {
  position: absolute;
  top: -14px;
  left: 28px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.regular-price {
  text-decoration: line-through;
  color: var(--muted);
  margin-bottom: 4px;
}

.main-price {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
  color: var(--navy);
}

.main-price span {
  font-size: 2rem;
  vertical-align: top;
}

.main-price small {
  font-size: 1rem;
  color: var(--muted);
}

.one-time,
.pricing-note {
  color: var(--muted);
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  background: var(--white);
}

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

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.contact-box {
  margin-top: 28px;
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
}

.contact-box a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.signup-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.94rem;
}

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

input:focus,
textarea:focus {
  outline: 3px solid rgba(11, 111, 184, 0.15);
  border-color: var(--blue);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  color: var(--muted);
}

.checkbox-label input {
  width: auto;
  margin-top: 5px;
}

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

.final-cta {
  padding: 80px 0;
  background: var(--blue);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.site-footer {
  padding: 60px 0 28px;
  background: #071523;
  color: #c7d2dc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 40px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #91a4b5;
}

@media (max-width: 960px) {
  .desktop-nav,
  .nav-wrap > .button-small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .pricing-grid,
  .who-grid,
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 48px;
  }

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

  .hero {
    padding-top: 60px;
  }
}

.freightvalidate-banner {
  padding: 72px 0;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(242, 138, 46, 0.18),
      transparent 32%
    ),
    linear-gradient(135deg, #071523 0%, #102c46 100%);
  color: #ffffff;
}

.freightvalidate-banner__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: center;
  gap: 54px;
}

.freightvalidate-banner__eyebrow {
  margin: 0 0 12px;
  color: #f28a2e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.freightvalidate-banner h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.freightvalidate-banner__content > p {
  max-width: 700px;
  color: #d2dee8;
  font-size: 1.05rem;
}

.freightvalidate-banner__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.freightvalidate-banner__features li {
  position: relative;
  padding-left: 25px;
  color: #ffffff;
  font-weight: 600;
}

.freightvalidate-banner__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f28a2e;
  font-weight: 800;
}

.freightvalidate-banner__offer {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.freightvalidate-banner__offer > p {
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 800;
}

.freightvalidate-banner__price {
  margin-bottom: 22px;
}

.freightvalidate-banner__price span,
.freightvalidate-banner__price small {
  display: block;
  color: #c7d5e0;
}

.freightvalidate-banner__price strong {
  display: block;
  margin: 4px 0;
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
}

.freightvalidate-banner__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
  background: #f28a2e;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.freightvalidate-banner__button:hover {
  background: #d96f16;
  transform: translateY(-1px);
}

.freightvalidate-banner__disclaimer {
  display: block;
  margin-top: 15px;
  color: #aebfcd;
}

@media (max-width: 850px) {
  .freightvalidate-banner__grid {
    grid-template-columns: 1fr;
  }

  .freightvalidate-banner__features {
    grid-template-columns: 1fr;
  }
}


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

  .brand img,
  .footer-logo {
    width: 185px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .outcomes-grid,
  .process-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
    display: block;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .report-body {
    padding: 26px;
  }

  .problem-section,
  .included-section,
  .who-section,
  .process-section,
  .faq-section,
  .signup-section,
  .pricing-section,
  .outcomes-section {
    padding: 68px 0;
  }

  .pricing-card,
  .signup-form {
    padding: 26px 20px;
  }

  .main-price {
    font-size: 4rem;
  }
}
