:root {
  --navy-950: #071226;
  --navy-900: #0b1832;
  --navy-800: #132545;
  --navy-700: #243b61;
  --blue: #285fbd;
  --blue-light: #e9f0fc;
  --red: #b52b27;
  --red-dark: #91211f;
  --red-light: #fff0ef;
  --ink: #13213a;
  --muted: #657287;
  --line: #dce2eb;
  --line-dark: rgba(255, 255, 255, 0.14);
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --success: #138455;
  --warning: #9a6415;
  --shadow-sm: 0 8px 28px rgba(9, 25, 52, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 21, 45, 0.14);
  --shadow-lg: 0 36px 100px rgba(8, 21, 45, 0.2);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
::selection { background: rgba(181, 43, 39, 0.18); color: var(--navy-950); }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--navy-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.25rem, 6.4vw, 6rem); }
h2 { font-size: clamp(2.3rem, 4.3vw, 4rem); }
h3 { font-size: 1.42rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--light { background: var(--surface-soft); }
.section--navy { color: #fff; background: var(--navy-950); overflow: hidden; }
.section--navy::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -180px;
  top: -250px;
  background: radial-gradient(circle, rgba(40, 95, 189, 0.28), transparent 66%);
  pointer-events: none;
}
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #b7c3d7; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }

.announcement { background: var(--navy-950); color: #fff; font-size: 0.82rem; }
.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement__inner strong { color: #fff; }
.announcement__inner span { color: #c8d2e2; }
.announcement__inner a { color: #fff; font-weight: 700; }
.announcement__inner a:hover { color: #ffb7b3; }
.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef5a52;
  box-shadow: 0 0 0 5px rgba(239, 90, 82, 0.14);
}
.announcement__divider { width: 1px; height: 14px; background: rgba(255,255,255,.23); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(16, 35, 65, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header__inner { min-height: 82px; display: flex; align-items: center; gap: 22px; }
.brand { flex: 0 0 auto; }
.brand img { width: 188px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 21px; margin-left: auto; }
.primary-nav a { color: #34435b; font-size: .93rem; font-weight: 700; }
.primary-nav a:hover { color: var(--red); }
.header__cta { margin-left: 4px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy-900); transition: .2s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(40, 95, 189, .3); outline-offset: 3px; }
.button--small { min-height: 44px; padding-inline: 20px; font-size: .88rem; }
.button--primary { color: #fff; background: var(--red); box-shadow: 0 12px 30px rgba(181, 43, 39, .24); }
.button--primary:hover { background: var(--red-dark); box-shadow: 0 15px 36px rgba(181, 43, 39, .31); }
.button--secondary { color: var(--navy-900); background: #fff; border-color: #cfd7e3; }
.button--secondary:hover { border-color: var(--navy-700); box-shadow: var(--shadow-sm); }
.button--white { color: var(--navy-950); background: #fff; }
.button--white:hover { background: #f7f8fb; box-shadow: 0 14px 36px rgba(0,0,0,.18); }
.button--full { width: 100%; }
.button:disabled { opacity: .6; cursor: wait; transform: none; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow > span { width: 30px; height: 2px; border-radius: 4px; background: currentColor; }
.eyebrow--light { color: #ff827b; }
.section-heading { max-width: 790px; margin-bottom: 52px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 700px; font-size: 1.06rem; }
.section-heading--center p { margin-inline: auto; }

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 98px 0 104px;
  background:
    linear-gradient(118deg, #fff 0%, #fff 47%, #f5f7fb 47.1%, #eef2f8 100%);
}
.hero__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,24,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,24,50,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, #000 34%, #000 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  right: 5%;
  top: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,43,39,.16), transparent 67%);
  filter: blur(2px);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 72px; align-items: center; }
.hero__content { max-width: 690px; }
.hero__challenge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--red-dark);
  background: var(--red-light);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { display: block; color: var(--red); font-style: normal; }
.hero__lead { max-width: 660px; color: #4c5b71; font-size: 1.11rem; line-height: 1.75; }
.hero__lead strong { color: var(--navy-900); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 32px 0 27px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-bottom: 18px; color: #435068; font-size: .86rem; font-weight: 700; }
.check { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 5px; border-radius: 50%; color: #fff; background: var(--success); font-size: .72rem; }
.micro-disclaimer { max-width: 610px; margin: 0; color: #7a8495; font-size: .72rem; line-height: 1.55; }

.rate-snapshot {
  position: relative;
  max-width: 510px;
  justify-self: end;
  width: 100%;
  padding: 30px;
  border: 1px solid rgba(20, 43, 77, .12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.rate-snapshot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -18px -18px 22px;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  transform: rotate(-3deg);
}
.snapshot__header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.snapshot__header strong { display: block; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.35rem; font-weight: 900; }
.snapshot__eyebrow { display: block; margin-bottom: 4px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.snapshot__badge { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; color: #fff; background: var(--red); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 900; }
.snapshot__route { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: center; gap: 12px; padding: 25px 0 21px; }
.snapshot__route > div:first-child { text-align: left; }
.snapshot__route > div:last-child { text-align: right; }
.snapshot__route span, .snapshot__package span { display: block; color: var(--muted); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.snapshot__route strong { color: var(--navy-900); font-size: 1.15rem; }
.route-line { display: flex; align-items: center; justify-content: center; gap: 6px; }
.route-line i { flex: 1; height: 1px; background: #aeb8c6; }
.route-line span { color: var(--red); }
.snapshot__package { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-radius: 12px; background: var(--surface-soft); }
.snapshot__package strong { color: var(--navy-900); font-size: .92rem; }
.snapshot__prices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 17px 0; }
.snapshot__price { padding: 18px 16px; border-radius: 15px; }
.snapshot__price span { display: block; margin-bottom: 5px; font-size: .67rem; font-weight: 700; line-height: 1.35; }
.snapshot__price strong { display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.95rem; font-weight: 900; line-height: 1; }
.snapshot__price--muted { color: #5d6879; background: #edf0f4; }
.snapshot__price--muted strong { text-decoration: line-through; text-decoration-thickness: 2px; }
.snapshot__price--member { color: #fff; background: var(--navy-900); }
.snapshot__savings { display: flex; align-items: center; justify-content: space-between; padding: 14px 17px; border: 1px solid #f1c8c6; border-radius: 13px; color: var(--red-dark); background: var(--red-light); }
.snapshot__savings span { font-size: .78rem; font-weight: 700; }
.snapshot__savings strong { font-size: 1rem; }
.rate-snapshot > p { margin: 15px 0 0; color: #818a98; font-size: .67rem; line-height: 1.5; }

.metrics { padding: 26px 0 21px; background: var(--navy-900); color: #fff; }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metrics__grid > div { position: relative; text-align: center; padding: 11px 24px; }
.metrics__grid > div + div::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.15); }
.metrics__grid strong { display: block; color: #fff; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 2rem; font-weight: 900; line-height: 1.1; }
.metrics__grid span { color: #b8c5d9; font-size: .74rem; }
.metrics__note { width: min(calc(100% - 40px), var(--container)); margin: 12px auto 0; color: #7f91ab; text-align: center; font-size: .65rem; }

.customer-wall { padding: 34px 0 26px; border-bottom: 1px solid var(--line); background: #fff; overflow: hidden; }
.customer-wall__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.customer-wall__heading p { margin: 0; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: .85rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.customer-wall__heading span { color: #8a93a1; font-size: .67rem; }
.logo-marquee { position: relative; width: 100%; overflow: hidden; }
.logo-marquee::before, .logo-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 110px; pointer-events: none; }
.logo-marquee::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(-90deg, #fff, transparent); }
.logo-marquee__track { display: flex; width: max-content; align-items: center; gap: 72px; padding: 13px 36px; animation: marquee 30s linear infinite; }
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.customer-mark { min-width: max-content; color: #778292; filter: grayscale(1); opacity: .9; font-weight: 800; line-height: 1; transition: .2s ease; }
.customer-mark:hover { color: var(--navy-900); filter: none; opacity: 1; }
.chewy { color: #1d73bd; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 2.05rem; font-weight: 900; text-transform: lowercase; letter-spacing: -.06em; }
.butcherbox { color: #273831; font-family: Georgia, serif; font-size: 1.65rem; letter-spacing: -.04em; }
.tyrwhitt { color: #1c2c48; font-family: Georgia, serif; font-size: 1rem; letter-spacing: .08em; }
.ogx { color: #1f1f20; font-family: Arial Black, sans-serif; font-size: 1.7rem; letter-spacing: -.08em; }
.ogx small { display: inline-block; margin-left: 6px; font-family: Inter, sans-serif; font-size: .5rem; letter-spacing: .16em; }
.lavido { color: #657c60; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 500; letter-spacing: .22em; }
.santamonica { color: #19608b; font-family: Georgia, serif; font-size: .85rem; letter-spacing: .05em; }
.santamonica strong { display: block; font-size: 1.1rem; letter-spacing: .12em; }
.epsteins { color: #8d2c26; font-family: Georgia, serif; font-size: .9rem; letter-spacing: .04em; }
.epsteins strong { display: block; font-size: 1.08rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 5px 22px rgba(12,31,60,.035); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-7px); border-color: #c8d0db; box-shadow: var(--shadow-md); }
.feature-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px; padding: 13px; border-radius: 15px; color: var(--red); background: var(--red-light); }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { margin: 0; font-size: .9rem; }

.comparison-section { color: #fff; background: var(--red); overflow: hidden; }
.comparison-section::before { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; right: -180px; top: -250px; background: rgba(255,255,255,.08); }
.comparison-grid { position: relative; display: grid; grid-template-columns: 1.14fr .86fr; gap: 72px; align-items: center; }
.comparison-copy h2 { color: #fff; margin-bottom: 22px; }
.comparison-copy > p { color: #ffe0dd; font-size: 1.03rem; }
.competitor-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 20px; }
.competitor-chips span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.1); font-size: .77rem; font-weight: 700; }
.comparison-disclaimer { margin-bottom: 0 !important; color: rgba(255,255,255,.65) !important; font-size: .7rem !important; }
.challenge-card { padding: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: var(--navy-950); box-shadow: var(--shadow-lg); }
.challenge-card__label { display: inline-block; margin-bottom: 17px; color: #ff928d; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.challenge-card h3 { color: #fff; font-size: 2rem; }
.challenge-card ol { list-style: none; padding: 0; margin: 27px 0 30px; }
.challenge-card li { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #d9e0ec; font-size: .9rem; }
.challenge-card li span { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; color: #fff; background: var(--red); font-weight: 800; }

.rate-review { color: #fff; background: var(--navy-900); overflow: hidden; }
.rate-review::before { content: ""; position: absolute; left: -250px; top: -280px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(40,95,189,.36), transparent 68%); }
.rate-review__grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 76px; align-items: start; }
.rate-review__copy { padding-top: 26px; }
.rate-review__copy h2 { color: #fff; margin-bottom: 20px; }
.rate-review__copy > p { color: #bbc7d8; font-size: 1.02rem; }
.review-list { list-style: none; padding: 0; margin: 34px 0; }
.review-list li { display: grid; grid-template-columns: 45px 1fr; gap: 17px; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.12); }
.review-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.review-list > li > span { color: #ff7972; font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.review-list strong { display: block; color: #fff; font-size: .92rem; }
.review-list p { margin: 4px 0 0; color: #9eacc1; font-size: .82rem; }
.security-note { display: flex; gap: 14px; align-items: flex-start; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.055); }
.security-note svg { flex: 0 0 28px; width: 28px; height: 28px; color: #ff7a72; }
.security-note strong { display: block; color: #fff; font-size: .82rem; }
.security-note span { display: block; margin-top: 3px; color: #9eacc1; font-size: .72rem; line-height: 1.5; }

.upload-card, .contact-form { padding: 34px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); color: var(--ink); }
.form-heading { margin-bottom: 23px; }
.form-heading h3 { margin: 8px 0 8px; font-size: 1.7rem; }
.form-heading p { margin: 0; font-size: .76rem; }
.form-step { color: var(--red); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.template-link { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.dropzone { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 190px; padding: 24px; border: 2px dashed #cfd7e2; border-radius: 17px; background: #f8f9fb; text-align: center; cursor: pointer; transition: .2s ease; }
.dropzone:hover, .dropzone.is-dragging { border-color: var(--red); background: var(--red-light); }
.dropzone.has-file { border-color: var(--success); background: #effaf5; }
.dropzone input { position: absolute; opacity: 0; pointer-events: none; }
.dropzone__icon { width: 42px; height: 42px; margin-bottom: 12px; padding: 9px; border-radius: 12px; color: var(--red); background: #fff; box-shadow: var(--shadow-sm); }
.dropzone strong { color: var(--navy-900); }
.dropzone > span:not(.dropzone__icon) { color: #7a8594; font-size: .8rem; }
.dropzone small { margin-top: 9px; color: #58677c; font-size: .7rem; }
.csv-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 13px; }
.csv-preview > div { padding: 12px; border-radius: 11px; background: var(--surface-soft); }
.csv-preview span { display: block; color: var(--muted); font-size: .62rem; }
.csv-preview strong { color: var(--navy-900); font-size: .85rem; }
.csv-preview p { grid-column: 1 / -1; margin: 0; color: #7d8796; font-size: .65rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 20px; }
.form-grid--three { grid-template-columns: repeat(3, 1fr); }
.form-grid--five { grid-template-columns: repeat(5, 1fr); }
.form-grid__full { grid-column: 1 / -1; }
.form-grid label, .dim-settings label { display: block; }
.form-grid label > span, .dim-settings label > span { display: block; margin-bottom: 6px; color: #34435b; font-size: .72rem; font-weight: 700; }
input, select, textarea { width: 100%; border: 1px solid #d4dce7; border-radius: 11px; background: #fff; color: var(--ink); outline: none; transition: .2s ease; }
input, select { height: 47px; padding: 0 13px; }
textarea { resize: vertical; padding: 12px 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(40,95,189,.12); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--red); background: #fff8f7; }
.toggle-label { display: flex !important; align-items: center; gap: 9px; min-height: 47px; padding-top: 21px; }
.toggle-label input, .consent input { flex: 0 0 auto; width: 17px; height: 17px; accent-color: var(--red); }
.toggle-label span { margin: 0 !important; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 17px 0; color: #667386; font-size: .69rem; line-height: 1.45; }
.consent--light { color: #c3ccda; }
.form-legal { margin: 12px 0 0; color: #818b98; text-align: center; font-size: .62rem; }
.form-legal a { text-decoration: underline; }
.form-status { min-height: 20px; margin-top: 10px; font-size: .75rem; font-weight: 700; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--red); }
.form-status--light.is-success { color: #99efc7; }
.form-status--light.is-error { color: #ffaaa5; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.calculator-section { background: #fff; }
.calculator-shell { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.calculator-tabs { display: flex; gap: 4px; padding: 8px; border-bottom: 1px solid var(--line); background: var(--surface-soft); }
.calculator-tab { flex: 1; height: 48px; border: 0; border-radius: 12px; color: #6d7889; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-weight: 900; }
.calculator-tab.is-active { color: var(--navy-900); background: #fff; box-shadow: 0 4px 16px rgba(12,31,60,.08); }
.calculator-panel.is-active { display: grid; grid-template-columns: minmax(0, 1.34fr) minmax(310px, .66fr); }
.calculator-form { padding: 34px; }
.calculator-form__section { padding: 24px 0; border-bottom: 1px solid var(--line); }
.calculator-form__section:first-child { padding-top: 0; }
.calculator-form__label { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--navy-900); font-size: .77rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.calculator-form__label > span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: var(--red); font-size: .68rem; }
.form-grid--calculator { margin-top: 0; }
.calculator-form__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; border: 0; padding-bottom: 0; }
.dim-settings { min-width: 290px; }
.rate-results { min-height: 100%; padding: 34px; border-left: 1px solid var(--line); background: var(--surface-soft); }
.results-empty { display: flex; min-height: 100%; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 5px; }
.results-empty__icon { width: 58px; height: 58px; margin-bottom: 18px; padding: 15px; border-radius: 17px; color: var(--red); background: var(--red-light); }
.results-empty h3 { margin-bottom: 8px; }
.results-empty p { max-width: 340px; font-size: .82rem; }
.results-summary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.results-summary div { padding: 12px; border-radius: 11px; background: #fff; }
.results-summary span { display: block; color: var(--muted); font-size: .59rem; }
.results-summary strong { color: var(--navy-900); font-size: .87rem; }
.connection-status { margin: 14px 0; padding: 11px 13px; border-radius: 10px; background: #fff; color: #657287; font-size: .7rem; }
.connection-status.is-warning { color: var(--warning); background: #fff7e7; }
.connection-status.is-success { color: var(--success); background: #eaf9f1; }
.rates-list { display: grid; gap: 8px; margin-bottom: 14px; }
.rate-card { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 12px 13px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }
.rate-card__carrier strong, .rate-card__price strong { display: block; color: var(--navy-900); font-size: .75rem; }
.rate-card__carrier span, .rate-card__price span { color: var(--muted); font-size: .59rem; }
.rate-card__price { text-align: right; }
.calculator-disclaimer { max-width: 920px; margin: 22px auto 0; text-align: center; font-size: .66rem; }
.ltl-intro { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 34px 34px 10px; }
.ltl-intro h3 { margin: 8px 0; font-size: 1.65rem; }
.ltl-intro p { max-width: 700px; font-size: .83rem; }
.ltl-badge { display: grid; place-items: center; flex: 0 0 110px; width: 110px; height: 110px; border-radius: 28px; color: #fff; background: var(--navy-900); text-align: center; }
.ltl-badge strong { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 2rem; line-height: 1; }
.ltl-badge span { font-size: .6rem; }
.ltl-form { grid-column: 1 / -1; padding: 10px 34px 34px; }
.ltl-form__footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.ltl-form__footer .consent { flex: 1; }

.pricing-section { background: linear-gradient(125deg, #fff 0 61%, #f3f5f8 61%); }
.pricing-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 92px; align-items: center; }
.pricing-copy h2 { margin-bottom: 20px; }
.pricing-copy > p { max-width: 650px; font-size: 1.03rem; }
.pricing-benefits { list-style: none; padding: 0; margin: 30px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-benefits li { position: relative; padding-left: 28px; color: #415169; font-size: .86rem; font-weight: 700; }
.pricing-benefits li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; color: #fff; background: var(--success); font-size: .68rem; }
.pricing-card { position: relative; padding: 43px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); }
.pricing-card::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 5px; border-radius: 0 0 5px 5px; background: var(--red); }
.pricing-card__kicker { color: var(--red); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.pricing-card__price { display: flex; align-items: flex-end; margin: 20px 0 5px; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.pricing-card__price sup { align-self: flex-start; margin-top: 13px; font-size: 1.5rem; font-weight: 900; }
.pricing-card__price strong { font-size: 6.4rem; line-height: .8; letter-spacing: -.08em; }
.pricing-card__price span { margin: 0 0 7px 9px; color: var(--muted); font-size: 1rem; }
.pricing-card p { font-size: .9rem; }
.pricing-card small { display: block; margin-top: 13px; color: #808a98; font-size: .63rem; line-height: 1.5; }

.process-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 52px; }
.process-heading h2 { max-width: 760px; margin-bottom: 0; }
.process-heading > p { margin-bottom: 5px; font-size: 1rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-card { min-height: 260px; padding: 27px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.process-card > span { display: inline-block; margin-bottom: 60px; color: #ff716a; font-size: .7rem; font-weight: 800; }
.process-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.process-card p { margin: 0; font-size: .8rem; }

.industries-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.industries-copy { position: sticky; top: 120px; }
.industries-copy h2 { margin-bottom: 20px; }
.industries-copy > p { font-size: 1rem; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--red); font-weight: 800; font-size: .84rem; }
.text-link:hover { gap: 12px; }
.industry-list { border-top: 1px solid var(--line); }
.industry-list > div { display: grid; grid-template-columns: 48px .8fr 1.25fr; gap: 20px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.industry-list span { color: var(--red); font-size: .66rem; font-weight: 800; }
.industry-list strong { color: var(--navy-900); font-size: .93rem; }
.industry-list p { margin: 0; font-size: .79rem; }

.blog-preview .section-heading { max-width: 850px; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { display: flex; flex-direction: column; min-height: 330px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .25s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card > span { color: var(--red); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.blog-card h3 { margin: 34px 0 14px; font-size: 1.42rem; }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: .82rem; }
.blog-card .text-link { margin-top: auto; }
.blog-preview__footer { margin-top: 35px; text-align: center; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-copy { position: sticky; top: 120px; align-self: start; }
.faq-copy h2 { margin-bottom: 18px; }
.faq-copy .button { margin-top: 15px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--navy-900); text-align: left; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.03rem; font-weight: 900; }
.accordion-item button i { position: relative; flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--surface-soft); }
.accordion-item button i::before, .accordion-item button i::after { content: ""; position: absolute; left: 7px; right: 7px; top: 11px; height: 2px; background: var(--navy-900); transition: .2s ease; }
.accordion-item button i::after { transform: rotate(90deg); }
.accordion-item.is-open button i::after { transform: rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.accordion-panel p { overflow: hidden; margin: 0; padding-right: 50px; font-size: .86rem; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel p { padding-bottom: 24px; }

.contact-section { padding: 100px 0; background: linear-gradient(135deg, var(--red) 0%, #8f2421 100%); }
.contact-shell { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: center; }
.contact-copy h2 { color: #fff; margin-bottom: 20px; }
.contact-copy > p { color: #f3cfcd; font-size: 1rem; }
.contact-details { display: grid; gap: 10px; margin-top: 31px; }
.contact-details a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-details span { color: #f2c6c3; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-details strong { color: #fff; font-size: .9rem; }
.contact-form { background: var(--navy-950); }
.contact-form input, .contact-form textarea { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.07); color: #fff; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #7f8ca1; }
.contact-form .form-grid label > span { color: #d6dfeb; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #ff746e; box-shadow: 0 0 0 3px rgba(255,116,110,.13); }

.site-footer { color: #fff; background: var(--navy-950); }
.footer__main { display: grid; grid-template-columns: 1.05fr 1.45fr; gap: 90px; padding: 70px 0 55px; }
.footer__brand img { width: 225px; padding: 9px; border-radius: 8px; background: #fff; }
.footer__brand p { max-width: 380px; margin: 20px 0 0; color: #8999b1; font-size: .82rem; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer__links > div { display: flex; flex-direction: column; gap: 9px; }
.footer__links strong { margin-bottom: 8px; color: #fff; font-size: .73rem; text-transform: uppercase; letter-spacing: .1em; }
.footer__links a { color: #8f9eb3; font-size: .78rem; }
.footer__links a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 40px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); color: #718099; font-size: .63rem; }
.footer__bottom span:last-child { max-width: 670px; text-align: right; }

.floating-contact { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: flex; gap: 8px; }
.floating-contact a { display: flex; align-items: center; gap: 7px; height: 46px; padding: 0 15px; border-radius: 999px; color: #fff; box-shadow: 0 10px 30px rgba(9,24,50,.24); font-size: .73rem; }
.floating-contact a:first-child { background: var(--navy-900); }
.floating-contact a:last-child { background: var(--red); }
.floating-contact span { font-size: .9rem; }
.floating-contact strong { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

/* Legal pages */
.legal-header { position: relative; }
.legal-back { margin-left: auto; }
.legal-page { padding: 80px 0 110px; background: var(--surface-soft); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 70px; justify-content: center; }
.legal-sidebar { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 7px; }
.legal-sidebar > span { margin-bottom: 9px; color: var(--muted); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.legal-sidebar a { padding: 9px 12px; border-radius: 9px; color: #59687c; font-size: .8rem; }
.legal-sidebar a.is-active { color: var(--navy-900); background: #fff; font-weight: 800; box-shadow: var(--shadow-sm); }
.legal-content { padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.legal-content h1 { font-size: 3.4rem; margin-bottom: 24px; }
.legal-content h2 { margin: 40px 0 12px; font-size: 1.32rem; letter-spacing: -.02em; }
.legal-content p { font-size: .88rem; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-intro { font-size: 1rem !important; }
.legal-footer .footer__bottom { border: 0; }

/* Blog */
.blog-header { position: relative; }
.blog-hero { padding: 92px 0 72px; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: #fff; }
.blog-hero h1 { max-width: 860px; color: #fff; margin-bottom: 18px; }
.blog-hero p { max-width: 720px; color: #b8c4d6; font-size: 1.05rem; }
.blog-index { padding: 85px 0 110px; background: var(--surface-soft); }
.blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-index-card { display: flex; min-height: 350px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: .25s ease; }
.blog-index-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-index-card .article-category { color: var(--red); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.blog-index-card h2 { margin: 32px 0 14px; font-size: 1.5rem; }
.blog-index-card h2 a:hover { color: var(--red); }
.blog-index-card p { font-size: .82rem; }
.blog-index-card .article-meta { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: #8a93a0; font-size: .65rem; }
.article-page { background: var(--surface-soft); }
.article-hero { padding: 75px 0 58px; background: #fff; border-bottom: 1px solid var(--line); }
.article-hero__inner { max-width: 900px; }
.article-category { color: var(--red); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.article-hero h1 { max-width: 860px; margin: 18px 0 20px; font-size: clamp(2.7rem, 5vw, 4.7rem); }
.article-deck { max-width: 760px; color: #58677c; font-size: 1.08rem; }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 22px; color: #8a93a1; font-size: .72rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 240px; gap: 70px; align-items: start; padding: 70px 0 105px; }
.article-content { padding: 50px 55px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.article-content h2 { margin: 44px 0 15px; font-size: 2rem; }
.article-content h3 { margin: 30px 0 11px; font-size: 1.28rem; }
.article-content p, .article-content li { color: #4f5d71; font-size: .94rem; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li { margin-bottom: 9px; }
.article-content blockquote { margin: 30px 0; padding: 22px 25px; border-left: 4px solid var(--red); border-radius: 0 13px 13px 0; background: var(--red-light); color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.1rem; font-weight: 800; }
.article-callout { margin: 30px 0; padding: 24px; border: 1px solid #cbd7eb; border-radius: 15px; background: var(--blue-light); }
.article-callout strong { display: block; margin-bottom: 5px; color: var(--navy-900); }
.article-callout p { margin: 0; }
.article-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.article-sources { margin-top: 48px; padding-top: 25px; border-top: 1px solid var(--line); }
.article-sources h3 { font-size: 1rem; }
.article-sources li { font-size: .75rem; }
.article-cta { margin-top: 45px; padding: 28px; border-radius: 17px; background: var(--navy-900); }
.article-cta h3 { color: #fff; margin-top: 0; }
.article-cta p { color: #b9c4d5; }
.article-sidebar { position: sticky; top: 110px; }
.article-sidebar__card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.article-sidebar__card + .article-sidebar__card { margin-top: 15px; }
.article-sidebar h3 { font-size: 1rem; }
.article-sidebar p { font-size: .75rem; }
.article-sidebar a:not(.button) { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); color: #4f5d71; font-size: .73rem; font-weight: 700; }
.article-sidebar a:not(.button):hover { color: var(--red); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay { transition-delay: .1s; }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }

@media (max-width: 1060px) {
  .primary-nav { gap: 18px; }
  .header__cta { display: none; }
  .hero__grid { gap: 44px; }
  .hero h1 { font-size: clamp(3.15rem, 7vw, 5rem); }
  .feature-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .rate-review__grid, .comparison-grid, .contact-shell { gap: 48px; }
  .form-grid--five { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { gap: 55px; }
  .blog-index-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 84px; }
  .section { padding: 84px 0; }
  .announcement__inner { padding-block: 7px; line-height: 1.2; }
  .announcement__divider { display: none; }
  .header__inner { min-height: 72px; }
  .brand img { width: 176px; }
  .nav-toggle { display: block; margin-left: auto; }
  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transition: max-height .3s ease, padding .3s ease;
  }
  .primary-nav.is-open { max-height: 500px; padding-block: 15px; }
  .primary-nav a { padding: 13px 5px; border-bottom: 1px solid var(--line); }
  .hero { min-height: auto; padding: 75px 0 92px; background: linear-gradient(180deg, #fff 0 54%, #f1f4f8 54%); }
  .hero__grid, .comparison-grid, .rate-review__grid, .pricing-grid, .contact-shell, .industries-grid, .faq-grid, .footer__main, .process-heading { grid-template-columns: 1fr; }
  .hero__grid { gap: 65px; }
  .rate-snapshot { justify-self: center; }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); }
  .metrics__grid > div:nth-child(3)::before { display: none; }
  .customer-wall__heading { display: block; text-align: center; }
  .customer-wall__heading span { display: block; margin-top: 5px; }
  .comparison-grid, .rate-review__grid { gap: 52px; }
  .calculator-panel.is-active { grid-template-columns: 1fr; }
  .rate-results { border-left: 0; border-top: 1px solid var(--line); }
  .pricing-section { background: var(--surface-soft); }
  .process-heading { gap: 20px; }
  .industries-copy, .faq-copy { position: static; }
  .industry-list > div { grid-template-columns: 42px 1fr; }
  .industry-list p { grid-column: 2; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .footer__main { gap: 45px; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .article-sidebar__card + .article-sidebar__card { margin-top: 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; }
  .legal-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .legal-sidebar > span { flex-basis: 100%; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.45rem; }
  .announcement__inner { gap: 8px 11px; font-size: .72rem; }
  .announcement__inner span:not(.announcement__dot) { display: none; }
  .hero { padding-top: 58px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: 1fr; }
  .rate-snapshot { padding: 21px; border-radius: 22px; }
  .rate-snapshot::before { inset: 14px -7px -10px 12px; }
  .snapshot__prices { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr 1fr; }
  .metrics__grid > div { padding: 11px 8px; }
  .metrics__grid strong { font-size: 1.6rem; }
  .metrics__grid span { font-size: .64rem; }
  .logo-marquee__track { gap: 45px; }
  .feature-grid, .process-grid, .pricing-benefits, .form-grid, .form-grid--three, .form-grid--five, .results-summary, .blog-index-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .challenge-card, .upload-card, .contact-form, .pricing-card { padding: 26px; }
  .csv-preview { grid-template-columns: 1fr; }
  .calculator-tabs { flex-direction: column; }
  .calculator-form, .rate-results, .ltl-form { padding: 24px; }
  .calculator-form__footer, .ltl-form__footer, .ltl-intro { flex-direction: column; align-items: stretch; }
  .dim-settings { min-width: 0; }
  .ltl-intro { padding: 24px 24px 5px; }
  .ltl-badge { width: 90px; height: 90px; flex-basis: 90px; align-self: center; }
  .industry-list > div { gap: 12px; }
  .accordion-panel p { padding-right: 10px; }
  .contact-details a { display: block; }
  .contact-details strong { display: block; margin-top: 4px; word-break: break-word; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom { display: block; }
  .footer__bottom span { display: block; }
  .footer__bottom span:last-child { margin-top: 10px; text-align: left; }
  .floating-contact { right: 10px; bottom: 10px; }
  .floating-contact a { width: 46px; justify-content: center; padding: 0; }
  .floating-contact strong { display: none; }
  .legal-content, .article-content { padding: 30px 24px; }
  .legal-content h1 { font-size: 2.8rem; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-hero { padding: 55px 0 45px; }
  .article-layout { padding: 45px 0 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .logo-marquee__track { animation: none; }
}

/* Deliberate dark treatment for the illustrative rate card. */
.rate-snapshot {
  color: #fff;
  background: var(--navy-900);
  border: 9px solid #fff;
  box-shadow: 0 30px 85px rgba(8, 21, 45, 0.27), 18px 18px 0 rgba(181, 43, 39, 0.16);
}
.rate-snapshot::before { display: none; }
.snapshot__header { border-bottom-color: rgba(255,255,255,.14); }
.snapshot__header strong, .snapshot__route strong { color: #fff; }
.snapshot__eyebrow, .snapshot__route span { color: #8798b2; }
.snapshot__package { color: var(--navy-900); background: #f1f4f8; }
.snapshot__package span { color: #708096; }
.snapshot__price--member { background: rgba(255,255,255,.08); }
.rate-snapshot > p { color: #8c9ab0; }

/* V3 integrations */
.integrations-section{background:#fff}
.integration-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:34px}
.integration-grid div{display:flex;align-items:center;justify-content:center;min-height:78px;border:1px solid rgba(15,38,73,.12);border-radius:16px;background:#f8fafc;color:#10264a;font-weight:800;letter-spacing:.01em;box-shadow:0 10px 30px rgba(15,38,73,.05)}
@media (max-width:800px){.integration-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}

/* V5: tighter enterprise hero, real photography, standalone calculator and enhanced blog. */
.hero {
  min-height: 635px;
  align-items: flex-start;
  padding: 48px 0 62px;
}
.hero__grid { align-items: start; gap: 54px; }
.hero__content { padding-top: 2px; }
.hero .eyebrow { margin-bottom: 10px; }
.hero__challenge { margin-bottom: 10px; }
.hero h1 { max-width: 690px; margin-bottom: 14px; font-size: clamp(3.35rem, 5.25vw, 5.15rem); }
.hero h1 em { margin-top: 2px; }
.hero__lead--primary { max-width: 650px; margin-bottom: 10px; color: #263750; font-size: 1.15rem; line-height: 1.55; font-weight: 600; }
.hero__membership { max-width: 655px; margin: 0; color: #647187; font-size: .89rem; line-height: 1.62; }
.hero__actions { margin: 22px 0 18px; }
.hero__proof { margin-bottom: 12px; }
.carrier-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 18px 0 0; }
.carrier-logo { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 5px 13px; border-radius: 10px; background: #fff; border: 1px solid #d9e0e9; box-shadow: 0 7px 20px rgba(8,21,45,.06); font-family: Arial, sans-serif; font-weight: 900; line-height: 1; }
.carrier-logo--ups { color: #351c15; background: #f3c34e; border-color: #d4a62f; border-radius: 8px 8px 13px 13px; }
.carrier-logo--ups sup { margin-left: 2px; font-size: .46em; }
.carrier-logo--fedex { color: #4d148c; font-size: 1.02rem; letter-spacing: -.06em; }
.carrier-logo--fedex b { color: #4d148c; }
.carrier-logo--fedex i { color: #ff6600; font-style: normal; }
.carrier-logo--dhl { color: #d40511; background: #ffcc00; border-color: #e7b900; font-style: italic; letter-spacing: -.05em; }
.carrier-logos--large { justify-content: flex-end; margin: 0; }
.carrier-logos--large .carrier-logo { min-height: 56px; padding: 10px 18px; font-size: 1.25rem; }

.rate-snapshot { max-width: 440px; padding: 22px; border-width: 7px; border-radius: 23px; transform: rotate(.45deg); }
.invoice-strip { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: -4px -2px 16px; padding: 8px 10px; border-radius: 7px; background: #f2f4f7; color: #4e5968; font-size: .59rem; letter-spacing: .08em; }
.invoice-strip strong { color: var(--red); font-size: .59rem; text-transform: uppercase; }
.snapshot__header { padding-bottom: 15px; }
.snapshot__header strong { font-size: 1.14rem; }
.snapshot__badge { width: 52px; height: 52px; border-radius: 14px; font-size: .83rem; }
.snapshot__route { padding: 18px 0 15px; gap: 9px; }
.snapshot__route strong { display: block; font-size: .77rem; line-height: 1.2; }
.snapshot__route small { display: block; margin-top: 3px; color: #8798b2; font-size: .62rem; font-weight: 700; }
.route-line span { white-space: nowrap; font-size: .56rem; }
.snapshot__package { padding: 9px 12px; }
.snapshot__prices { gap: 9px; margin-top: 10px; }
.snapshot__price { padding: 12px; }
.snapshot__price strong { font-size: 1.32rem; }
.snapshot__savings { margin-top: 10px; padding: 11px 12px; }
.rate-snapshot > p { margin-top: 10px; font-size: .59rem; }

.industry-photos { padding: 78px 0 88px; background: #fff; }
.industry-photos__heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 65px; align-items: end; margin-bottom: 34px; }
.industry-photos__heading h2 { margin: 0; font-size: clamp(2.25rem, 3.7vw, 3.55rem); }
.industry-photos__heading > p { margin: 0; font-size: .98rem; }
.industry-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-photo-card { position: relative; min-height: 365px; margin: 0; overflow: hidden; border-radius: 20px; background: var(--navy-950); box-shadow: var(--shadow-sm); }
.industry-photo-card img { width: 100%; height: 100%; min-height: 365px; object-fit: cover; transition: transform .5s ease; }
.industry-photo-card:hover img { transform: scale(1.035); }
.industry-photo-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(4,13,29,.92)); }
.industry-photo-card figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: #fff; }
.industry-photo-card strong { display: block; margin-bottom: 5px; color: #fff; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.22rem; font-weight: 900; }
.industry-photo-card span { display: block; color: #d6deea; font-size: .76rem; line-height: 1.45; }
.photo-credit { margin: 13px 0 0; text-align: right; color: #929ba9; font-size: .61rem; }

.customer-mark.allenbrothers { font-family: Georgia, serif; letter-spacing: .03em; }
.customer-mark.meatmasters { color: #8b2d29; }
.customer-mark.artscroll { font-family: Georgia, serif; letter-spacing: .08em; }
.customer-mark.zstander { color: #263c60; }
.customer-mark.japparel { letter-spacing: .12em; }

/* Standalone calculator page */
.calculator-page-hero { padding: 72px 0 62px; background: linear-gradient(120deg, #fff 0%, #f2f5f9 100%); border-bottom: 1px solid var(--line); }
.calculator-page-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.calculator-page-hero h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(3.1rem, 5.6vw, 5.4rem); }
.calculator-page-hero p { max-width: 720px; margin: 0; font-size: 1.03rem; }
.connection-guide { padding-top: 82px; padding-bottom: 65px; background: #fff; }
.connection-guide__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 75px; align-items: start; }
.connection-guide h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 3.7vw, 3.5rem); }
.connection-steps { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.connection-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface-soft); }
.connection-steps li > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #fff; background: var(--red); font-weight: 900; }
.connection-steps strong { display: block; color: var(--navy-900); }
.connection-steps p { margin: 3px 0 0; font-size: .78rem; line-height: 1.5; }
.security-banner { display: flex; align-items: center; gap: 15px 28px; margin-top: 34px; padding: 18px 22px; border: 1px solid #ecd59c; border-radius: 14px; background: #fff9e7; }
.security-banner strong { color: #6d4d03; white-space: nowrap; }
.security-banner span { color: #7d6a3c; font-size: .78rem; }
.calculator-section--page { padding-top: 72px; background: var(--surface-soft); }
.calculator-cta { padding: 72px 0; background: #fff; }
.calculator-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 32px 38px; border-radius: 22px; color: #fff; background: var(--navy-950); }
.calculator-cta span { color: #ff9994; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.calculator-cta h2 { margin: 4px 0 0; color: #fff; font-size: 2rem; }

/* Enhanced blog landing */
.blog-hero--enhanced { padding: 66px 0 58px; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), #102b53); }
.blog-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 55px; align-items: center; }
.blog-hero--enhanced h1 { font-size: clamp(3rem, 5vw, 5rem); }
.blog-hero__visual { position: relative; min-height: 350px; }
.blog-hero__visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 8px solid rgba(255,255,255,.1); border-radius: 24px; filter: saturate(.85); }
.blog-hero__visual::after { content: ""; position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, rgba(7,18,38,.12), rgba(7,18,38,.72)); }
.blog-screen-card { position: absolute; z-index: 2; right: -12px; bottom: -16px; width: min(78%, 390px); padding: 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-lg); transform: rotate(-2deg); }
.blog-screen-card span { color: var(--red); font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.blog-screen-card strong { display: block; margin-top: 5px; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1rem; line-height: 1.25; }
.blog-topic-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 38px; }
.blog-topic-grid a { padding: 17px 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--navy-900); font-size: .75rem; font-weight: 800; text-align: center; }
.blog-topic-grid a:hover { border-color: var(--red); color: var(--red); }
.blog-membership-banner { margin: 38px 0 0; padding: 24px 28px; border-radius: 18px; color: #fff; background: var(--navy-900); }
.blog-membership-banner strong { color: #fff; }
.blog-membership-banner p { margin: 0; color: #c0cbda; }
.blog-index-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.blog-index-intro h2 { margin: 0; font-size: clamp(2.2rem, 3.5vw, 3.4rem); }
.blog-index-intro p { max-width: 600px; margin: 0; }
.blog-index-card--featured { grid-column: span 2; min-height: 390px; background: linear-gradient(145deg, #fff, #f7f9fc); }
.blog-index-card .card-location { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 4px; color: #66758a; font-size: .66rem; font-weight: 700; }
.article-hero-image { width: 100%; max-height: 390px; margin: 28px 0 4px; object-fit: cover; border-radius: 18px; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 38px; }
  .industry-photos__heading, .calculator-page-hero__grid, .connection-guide__grid, .blog-hero__grid { grid-template-columns: 1fr; }
  .industry-photo-grid { grid-template-columns: 1fr 1fr; }
  .industry-photo-card:last-child { grid-column: 1 / -1; }
  .carrier-logos--large { justify-content: flex-start; }
  .blog-topic-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 3.05rem; }
  .rate-snapshot { max-width: 100%; }
  .industry-photos { padding: 64px 0; }
  .industry-photos__heading { gap: 18px; }
  .industry-photo-grid { grid-template-columns: 1fr; }
  .industry-photo-card:last-child { grid-column: auto; }
  .industry-photo-card, .industry-photo-card img { min-height: 310px; }
  .photo-credit { text-align: left; }
  .calculator-page-hero { padding: 52px 0 45px; }
  .calculator-page-hero h1 { font-size: 3.05rem; }
  .connection-guide { padding-top: 62px; }
  .security-banner { display: block; }
  .security-banner strong { display: block; margin-bottom: 6px; white-space: normal; }
  .calculator-cta .container { display: block; padding: 28px 24px; }
  .calculator-cta .button { width: 100%; margin-top: 20px; }
  .blog-topic-grid { grid-template-columns: 1fr 1fr; }
  .blog-screen-card { right: 8px; width: 86%; }
  .blog-index-intro { display: block; }
  .blog-index-intro p { margin-top: 12px; }
  .blog-index-card--featured { grid-column: auto; }
}

/* V7 supplied carrier artwork and contact page */
.carrier-logos-image{display:block;width:min(100%,310px);height:auto;object-fit:contain}.carrier-logos--large .carrier-logos-image{width:min(100%,360px)}.contact-page-hero{padding-bottom:56px}@media(max-width:720px){.carrier-logos-image,.carrier-logos--large .carrier-logos-image{width:min(100%,260px)}}


/* V8 layout refinements and individual carrier marks */
.carrier-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
}
.carrier-brand {
  height: 44px;
  min-width: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(11,24,50,.10);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(11,24,50,.06);
}
.carrier-brand img { display: block; max-width: 100%; max-height: 30px; width: auto; height: auto; object-fit: contain; }
.carrier-brand--fedex { min-width: 105px; }
.carrier-brand--ups { min-width: 58px; padding-left: 12px; padding-right: 12px; }
.carrier-brand--ups img { max-height: 34px; }
.carrier-brand--dhl { min-width: 106px; }
.carrier-brand--dhl img { max-height: 25px; }
.carrier-brand-row--compact { justify-content: flex-end; margin: 0; }
.contact-page-hero__inner { max-width: 780px; }

/* Give the homepage hero more breathing room without removing content */
.hero.section { padding-top: 44px; padding-bottom: 56px; }
.hero__grid { align-items: center; column-gap: clamp(42px, 6vw, 92px); }
.hero__content { max-width: 690px; }
.hero__content h1 { font-size: clamp(3.4rem, 5.4vw, 5.35rem); line-height: .98; letter-spacing: -.055em; margin-top: 16px; margin-bottom: 22px; }
.hero__content h1 em { display: block; }
.hero__lead--primary { max-width: 650px; font-size: 1.17rem; line-height: 1.55; }
.hero__membership { max-width: 650px; line-height: 1.58; margin-top: 12px; }
.hero__challenge { margin-top: 12px; }
.hero__actions { margin-top: 22px; }
.hero__proof { margin-top: 19px; }
.rate-snapshot { max-width: 500px; justify-self: end; }

/* Article pages no longer use a repeated hero photograph */
.article-hero { padding-bottom: 46px; }
.article-hero .article-byline { margin-bottom: 0; }

@media (max-width: 980px) {
  .hero__grid { row-gap: 42px; }
  .rate-snapshot { justify-self: stretch; max-width: none; }
  .carrier-brand-row--compact { justify-content: flex-start; margin-top: 18px; }
}
@media (max-width: 720px) {
  .hero.section { padding-top: 30px; }
  .hero__content h1 { font-size: clamp(3rem, 14vw, 4.25rem); }
  .carrier-brand { height: 40px; min-width: 72px; }
  .carrier-brand--fedex, .carrier-brand--dhl { min-width: 92px; }
}



/* V11 editorial layout, resource library and long-form guide pages */
.hero--editorial { min-height: 0; padding: 64px 0 68px; }
.hero--editorial .hero__grid { grid-template-columns: minmax(0, 1.22fr) minmax(380px, .78fr); gap: clamp(42px, 4.5vw, 70px); align-items: center; }
.hero--editorial .hero__content { max-width: 730px; }
.hero--editorial h1 { margin: 20px 0 22px; font-size: clamp(3.25rem, 4.25vw, 4.1rem); line-height: 1.01; letter-spacing: -.055em; }
.hero--editorial h1 span, .hero--editorial h1 em { display: block; }
@media (min-width: 1180px) { .hero--editorial h1 span { white-space: nowrap; } }
.hero--editorial .hero__lead--primary { max-width: 650px; font-size: 1.14rem; line-height: 1.55; }
.hero--editorial .hero__actions { margin: 28px 0 20px; }
.hero-quickfacts { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 17px; }
.hero-quickfacts span { padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; color: #536176; background: rgba(255,255,255,.8); font-size: .75rem; }
.hero-quickfacts strong { color: var(--navy-900); }
.rate-snapshot--editorial { max-width: 420px; padding: 24px; transform: none; }
.rate-snapshot--editorial::before { inset: 14px -13px -13px 14px; transform: none; opacity: .92; }
.rate-snapshot--editorial .snapshot__header { padding-bottom: 17px; }
.rate-snapshot--editorial .snapshot__route { padding: 20px 0 16px; }
.rate-snapshot--editorial .snapshot__route strong { font-size: .96rem; }
.rate-snapshot--editorial .snapshot__badge { width: 54px; height: 54px; border-radius: 16px; }
.rate-snapshot--editorial .snapshot__price { padding: 15px 14px; }
.rate-snapshot--editorial .snapshot__price strong { font-size: 1.65rem; }
.home-trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.home-trust-strip__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; padding: 25px 0; }
.home-trust-strip__inner > div:first-child > span { display: block; margin-bottom: 8px; color: #7a8799; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.home-trust-strip .carrier-brand-row { margin: 0; }
.home-trust-strip__copy { padding-left: 42px; border-left: 1px solid var(--line); }
.home-trust-strip__copy strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.12rem; }
.home-trust-strip__copy p { margin: 0; font-size: .82rem; line-height: 1.55; }
.home-resources { padding: 88px 0; background: var(--surface-soft); }
.home-resources__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.home-resources h2 { margin: 14px 0 18px; font-size: clamp(2.5rem, 4vw, 3.65rem); }
.home-resources p { max-width: 590px; }
.home-resource-links { display: grid; gap: 10px; }
.home-resource-links a { display: grid; gap: 4px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: .2s ease; }
.home-resource-links a:hover { transform: translateX(4px); border-color: rgba(181,43,39,.35); box-shadow: var(--shadow-sm); }
.home-resource-links span { color: var(--red); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-resource-links strong { color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 1.02rem; }

.blog-home-hero { padding: 86px 0 74px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg, #fff 0%, #f2f5f9 100%); }
.blog-home-hero .container { max-width: 900px; text-align: center; }
.blog-home-hero h1 { margin: 15px auto 20px; max-width: 860px; font-size: clamp(3rem, 5vw, 5.1rem); }
.blog-home-hero p { margin: 0 auto; max-width: 730px; font-size: 1.08rem; }
.blog-home-hero .hero__actions { justify-content: center; }
.blog-home-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.blog-home-stats span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #637086; background: #fff; font-size: .73rem; }
.blog-home-stats strong { color: var(--navy-900); }
.blog-categories, .featured-guides-section, .latest-guides-section { padding: 92px 0; }
.blog-categories { background: #fff; }
.featured-guides-section { background: var(--surface-soft); }
.latest-guides-section { background: #fff; }
.section-heading--compact { max-width: 760px; margin-bottom: 34px; }
.section-heading--compact h2 { margin: 13px 0 14px; font-size: clamp(2.45rem, 4vw, 3.65rem); }
.topic-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic-card { min-height: 245px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: .22s ease; }
.topic-card:hover { transform: translateY(-4px); border-color: rgba(181,43,39,.35); box-shadow: var(--shadow-sm); }
.topic-card > span { color: var(--red); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.topic-card h2 { margin: 28px 0 12px; font-size: 1.55rem; }
.topic-card p { font-size: .82rem; }
.topic-card > strong { display: block; margin-top: 22px; color: var(--navy-900); font-size: .78rem; }
.featured-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.featured-guide { display: flex; min-height: 315px; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.featured-guide > span { color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured-guide h2 { margin: 25px 0 13px; font-size: 1.45rem; }
.featured-guide p { font-size: .82rem; }
.featured-guide .text-link { margin-top: auto; padding-top: 20px; color: var(--navy-900); font-size: .76rem; font-weight: 800; }
.latest-guides-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 78px; align-items: start; }
.latest-guides-layout h2 { margin: 13px 0 18px; font-size: clamp(2.5rem, 4vw, 3.6rem); }
.latest-guide-list { border-top: 1px solid var(--line); }
.latest-guide-row { display: grid; grid-template-columns: 130px 1fr 56px; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.latest-guide-row span { color: var(--red); font-size: .63rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.latest-guide-row strong { color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: .98rem; }
.latest-guide-row em { color: #8a95a6; font-size: .68rem; font-style: normal; text-align: right; }
.blog-membership-compact { padding: 0 0 88px; background: #fff; }
.blog-membership-compact .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 34px 38px; border-radius: 22px; background: var(--navy-950); }
.blog-membership-compact span { color: #ef8e89; font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.blog-membership-compact h2 { margin: 5px 0 8px; color: #fff; font-size: 2rem; }
.blog-membership-compact p { max-width: 760px; margin: 0; color: #bec9d9; font-size: .82rem; }

.resource-hero { padding: 76px 0 60px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg, #fff, #f3f6fa); }
.resource-hero .container { max-width: 900px; }
.resource-hero h1 { margin: 13px 0 18px; font-size: clamp(3rem, 5.3vw, 5rem); }
.resource-hero p { max-width: 760px; font-size: 1.05rem; }
.resource-hero--compact { padding-bottom: 68px; }
.resource-section { padding: 78px 0 104px; background: var(--surface-soft); }
.resource-section__header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.resource-section__header h2 { margin-bottom: 7px; font-size: 2.35rem; }
.resource-section__header p { margin: 0; }
.resource-list { display: grid; gap: 10px; }
.resource-row { display: grid; grid-template-columns: 1fr 44px; gap: 24px; align-items: center; padding: 22px 24px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.resource-row span { color: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.resource-row h2 { margin: 5px 0 7px; font-size: 1.25rem; }
.resource-row p { margin: 0; font-size: .78rem; }
.resource-arrow { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--navy-900); background: var(--surface-soft); font-weight: 900; }
.guide-search { display: grid; gap: 8px; max-width: 630px; margin-top: 28px; text-align: left; }
.guide-search span { color: var(--navy-900); font-size: .74rem; font-weight: 800; }
.guide-search input { width: 100%; padding: 15px 17px; border: 1px solid #cfd7e3; border-radius: 12px; background: #fff; }
.all-guides-group { margin-bottom: 66px; }
.all-guides-group__heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.all-guides-group__heading h2 { margin: 0; font-size: 2.15rem; }
.all-guides-group__heading a { color: var(--red); font-size: .75rem; font-weight: 800; }
.all-guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.all-guide-link { display: grid; gap: 5px; min-height: 104px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.all-guide-link:hover { border-color: rgba(181,43,39,.35); }
.all-guide-link span { color: #7f8b9c; font-size: .6rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.all-guide-link strong { color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: .9rem; line-height: 1.3; }
.no-guide-results { padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; text-align: center; }

.guide-page { background: var(--surface-soft); }
.guide-hero { padding: 64px 0 52px; border-bottom: 1px solid var(--line); background: #fff; }
.guide-hero__inner { max-width: 940px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 25px; color: #788597; font-size: .69rem; }
.breadcrumbs a:hover { color: var(--red); }
.guide-hero h1 { max-width: 930px; margin: 14px 0 19px; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.guide-deck { max-width: 790px; font-size: 1.08rem; }
.guide-layout { display: grid; grid-template-columns: minmax(0, 790px) 280px; gap: 64px; align-items: start; padding: 62px 0 100px; }
.guide-content { padding: 48px 54px; }
.guide-content > p:first-of-type { color: #34445c; font-size: 1.05rem; }
.guide-content h2 { scroll-margin-top: 120px; }
.guide-summary { margin-bottom: 30px; padding: 22px 24px; border-left: 4px solid var(--red); border-radius: 0 14px 14px 0; background: #fff7f6; }
.guide-summary > strong { display: block; margin-bottom: 8px; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.guide-summary ul { margin: 0; padding-left: 19px; }
.guide-summary li { margin: 4px 0; }
.guide-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.guide-toc strong { width: 100%; color: var(--navy-900); font-size: .73rem; }
.guide-toc a { padding: 7px 10px; border-radius: 8px; color: #536176; background: var(--surface-soft); font-size: .68rem; font-weight: 700; }
.check-list, .numbered-list { padding-left: 22px; }
.check-list li, .numbered-list li { margin: 8px 0; }
.guide-table-wrap { overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: 14px; }
.guide-table { width: 100%; border-collapse: collapse; background: #fff; }
.guide-table th, .guide-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; font-size: .78rem; }
.guide-table th { color: var(--navy-900); background: var(--surface-soft); font-weight: 800; }
.guide-table tr:last-child td { border-bottom: 0; }
.guide-levers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.guide-lever { padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.guide-lever h3 { margin-bottom: 8px; font-size: 1.02rem; }
.guide-lever p { margin: 0; font-size: .78rem; }
.action-plan { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.action-plan > div { padding: 19px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.action-plan span { color: var(--red); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.action-plan strong { display: block; margin: 5px 0; color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.action-plan p { margin: 0; font-size: .76rem; }
.guide-faq details { border-top: 1px solid var(--line); }
.guide-faq details:last-child { border-bottom: 1px solid var(--line); }
.guide-faq summary { padding: 17px 0; color: var(--navy-900); font-weight: 800; cursor: pointer; }
.guide-faq details p { margin: -4px 0 18px; }
.guide-sidebar { position: sticky; top: 98px; display: grid; gap: 15px; }
.guide-sidebar .article-sidebar__card { padding: 24px; }
.sidebar-kicker { color: var(--red); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-sidebar h2 { margin: 8px 0 12px; font-size: 1.55rem; }
.sidebar-phone { display: block; margin-top: 14px; color: var(--navy-900); text-align: center; font-size: .76rem; font-weight: 800; }
.related-card > a { display: grid; gap: 2px; padding: 12px 0; border-top: 1px solid var(--line); }
.related-card > a span { color: var(--red); font-size: .57rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.related-card > a strong { color: var(--navy-900); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: .78rem; line-height: 1.35; }

@media (max-width: 1050px) {
  .hero--editorial .hero__grid, .home-resources__layout, .latest-guides-layout, .guide-layout { grid-template-columns: 1fr; }
  .hero--editorial .rate-snapshot--editorial { justify-self: start; }
  .home-trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .guide-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .topic-card-grid, .featured-guides-grid, .all-guides-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero--editorial { padding: 42px 0 52px; }
  .hero--editorial h1 { font-size: clamp(2.8rem, 12vw, 3.65rem); }
  .home-trust-strip__inner { grid-template-columns: 1fr; gap: 20px; }
  .home-trust-strip__copy { padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .topic-card-grid, .featured-guides-grid, .all-guides-grid, .guide-levers, .action-plan, .guide-sidebar { grid-template-columns: 1fr; }
  .latest-guide-row { grid-template-columns: 1fr auto; gap: 5px 12px; }
  .latest-guide-row span { grid-column: 1 / -1; }
  .blog-membership-compact .container, .resource-section__header { display: block; }
  .blog-membership-compact .button, .resource-section__header .button { margin-top: 20px; }
  .guide-content { padding: 30px 22px; }
  .guide-hero { padding: 48px 0 40px; }
  .guide-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .resource-row { grid-template-columns: 1fr; }
  .resource-arrow { display: none; }
}



/* ===== V12: clean, fast, straightforward homepage + contact experience ===== */
:root {
  --cream: #f7f6f2;
  --cream-2: #eeece6;
  --navy-950: #081326;
  --navy-900: #0c1b34;
  --navy-800: #182b49;
  --red: #b53a34;
  --red-dark: #922b27;
  --red-light: #f9e8e5;
  --ink: #152137;
  --muted: #667085;
  --line: #e3e1dc;
  --surface-soft: #f7f6f2;
  --shadow-sm: 0 8px 24px rgba(8,19,38,.07);
  --shadow-md: 0 20px 55px rgba(8,19,38,.11);
  --radius: 18px;
  --radius-lg: 26px;
}
body { letter-spacing: -.005em; }
h1,h2,h3,h4 { letter-spacing: -.045em; }
.site-header { background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.button { border-radius: 10px; min-height: 50px; box-shadow: none; }
.button:hover { transform: translateY(-1px); }
.button--primary { box-shadow: none; }
.button--primary:hover { box-shadow: 0 10px 24px rgba(181,58,52,.18); }
.eyebrow { letter-spacing: .12em; }

.home-v12 .announcement, .contact-v12 .announcement { background: var(--navy-950); }
.home-v12 .site-header, .contact-v12 .site-header { position: sticky; }
.home-v12 .header__inner, .contact-v12 .header__inner { min-height: 72px; }
.home-v12 .brand img, .contact-v12 .brand img, .thanks-v12 .brand img { width: 174px; }

.v12-hero { background: var(--cream); padding: 84px 0 76px; border-bottom: 1px solid var(--line); }
.v12-hero__grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr); gap: clamp(46px,7vw,96px); align-items: center; }
.v12-hero__copy { max-width: 720px; }
.v12-hero h1 { font-size: clamp(3.3rem,5.7vw,5.7rem); line-height: .96; margin: 0 0 24px; }
.v12-hero h1 em { color: var(--red); font-style: normal; }
.v12-hero__lead { max-width: 670px; color: #48556a; font-size: clamp(1.05rem,1.8vw,1.24rem); line-height: 1.6; }
.v12-inline-proof { display: flex; gap: 12px 26px; flex-wrap: wrap; margin: 24px 0 16px; }
.v12-inline-proof span { color: #5d687a; font-size: .9rem; }
.v12-inline-proof strong { color: var(--navy-900); font-size: 1.04rem; }
.v12-rate-card { background: #fff; border: 1px solid #dedbd3; border-radius: 20px; padding: 28px; box-shadow: 0 24px 70px rgba(8,19,38,.10); }
.v12-rate-card__top { display: flex; flex-direction: column; gap: 6px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.v12-rate-card__top span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.v12-rate-card__top strong { color: var(--navy-900); font-size: 1rem; }
.v12-rate-route { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 0; color: var(--navy-900); font-weight: 800; }
.v12-rate-route i { color: var(--red); font-style: normal; }
.v12-rate-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 18px; border-radius: 12px; background: #f3f4f6; margin-top: 10px; }
.v12-rate-row span { color: #667085; font-size: .84rem; }
.v12-rate-row strong { color: var(--navy-900); font-size: 1.45rem; }
.v12-rate-row--accent { background: var(--navy-900); }
.v12-rate-row--accent span, .v12-rate-row--accent strong { color: #fff; }
.v12-rate-save { display: flex; justify-content: space-between; align-items: center; padding: 18px 2px 10px; }
.v12-rate-save span { color: #6b7280; font-size: .82rem; }
.v12-rate-save strong { color: var(--red); font-size: 1.16rem; }
.v12-rate-card small { display: block; color: #8a93a0; line-height: 1.5; }

.v12-carriers { background: #fff; border-bottom: 1px solid var(--line); }
.v12-carriers__inner { min-height: 108px; display: grid; grid-template-columns: auto auto 1fr; gap: 34px; align-items: center; }
.v12-carriers__inner > span { color: #7a8492; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; white-space: nowrap; }
.v12-carriers .carrier-brand-row { margin: 0; }
.v12-carriers__inner > p { margin: 0 0 0 auto; max-width: 390px; text-align: right; font-size: .86rem; }

.v12-facts { background: var(--navy-950); color: #fff; padding: 25px 0; }
.v12-facts__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.v12-facts__grid > div { padding: 8px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.v12-facts__grid > div:last-child { border-right: 0; }
.v12-facts__grid strong { display: block; color: #fff; font-size: 1.8rem; line-height: 1.05; letter-spacing: -.04em; }
.v12-facts__grid span { display: block; color: #aebbd0; font-size: .76rem; margin-top: 4px; }

.v12-fit { background: #fff; padding-block: 94px; }
.v12-fit__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.v12-fit-card { min-height: 330px; display: flex; flex-direction: column; padding: 32px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; }
.v12-fit-card > span { color: var(--red); font-weight: 900; font-size: .76rem; letter-spacing: .08em; }
.v12-fit-card h3 { margin: 52px 0 14px; font-size: 1.65rem; }
.v12-fit-card p { margin-bottom: 28px; }
.v12-fit-card a { margin-top: auto; color: var(--navy-900); font-size: .88rem; font-weight: 800; }
.v12-fit-card:hover { border-color: #c7c3bb; transform: translateY(-2px); transition: .2s ease; }

.v12-review { background: var(--navy-950); color: #fff; }
.v12-review__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(48px,7vw,90px); align-items: start; }
.v12-review__copy { padding-top: 18px; }
.v12-review h2 { color: #fff; font-size: clamp(2.5rem,4.2vw,4rem); }
.v12-review__copy > p { color: #b9c5d6; font-size: 1.05rem; }
.v12-checks { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; }
.v12-checks li { color: #e7ecf4; padding-left: 30px; position: relative; }
.v12-checks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #ff8b84; font-weight: 900; }
.v12-mini-example { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; margin-top: 30px; }
.v12-mini-example span { display: block; color: #ff8b84; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.v12-mini-example strong { display: block; margin: 8px 0; color: #fff; font-size: 1.1rem; }
.v12-mini-example p { margin: 0; color: #aebbd0; font-size: .86rem; }
.v12-upload-card { background: #fff; color: var(--ink); border-radius: 20px; }
.v12-upload-card h3 { color: var(--navy-900); }
.v12-upload-card p { color: var(--muted); }

.v12-integrations { padding-block: 84px; background: var(--cream); }
.v12-integration-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.v12-integration-row span { padding: 23px 18px; text-align: center; color: var(--navy-900); font-weight: 800; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v12-integration-row span:nth-child(4n) { border-right: 0; }
.v12-integration-row span:nth-last-child(-n+4) { border-bottom: 0; }

.v12-process { padding-block: 94px; background: #fff; }
.v12-process__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v12-process__grid article { padding: 40px 34px; border-right: 1px solid var(--line); }
.v12-process__grid article:last-child { border-right: 0; }
.v12-process__grid article > span { color: var(--red); font-weight: 900; font-size: .78rem; }
.v12-process__grid h3 { margin: 36px 0 12px; font-size: 1.45rem; }
.v12-process__grid p { margin: 0; }

.v12-pricing { padding-block: 94px; background: var(--cream); }
.v12-pricing__grid { display: grid; grid-template-columns: 1fr .74fr; gap: 80px; align-items: center; }
.v12-pricing h2 { font-size: clamp(2.6rem,4.2vw,4.2rem); margin-bottom: 20px; }
.v12-pricing p { font-size: 1.04rem; max-width: 650px; }
.v12-price-card { padding: 34px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.v12-price-card > span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.v12-price-card > div { display: flex; align-items: baseline; gap: 3px; margin: 16px 0 24px; color: var(--navy-900); }
.v12-price-card sup { font-size: 1.2rem; font-weight: 800; }
.v12-price-card strong { font-size: 4.2rem; letter-spacing: -.07em; line-height: 1; }
.v12-price-card em { font-style: normal; color: #687386; font-weight: 700; }
.v12-price-card ul { padding: 20px 0 20px 20px; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.v12-price-card li { margin: 7px 0; color: #38465a; }
.v12-price-card small { display: block; margin-top: 18px; color: #87909d; line-height: 1.55; }

.v12-faq { padding-block: 94px; }
.v12-bottom-cta { background: var(--red); color: #fff; padding: 64px 0; }
.v12-bottom-cta .container { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.v12-bottom-cta span { font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: #ffd4d1; }
.v12-bottom-cta h2 { color: #fff; margin: 6px 0 8px; font-size: clamp(2.1rem,3.4vw,3.3rem); }
.v12-bottom-cta p { margin: 0; color: #ffe4e2; }
.home-v12 .home-resources { background: #fff; }

/* Contact + partnerships */
.v12-contact-hero { padding: 82px 0 72px; background: var(--cream); border-bottom: 1px solid var(--line); }
.v12-contact-hero h1 { margin: 0 0 18px; font-size: clamp(3rem,5.3vw,5.3rem); }
.v12-contact-hero > .container > p { max-width: 720px; font-size: 1.08rem; }
.v12-contact-quick { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 34px; max-width: 930px; }
.v12-contact-quick a { padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.v12-contact-quick span { display: block; color: #7c8593; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; }
.v12-contact-quick strong { display: block; margin-top: 4px; color: var(--navy-900); font-size: .95rem; overflow-wrap: anywhere; }
.v12-contact-main { background: #fff; }
.v12-contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.v12-contact-grid h2 { font-size: clamp(2.3rem,3.7vw,3.5rem); }
.v12-checks--dark li { color: #465367; }
.v12-form-card { padding: 30px; border-radius: 18px; border: 1px solid var(--line); background: var(--cream); box-shadow: none; }
.v12-form-card label > span { color: #3c485b; }
.v12-form-card input, .v12-form-card select, .v12-form-card textarea { background: #fff; }
.v12-partnerships { background: var(--navy-950); color: #fff; }
.v12-partnership-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 76px; align-items: start; }
.v12-partnership-copy h2 { color: #fff; font-size: clamp(2.5rem,4vw,4rem); }
.v12-partnership-copy > p { color: #bcc7d8; font-size: 1.04rem; }
.v12-partner-points { margin-top: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.v12-partner-points > div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.v12-partner-points strong { color: #fff; }
.v12-partner-points span { color: #aebbd0; font-size: .9rem; }
.v12-partner-note { margin-top: 20px !important; color: #8495ae !important; font-size: .78rem !important; }
.v12-partner-form { background: #fff; color: var(--ink); }
.v12-partner-form h3 { color: var(--navy-900); }

/* Thank-you */
.thanks-v12 { background: var(--cream); }
.v12-thanks { min-height: calc(100vh - 80px); display: grid; place-items: center; padding: 70px 0; }
.v12-thanks-card { max-width: 720px; margin: auto; text-align: center; background: #fff; padding: 54px; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-md); }
.v12-success-mark { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: #e7f5ee; color: #147a50; font-weight: 900; font-size: 1.5rem; }
.v12-thanks-card .eyebrow { justify-content: center; }
.v12-thanks-card h1 { font-size: clamp(2.5rem,5vw,4rem); }
.v12-thanks-card p { font-size: 1.04rem; }
.v12-thanks-card .hero__actions { justify-content: center; }
.v12-thanks-card small { display: block; margin-top: 24px; color: #7b8594; }
.v12-thanks-card small a { color: var(--red); font-weight: 700; }

@media (max-width: 1000px) {
  .v12-hero__grid, .v12-review__grid, .v12-pricing__grid, .v12-contact-grid, .v12-partnership-grid { grid-template-columns: 1fr; gap: 48px; }
  .v12-hero__copy { max-width: 780px; }
  .v12-rate-card { max-width: 620px; }
  .v12-carriers__inner { grid-template-columns: auto 1fr; }
  .v12-carriers__inner > p { grid-column: 1 / -1; margin: -8px 0 22px; text-align: left; max-width: none; }
  .v12-fit__grid, .v12-process__grid { grid-template-columns: 1fr; }
  .v12-fit-card { min-height: 0; }
  .v12-fit-card h3 { margin-top: 30px; }
  .v12-process__grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .v12-process__grid article:last-child { border-bottom: 0; }
  .v12-integration-row { grid-template-columns: repeat(2,1fr); }
  .v12-integration-row span:nth-child(4n) { border-right: 1px solid var(--line); }
  .v12-integration-row span:nth-child(2n) { border-right: 0; }
  .v12-integration-row span:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .v12-integration-row span:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 760px) {
  .v12-hero { padding: 60px 0 54px; }
  .v12-hero h1 { font-size: clamp(3rem,14vw,4.3rem); }
  .v12-inline-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .v12-facts__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .v12-facts__grid > div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .v12-facts__grid > div:nth-child(2n) { border-right: 0; }
  .v12-facts__grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .v12-carriers__inner { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .v12-carriers__inner > p { margin: 4px 0 0; }
  .v12-contact-quick { grid-template-columns: 1fr; }
  .v12-bottom-cta .container { align-items: stretch; flex-direction: column; }
  .v12-bottom-cta .button { width: 100%; }
  .v12-partner-points > div { grid-template-columns: 1fr; gap: 4px; }
  .v12-thanks-card { padding: 38px 24px; }
}


/* ===== V12.4: contact form readability ===== */
.contact-v12 .v12-form-card input,
.contact-v12 .v12-form-card select,
.contact-v12 .v12-form-card textarea {
  color: #0b1832;
  caret-color: #0b1832;
  -webkit-text-fill-color: #0b1832;
  opacity: 1;
}
.contact-v12 .v12-form-card input::placeholder,
.contact-v12 .v12-form-card textarea::placeholder {
  color: #667085;
  opacity: 1;
}
.contact-v12 .v12-form-card input:-webkit-autofill,
.contact-v12 .v12-form-card input:-webkit-autofill:hover,
.contact-v12 .v12-form-card input:-webkit-autofill:focus {
  -webkit-text-fill-color: #0b1832;
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-in-out 0s;
}
