/*
  COLOUR TOKENS — Lumpy Postman Brand
  Navy        #1f1e52  — primary dark
  Postal Red  #e1251b  — accent red
  Section BGs: white #ffffff, light blue-grey #e8eff9, dark navy #1E1B4B
*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1f1e52;
  --navy-dark: #1E1B4B;
  --navy-card: #2a2760;
  --red: #e1251b;
  --red-hover: #b81d15;
  --blue-grey: #e8eff9;
  --white: #ffffff;
  --charcoal: #1f1e52;
  --grey: #6B7280;
  --border: #dde0e8;
  --paper: #e8eff9;
  --paper-dark: #d7dbea;
  --navy-mid: #1E1B4B;
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

@media screen and (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }
}
/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-badge {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.nav-logo .top {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-logo .bot {
  font-size: 9px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.75;
}

.nav-links a:hover {
  opacity: 1;
}

.btn-nav {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-nav:hover {
  background: var(--red-hover);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 20px 24px;
  gap: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-110%);
  transition: transform 0.25s ease;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.mobile-menu .mobile-menu-cta {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
}

/* FLOATING CONTACT BUTTONS */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-call {
  background: var(--red);
}

.float-email {
  background: var(--navy);
}

.float-chat {
  background: #4a6fa5;
}

.float-btn .float-label {
  position: absolute;
  right: 64px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}

.float-btn:hover .float-label {
  opacity: 1;
}


/* ── SHARED ── */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--blue-grey);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── HERO ── */
.hero-section {
  background: var(--navy-dark);
}

.hero {
  padding: 112px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--red);
}

.hero p.sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-primary:hover {
  background: var(--red-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.18s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.hero-footnote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

/* ── BRAND BANNER ── */
.brand-banner {
  background: var(--white);
  padding: 36px 48px;
  text-align: center;
}

.brand-banner-logo {
  max-width: 720px;
  width: 100%;
  height: auto;
}

/* ── HERO FORM ── */
.hero-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(27, 42, 74, 0.08);
}

.hero-form-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-form-box p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-field {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--blue-grey);
  font-size: 15px;
  color: var(--navy);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.18s;
}

.form-field:focus {
  border-color: var(--navy);
  background: var(--white);
}

.form-field::placeholder {
  color: #8892a4;
}

.btn-form {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-form:hover {
  background: var(--red-hover);
}

.form-fine {
  font-size: 12px;
  color: var(--grey);
  text-align: center;
  margin-top: 12px;
}

/* ── PROBLEM ── */
.problem {
  background: var(--white);
  padding: 112px 48px;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.problem h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.problem p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 16px;
}

.problem p.bold {
  font-weight: 700;
  color: var(--navy);
}

.channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ch-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--paper);
  border-radius: 10px;
  border: 1.5px solid transparent;
}

.ch-item.delivered {
  border-color: var(--red);
  background: rgba(200, 57, 43, 0.04);
}

.ch-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.ch-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--grey);
}

.ch-icon.delivered-icon {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
}

.ch-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
}

.tag-grey {
  background: var(--paper-dark);
  color: var(--grey);
}

.tag-green {
  background: var(--red);
  color: var(--white);
}

/* ── WHAT WE DO ── */
.what {
  background: var(--paper);
  padding: 112px 48px;
  text-align: center;
}

.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.what h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.what .sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 56px;
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.what-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
}

.num-badge {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.what-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.what-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--paper);
  padding: 112px 48px;
  text-align: center;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 52px;
}

.steps5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
}

.step5 {
  position: relative;
  padding: 0 16px;
}

.step5-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--paper);
}

.step5-circle.active {
  background: var(--red);
}

.step5::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.step5:first-child::before {
  display: none;
}

.step5 h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.step5 p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
}

/* ── BUILT FOR RESULTS ── */
.results {
  background: var(--navy-mid);
  padding: 112px 48px;
  text-align: center;
}

.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.results h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 52px;
}

.results h2 span {
  color: var(--red);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 44px;
  text-align: left;
}

.result-card {
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.result-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.result-icon {
  font-size: 30px;
  margin-bottom: 18px;
}

.result-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ── BRAND CTA ── */
.brand-cta {
  background: var(--red);
  padding: 112px 48px;
}

.brand-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.brand-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 14px;
}

.brand-cta h2 {
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.scale-badge-svg {
  width: 220px;
  height: auto;
  display: block;
  margin-top: 8px;
}

.form-field-red {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  color: var(--white);
  font-family: var(--font);
  outline: none;
}

.form-field-red::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.btn-form-navy {
  width: 100%;
  padding: 16px;
  margin-top: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-form-navy:hover {
  background: #111830;
}

.brand-cta-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-top: 16px;
}

/* ── WHO IT'S FOR ── */
.who {
  background: var(--white);
  padding: 112px 48px;
}

.who-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.who h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.who .sub {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-card {
  border-radius: 12px;
  padding: 28px;
  border: 1.5px solid var(--border);
}

.fit-card.good {
  border-color: var(--red);
}

.fit-card.bad {
  border-color: #1f1e52;
}

.fit-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.fit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.fit-icon.good {
  background: var(--red);
  color: var(--white);
}

.fit-icon.bad {
  background: var(--navy);
  color: var(--white);
}

.fit-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.4;
}

.fit-list li .icon-good {
  color: var(--red);
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.fit-list li .icon-bad {
  color: #e1251b;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── REPORTING ── */
.reporting {
  background: var(--paper);
  padding: 112px 48px;
}

.reporting-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.reporting h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.reporting p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 14px;
}

.reporting p.bold {
  font-weight: 700;
  color: var(--navy);
}

.metrics-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
  margin-top: 28px;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.m-tag {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  color: var(--charcoal);
  background: var(--white);
}

.report-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
}

.rc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.rc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.rc-title h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.live-badge {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.rc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.stat-box {
  background: var(--paper);
  border-radius: 10px;
  padding: 16px;
}

.stat-box .label {
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 4px;
}

.stat-box .val {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.stat-box .val.red {
  color: var(--red);
}

.pipeline-box {
  background: var(--paper);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.pipeline-box .label {
  font-size: 11px;
  color: var(--grey);
  margin-bottom: 4px;
}

.pipeline-box .val {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.sm-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.sm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sm-tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--grey);
}

/* ── PRICING ── */
.pricing {
  background: var(--white);
  padding: 112px 48px;
  text-align: center;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.pricing .sub {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 52px;
}

.monthly-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  text-align: left;
}

.monthly-row .left h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.monthly-row .right {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  max-width: 300px;
  text-align: right;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  position: relative;
}

.price-card.pop {
  border-color: var(--red);
}

.pop-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.price-tier {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.price-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-amt {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 2px;
}

.price-per {
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.price-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 24px;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
}

.price-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.price-btn.fill {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.price-btn.fill:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

/* ── PILOT ── */
.pilot {
  background: var(--navy-mid);
  padding: 112px 48px;
}

.pilot-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pilot-eyebrow {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.pilot h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pilot .sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.pilot-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.pilot-left-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.pilot-price {
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.pilot-price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
}

.pilot-blurb {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 28px;
}

.btn-pilot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-bottom: 20px;
}

.btn-pilot:hover {
  background: var(--red-hover);
}

.pilot-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.pilot-right-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.pilot-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pilot-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.pilot-checklist li:first-child {
  padding-top: 0;
}

.pilot-check {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
}

/* ── CTA ── */
.cta {
  background: var(--paper);
  padding: 112px 48px;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 54px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta .sub {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* ── KNOW ── */
.know {
  background: var(--paper);
  padding: 0 48px 96px;
}

.know-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy-mid);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
}

.know-eyebrow {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.know h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.know p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.know p small {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.btn-know {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.btn-know:hover {
  background: var(--red-hover);
}

/* ── FAQ ── */
.faq {
  background: var(--paper);
  padding: 0 48px 96px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-eyebrow {
  text-align: center;
  margin-bottom: 10px;
}

.faq h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
}

.faq-q span {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--grey);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 56px 48px 32px;
}

footer .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand-badge {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.footer-brand {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.footer-brand span {
  color: var(--red);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-cta-btn {
  display: inline-flex;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

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

.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-mascot {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .section-wrap,
  .problem,
  .what,
  .how,
  .results,
  .who,
  .reporting,
  .pricing,
  .pilot,
  .cta,
  .know,
  .faq,
  .brand-cta {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero {
    padding: 32px 0 48px !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  #roi-calculator {
    padding: 56px 24px !important;
  }

  .hero h1 {
    font-size: 36px !important;
    letter-spacing: -0.5px !important;
  }

  .problem-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .problem h2 {
    font-size: 30px !important;
  }

  .what h2,
  .how h2,
  .results h2,
  .who h2,
  .pricing h2,
  .know h2,
  .faq h2 {
    font-size: 32px !important;
  }

  .what-cards {
    grid-template-columns: 1fr !important;
  }

  .steps5 {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .step5::before {
    display: none !important;
  }

  .results-grid {
    grid-template-columns: 1fr !important;
  }

  .result-card:nth-child(odd) {
    border-right: none !important;
  }

  .fit-cards {
    grid-template-columns: 1fr !important;
  }

  .reporting-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .reporting h2 {
    font-size: 28px !important;
  }

  .rc-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  .monthly-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .monthly-row .right {
    text-align: left !important;
    max-width: 100% !important;
  }

  .price-cards {
    grid-template-columns: 1fr !important;
  }

  .pilot-box {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 28px !important;
  }

  .pilot h2 {
    font-size: 30px !important;
  }

  .pilot-price {
    font-size: 48px !important;
  }

  .brand-cta-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center !important;
  }

  .brand-cta h2 {
    font-size: 34px !important;
  }

  .know-inner {
    padding: 40px 24px !important;
  }

  .know h2 {
    font-size: 32px !important;
  }

  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 28px !important;
  }

  .hero-btns {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-btns button,
  .hero-btns .btn-outline {
    width: 100% !important;
    text-align: center !important;
  }

  .cta-btns {
    flex-direction: column !important;
  }

  .price-cards .price-card {
    padding: 22px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .float-btn .float-label {
    display: none;
  }
}

/* Form validation + AJAX message styles */
.form-message {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.form-message.success:not(:empty) {
  display: block;
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #badbcc;
}

.form-message.error:not(:empty) {
  display: block;
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f5c2c7;
}

.field-error {
  margin: -6px 0 10px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 600;
}

.is-invalid {
  border-color: #e1251b !important;
  background: #fff5f5 !important;
}

button[disabled] {
  opacity: 0.72;
  cursor: not-allowed !important;
}



/* Stable validation layout fixes */
.form-control-wrap {
  width: 100%;
  position: relative;
}

.form-control-wrap .form-field,
.form-control-wrap .form-field-red {
  margin-bottom: 0;
}

.form-control-wrap+.form-control-wrap {
  margin-top: 12px;
}

.field-error {
  margin: 8px 0 10px;
  color: #e1251b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.is-invalid {
  border-color: #e1251b !important;
  background: #fff5f5 !important;
}

/* Red CTA form: keep field color consistent and make errors readable on red */
.brand-cta .form-control-wrap+.form-control-wrap {
  margin-top: 14px;
}

.brand-cta .form-field-red.is-invalid {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 0 0 3px rgba(31, 30, 82, 0.18);
}

.brand-cta .form-field-red.is-invalid::placeholder {
  color: rgba(255, 255, 255, 0.78) !important;
}

.brand-cta .field-error {
  display: inline-block;
  margin: 8px 0 0;
  padding: 7px 10px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(31, 30, 82, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.brand-cta .form-message.error:not(:empty) {
  color: #ffffff;
  background: rgba(31, 30, 82, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand-cta .form-message.success:not(:empty) {
  color: #1f1e52;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-cta .btn-form-navy {
  margin-top: 22px;
}

/* Footer mini form: prevent validation messages from breaking the row */
.footer-lead-form {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(130px, 1fr)) auto;
  gap: 10px 12px;
  flex: 1;
  max-width: 880px;
  min-width: 240px;
  align-items: start;
}

.footer-lead-form .form-control-wrap {
  min-width: 0;
}

.footer-lead-form .form-control-wrap+.form-control-wrap {
  margin-top: 0;
}

.footer-field {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}

.footer-field::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.footer-field:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.footer-field.is-invalid {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: #e8eff9 !important;
  box-shadow: 0 0 0 2px rgba(225, 37, 27, 0.7);
}

.footer-lead-form .field-error {
  margin: 7px 0 0;
  color: #ffffff;
  background: rgba(225, 37, 27, 0.95);
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 11px;
}

.footer-submit-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
}

.footer-submit-btn:hover {
  background: var(--red-hover);
}

.footer-lead-form .form-message {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.footer-lead-form .form-message.error:not(:empty) {
  color: #ffffff;
  background: rgba(225, 37, 27, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-lead-form .form-message.success:not(:empty) {
  color: #1f1e52;
  background: #e8eff9;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 980px) {
  .footer-lead-form {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .footer-lead-form .footer-submit-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .footer-lead-form {
    grid-template-columns: 1fr;
  }
}

.roi-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

@media screen and (max-width: 980px) {
  .roi-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}