/* ==================== tokens (exact copy of tokens.css) ==================== */
:root {
  --navy: #162e51;
  --navy-d: #0b1b34;
  --blue: #005ea2;
  --blue-2: #1a6fb5;
  --blue-lite: #d9e8f6;
  --blue-fade: #eef4fb;
  --gold: #ffbe2e;
  --red: #b50909;
  --red-fade: #fbeaea;
  --green: #1a7f37;
  --green-fade: #e9f5ec;
  --ink: #12181f;
  --ink-2: #33404e;
  --muted: #5a6673;
  --line: #d6dce4;
  --line-2: #e7ebf1;
  --paper: #f4f7fb;
  --card: #ffffff;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --sh-sm: 0 1px 2px rgba(11, 27, 52, 0.08);
  --sh: 0 2px 4px rgba(11, 27, 52, 0.06), 0 12px 28px rgba(11, 27, 52, 0.08);
  --sh-lg: 0 8px 20px rgba(11, 27, 52, 0.1), 0 30px 60px rgba(11, 27, 52, 0.12);
  --r: 12px;
  --r-sm: 8px;
}

/* ==================== base / reset (shared) ==================== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-wrap: balance;
  margin: 0;
}
p {
  margin: 0;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
svg {
  flex: none;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-checkout .wrap {
  max-width: 1180px;
}

/* ==================== buttons / eyebrow (shared) ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-sm);
  padding: 14px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: #004b80;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-d);
}
.btn-gold:hover {
  background: #f0ad14;
  text-decoration: none;
}
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}
.btn-pay {
  background: linear-gradient(180deg, #1aa049, #128a3c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(18, 138, 60, 0.35);
}
.btn-pay:hover {
  background: linear-gradient(180deg, #178f41, #0f7a34);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(18, 138, 60, 0.42);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.page-landing .eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.page-checkout .eyebrow {
  font-size: 12px;
}

/* ==================== gov utility bar (shared) ==================== */
.util {
  background: var(--navy-d);
  color: #c3d1e4;
  font-size: 12.5px;
}
.util .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 24px;
  min-height: 34px;
}
.util .left {
  display: flex;
  align-items: center;
  gap: 9px;
}
.util .flag {
  width: 16px;
  height: 11px;
  border-radius: 1px;
  background: linear-gradient(180deg, #e8eef6 0 33.3%, #b7c4d6 33.3% 66.6%, #e8eef6 66.6%);
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.util .right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.util a {
  color: #dbe6f4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 720px) {
  .util .left span {
    display: none;
  }
  .util .left::after {
    content: 'Federal UCR compliance filing';
    color: #c3d1e4;
  }
}

/* ==================== header (shared) ==================== */
header.site {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(11, 27, 52, 0.18);
}
.page-landing header.site {
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img.logo {
  height: 54px;
  max-height: 60px;
  width: auto;
  display: block;
}
nav.main {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav.main a {
  color: #dbe6f4;
  font-weight: 600;
  font-size: 15px;
}
nav.main a:hover {
  color: #fff;
  text-decoration: none;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
@media (max-width: 960px) {
  nav.main {
    display: none;
  }
  .header-cta .phone span {
    display: none;
  }
}
@media (max-width: 640px) {
  .util .left span {
    display: none;
  }
  .phone span {
    display: none;
  }
}

/* ==================== secure payment trust block (shared) ==================== */
.secure {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 26px 24px;
  text-align: center;
}
.page-landing .secure {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 26px;
  border-radius: 14px;
}
.secure .shead {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  font-weight: 700;
}
.page-landing .secure .shead {
  font-size: 21px;
}
.secure .shead .lk {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-fade);
  display: grid;
  place-items: center;
  color: var(--green);
}
.page-landing .secure .shead .lk {
  width: 36px;
  height: 36px;
}
.secure .ssub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}
.page-landing .secure .ssub {
  font-size: 14.5px;
  margin-top: 7px;
}
.secure .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.page-landing .secure .badges {
  margin-top: 24px;
}
.secure .badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fbfd;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 210px;
  text-align: left;
  width: auto;
  height: auto;
  color: inherit;
}
.page-landing .secure .badge {
  min-width: 220px;
  padding: 15px 20px;
}
.secure .badge .bic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
}
.page-landing .secure .badge .bic {
  width: 46px;
  height: 46px;
}
.secure .badge.g .bic {
  background: linear-gradient(160deg, #1a9e46, #12712f);
}
.secure .badge.b .bic {
  background: linear-gradient(160deg, #1a6fb5, #004b80);
}
.secure .badge.p .bic {
  background: linear-gradient(160deg, #635bff, #463cf0);
}
.secure .badge b {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--navy);
}
.secure .badge span {
  font-size: 12px;
  color: var(--muted);
}
.secure .cardsbig {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.page-landing .secure .cardsbig {
  margin-top: 24px;
  padding-top: 22px;
}
.secure .cardsbig .lab {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-right: 4px;
}
.secure .cc {
  width: 62px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  box-shadow: var(--sh-sm);
}
.page-landing .secure .cc {
  width: 64px;
  height: 42px;
}
.secure .cc.visa { color: #1a1f71; }
.secure .cc.mc { color: #eb001b; }
.secure .cc.amex { color: #006fcf; }
.secure .cc.disc { color: #e6772e; }
.secure .cc .mcdots { display: flex; }
.secure .cc .mcdots i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
}
.page-landing .secure .cc .mcdots i {
  width: 16px;
  height: 16px;
}
.secure .cc .mcdots i:first-child { background: #eb001b; }
.secure .cc .mcdots i:last-child {
  background: #f79e1b;
  margin-left: -7px;
  mix-blend-mode: multiply;
}

/* ==================== footer (shared base) ==================== */
footer.site {
  background: var(--navy-d);
  color: #a9bad2;
  font-size: 14px;
}
.page-checkout footer.site {
  color: #8296b3;
  font-size: 12.5px;
  margin-top: 0;
}
footer.site .top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding: 52px 24px 34px;
  max-width: 1160px;
  margin: 0 auto;
}
footer.site h5 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dbe6f4;
  margin: 0 0 14px;
}
footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer.site a {
  color: #a9bad2;
}
footer.site a:hover {
  color: #fff;
}
footer.site .brand .txt b {
  color: #fff;
}
footer.site .brand .txt small {
  color: #8ba0bd;
}
footer.site .discl {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 24px;
  max-width: 900px;
  margin: 0 auto;
  font-size: 12.5px;
  color: #8296b3;
  line-height: 1.65;
  text-align: center;
}
.page-checkout footer.site .discl {
  border-top: none;
}
footer.site .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  text-align: center;
  font-size: 12.5px;
  color: #8296b3;
}
.page-checkout footer.site .copy {
  padding: 15px 24px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ==================================================================== */
/* ==================== LANDING PAGE ONLY ==================== */
/* ==================================================================== */

.page-landing .hero {
  position: relative;
  background: #0b1b34;
  color: #fff;
  overflow: hidden;
}
.page-landing .hero .bgimg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-landing .hero .bgimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-landing .hero .bgimg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 20, 40, 0.96) 0%,
    rgba(12, 28, 56, 0.92) 36%,
    rgba(12, 28, 56, 0.62) 66%,
    rgba(12, 28, 56, 0.34) 100%
  );
}
.page-landing .hero .wrap {
  position: relative;
  z-index: 1;
  padding: 60px 24px 72px;
}
.page-landing .hero-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-landing .hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 190, 46, 0.14);
  border: 1px solid rgba(255, 190, 46, 0.4);
  color: #ffdf96;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 30px;
}
.page-landing .hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  color: #fff;
  margin: 18px 0 14px;
  letter-spacing: -0.015em;
}
.page-landing .hero h1 .u {
  color: var(--gold);
}
.page-landing .hero .sub {
  font-size: 18px;
  color: #d4e1f2;
  max-width: 56ch;
  margin: 0 auto;
}
.page-landing .hero .lookup {
  margin-top: 30px;
  width: 100%;
  max-width: 600px;
  text-align: left;
}
.page-landing .hero .assure {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  justify-content: center;
}
.page-landing .hero .assure span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #cfe0f2;
  font-weight: 600;
}
.page-landing .hero .assure svg {
  color: var(--gold);
}

/* lookup card */
.page-landing .lookup {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--sh-lg);
  overflow: hidden;
  color: var(--ink);
}
.page-landing .lookup .lh {
  background: var(--blue-fade);
  border-bottom: 1px solid var(--line-2);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-landing .lookup .lh svg {
  color: var(--blue);
}
.page-landing .lookup .lh b {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
}
.page-landing .lookup .lb {
  padding: 22px;
}
.page-landing .lookup label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.page-landing .lookup .inrow {
  display: flex;
  gap: 10px;
}
.page-landing .lookup input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 15px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--ink);
  min-width: 0;
}
.page-landing .lookup input::placeholder {
  color: #9aa5b2;
}
.page-landing .lookup .hintline {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.page-landing .lookup .samples {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.page-landing .lookup .samples b {
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
}

/* lookup result */
.page-landing .result {
  margin-top: 16px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  display: none;
  animation: fade 0.35s ease;
}
.page-landing .result.show {
  display: block;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.page-landing .result .co {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.page-landing .result .co .badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: none;
  color: #fff;
}
.page-landing .result .co b {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.page-landing .result .co small {
  color: var(--muted);
  font-size: 12.5px;
}
.page-landing .result .rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.page-landing .rrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  font-size: 13.5px;
}
.page-landing .rrow .l {
  display: flex;
  align-items: center;
  gap: 9px;
}
.page-landing .rrow .ic {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.page-landing .rrow.pend .ic {
  background: var(--red);
}
.page-landing .rrow.done .ic {
  background: var(--green);
}
.page-landing .rrow .amt {
  font-family: var(--mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.page-landing .rrow.done .amt {
  color: var(--green);
  font-weight: 700;
}
.page-landing .result .pendbar {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--red-fade);
  border: 1px solid #edc4c4;
  border-radius: var(--r-sm);
  padding: 11px 13px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #7a1414;
}
.page-landing .result .pendbar b {
  color: var(--red);
}
.page-landing .result .allok {
  background: var(--green-fade);
  border: 1px solid #bfe3c8;
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: #12611f;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  gap: 9px;
  align-items: center;
}

/* trust strip */
.page-landing .trust {
  background: var(--navy);
  color: #fff;
}
.page-landing .trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 24px;
}
.page-landing .stat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.page-landing .stat:last-child {
  border-right: none;
}
.page-landing .stat b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.page-landing .stat span {
  font-size: 13px;
  color: #c3d1e4;
}
@media (max-width: 720px) {
  .page-landing .trust .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .page-landing .stat:nth-child(2) {
    border-right: none;
  }
}

/* section scaffold */
.page-landing section.blk {
  padding: 76px 0;
}
.page-landing section.blk.alt {
  background: var(--card);
}
.page-landing .sec-head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}
.page-landing .sec-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--navy);
  margin: 14px 0 12px;
}
.page-landing .sec-head p {
  color: var(--muted);
  font-size: 17px;
}
.page-landing .sec-head .eyebrow {
  margin: 0 auto;
}

/* how it works */
.page-landing .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.page-landing .stepc {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--sh-sm);
  position: relative;
}
.page-landing section.alt .stepc {
  background: var(--paper);
}
.page-landing .stepc .num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--serif);
  font-size: 34px;
  color: var(--blue-lite);
  font-weight: 700;
}
.page-landing .stepc .ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-fade);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.page-landing .stepc h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.page-landing .stepc p {
  color: var(--muted);
  font-size: 15px;
}

/* filing types */
.page-landing .types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.page-landing .typec {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}
.page-landing section.alt .typec {
  background: var(--paper);
}
.page-landing .typec .top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.page-landing .typec .top .ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.page-landing .typec.ucr .ico {
  background: var(--blue-fade);
  color: var(--blue);
}
.page-landing .typec.oob .ico {
  background: var(--red-fade);
  color: var(--red);
}
.page-landing .typec.bien .ico {
  background: #fff5e0;
  color: #a9741a;
}
.page-landing .typec h3 {
  font-size: 19px;
  color: var(--navy);
}
.page-landing .typec p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}
.page-landing .typec .foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-landing .typec .foot .from {
  font-size: 12.5px;
  color: var(--muted);
}
.page-landing .typec .foot .from b {
  display: block;
  font-family: var(--mono);
  font-size: 19px;
  color: var(--navy);
  font-weight: 800;
}
.page-landing .typec .foot a {
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* why / features */
.page-landing .feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 26px;
}
.page-landing .feat {
  display: flex;
  gap: 14px;
}
.page-landing .feat .ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: none;
}
.page-landing .feat h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}
.page-landing .feat p {
  color: var(--muted);
  font-size: 14px;
}

/* testimonials */
.page-landing .quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.page-landing .quote {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}
.page-landing section.alt .quote {
  background: var(--paper);
}
.page-landing .quote .stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-landing .quote p {
  font-size: 15px;
  color: var(--ink-2);
  font-style: italic;
  flex: 1;
}
.page-landing .quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.page-landing .quote .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--sans);
  flex: none;
}
.page-landing .quote .who b {
  display: block;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--navy);
}
.page-landing .quote .who small {
  color: var(--muted);
  font-size: 12.5px;
}

/* FAQ */
.page-landing .faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-landing details.qa {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.page-landing section.alt details.qa {
  background: var(--paper);
}
.page-landing details.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.page-landing details.qa summary::-webkit-details-marker {
  display: none;
}
.page-landing details.qa summary .pm {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--blue);
  transition: transform 0.2s;
}
.page-landing details.qa[open] summary .pm {
  transform: rotate(45deg);
}
.page-landing details.qa .a {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* image split band */
.page-landing .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
}
.page-landing .split .media {
  position: relative;
  min-height: 340px;
  background: #0b1b34;
}
.page-landing .split .media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-landing .split .body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-landing .split .body h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy);
  margin: 12px 0 12px;
}
.page-landing .split .body p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}
.page-landing .split .ticks {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.page-landing .split .ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.page-landing .split .ticks svg {
  color: var(--green);
  margin-top: 2px;
  flex: none;
}
@media (max-width: 820px) {
  .page-landing .split {
    grid-template-columns: 1fr;
  }
  .page-landing .split .media {
    min-height: 240px;
  }
}

/* CTA band */
.page-landing .cta-band {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-landing .cta-band .bgimg {
  position: absolute;
  inset: 0;
}
.page-landing .cta-band .bgimg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(11, 27, 52, 0.93),
    rgba(16, 35, 66, 0.88) 55%,
    rgba(29, 63, 112, 0.82)
  );
  z-index: 1;
}
.page-landing .cta-band .bgimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-landing .cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 28px);
  z-index: 1;
}
.page-landing .cta-band .wrap {
  position: relative;
  text-align: center;
  padding: 70px 24px;
  z-index: 2;
}
.page-landing .cta-band h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  color: #fff;
  margin-bottom: 14px;
}
.page-landing .cta-band p {
  color: #cfe0f2;
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 26px;
}
.page-landing .cta-band .cbtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .page-landing .hero .wrap {
    padding: 44px 20px 54px;
  }
  .page-landing .steps,
  .page-landing .types,
  .page-landing .feats,
  .page-landing .quotes {
    grid-template-columns: 1fr;
  }
  .page-landing footer.site .top {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

/* ==================================================================== */
/* ==================== CHECKOUT PAGE ONLY ==================== */
/* ==================================================================== */

/* checkout sub-header + stepper */
.page-checkout .cohead {
  background: linear-gradient(120deg, var(--navy-d), var(--navy) 70%);
  color: #fff;
}
.page-checkout .cohead .wrap {
  padding: 26px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-checkout .cohead h1 {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
}
.page-checkout .cohead h1 .u {
  color: var(--gold);
}
.page-checkout .cohead .sub {
  color: #c3d5ec;
  font-size: 14px;
  margin-top: 4px;
}
.page-checkout .stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-checkout .stepper .st {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9fb6d4;
  font-size: 13px;
  font-weight: 600;
}
.page-checkout .stepper .st .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: #cdddf0;
}
.page-checkout .stepper .st.on {
  color: #fff;
}
.page-checkout .stepper .st.on .n {
  background: var(--gold);
  color: var(--navy-d);
}
.page-checkout .stepper .sep {
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 720px) {
  .page-checkout .stepper {
    display: none;
  }
}

/* layout */
.page-checkout main {
  padding: 28px 0 60px;
}
.page-checkout .grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 940px) {
  .page-checkout .grid {
    grid-template-columns: 1fr;
  }
}
.page-checkout .col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page-checkout .panel {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
}
.page-checkout .panel .h {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fbfcfe;
}
.page-checkout .panel .h .ic {
  color: var(--blue);
}
.page-checkout .panel .h b {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
}
.page-checkout .panel .bd {
  padding: 18px;
}
.page-checkout .col.side {
  position: sticky;
  top: 16px;
}

/* business data */
.page-checkout .biz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.page-checkout .biz .f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.page-checkout .biz .f.full {
  grid-column: 1 / -1;
}
.page-checkout .biz .k {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.page-checkout .biz .v {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.page-checkout .biz .v.dot {
  color: var(--blue);
}
.page-checkout .biz .v.ok {
  color: var(--green);
}
.page-checkout .biz .due {
  display: inline-block;
  margin-top: 5px;
  background: var(--blue-fade);
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  padding: 3px 9px;
  border-radius: 6px;
}

/* status rail */
.page-checkout .statuses {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.page-checkout .st-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.page-checkout .st-card .ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.page-checkout .st-card.pend .ic {
  background: var(--red);
}
.page-checkout .st-card.done .ic {
  background: var(--green);
}
.page-checkout .st-card.pend {
  background: #fdf6f6;
}
.page-checkout .st-card.done {
  background: var(--green-fade);
}
.page-checkout .st-card b {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.page-checkout .st-card span {
  font-size: 12.5px;
  color: var(--muted);
}
.page-checkout .st-card.done span {
  color: var(--green);
  font-weight: 600;
}

/* cart */
.page-checkout .yr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1.5px solid var(--blue-lite);
  background: #f6fafe;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
}
.page-checkout .yr.off {
  opacity: 0.5;
  background: #f4f6f8;
  border-color: var(--line-2);
}
.page-checkout .yr.done {
  border-color: #bfe3c8;
  background: var(--green-fade);
}
.page-checkout .yr .cb {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  color: #fff;
}
.page-checkout .yr.on .cb {
  background: var(--blue);
}
.page-checkout .yr.off .cb {
  border-color: var(--muted);
}
.page-checkout .yr.done .cb {
  background: var(--green);
  border-color: var(--green);
}
.page-checkout .yr .meta {
  flex: 1;
  min-width: 0;
}
.page-checkout .yr .meta b {
  font-size: 15px;
  color: var(--navy);
}
.page-checkout .yr .meta .tag {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  margin-left: 6px;
}
.page-checkout .yr .meta .tag.cur {
  color: var(--green);
}
.page-checkout .yr select {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 8px;
  background: #fff;
  color: var(--ink);
  max-width: 160px;
}
.page-checkout .yr .price {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.page-checkout .yr.done .price {
  color: var(--green);
}
.page-checkout .yr .filedtag {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}

.page-checkout .oobline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1.5px solid #edc9c9;
  background: #fdf6f6;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}
.page-checkout .oobline b {
  color: var(--navy);
  font-size: 15px;
}
.page-checkout .oobline .price {
  font-family: var(--mono);
  font-weight: 800;
  color: var(--red);
}

.page-checkout .summary {
  margin-top: 6px;
  border-top: 1px solid var(--line-2);
  padding-top: 12px;
}
.page-checkout .sumrow {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  font-variant-numeric: tabular-nums;
}
.page-checkout .sumrow.total {
  border-top: 1.5px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
}
.page-checkout .sumrow.total b {
  color: var(--blue);
  font-family: var(--mono);
}
.page-checkout .sumrow.total.paid b {
  color: var(--green);
}

/* form */
.page-checkout .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.page-checkout .fields .fld {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-checkout .fields .fld.full {
  grid-column: 1 / -1;
}
.page-checkout .fields label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-2);
}
.page-checkout .fields label .req {
  color: var(--red);
}
.page-checkout .fields input,
.page-checkout .fields select {
  border: 1.5px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--ink);
  width: 100%;
}
.page-checkout .fields input[readonly] {
  background: #f3f5f8;
  color: var(--muted);
}

/* payment */
.page-checkout .pay {
  margin-top: 16px;
  background: #f6fbf7;
  border: 1px solid #cdeccf;
  border-radius: var(--r-sm);
  padding: 14px;
}
.page-checkout .pay .ph {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 11px;
}
.page-checkout .pay .ph .stripe {
  color: #635bff;
  font-weight: 800;
  font-family: var(--sans);
}
.page-checkout .pay .cardrow {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.page-checkout .pay .cardrow input {
  border: 1.5px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  font-size: 15px;
  font-family: var(--sans);
}
.page-checkout .pay .cardrow input:first-child {
  flex: 1;
}
.page-checkout .pay .cardrow input:last-child {
  width: 110px;
}
.page-checkout .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 15px;
  font-size: 12.5px;
  color: var(--muted);
  cursor: pointer;
}
.page-checkout .consent .cbx {
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 5px;
  flex: none;
  display: grid;
  place-items: center;
  color: #fff;
  background: #fff;
  margin-top: 1px;
}
.page-checkout .consent.on .cbx {
  background: var(--blue);
}
.page-checkout .consent b {
  color: var(--ink-2);
}
.page-checkout .process {
  width: 100%;
  margin-top: 16px;
  font-size: 17px;
  padding: 16px;
  font-weight: 800;
  letter-spacing: 0.015em;
}
.page-checkout .paidnote {
  margin-top: 14px;
  background: var(--green-fade);
  border: 1px solid #bfe3c8;
  border-radius: var(--r-sm);
  padding: 14px;
  color: #12611f;
  font-size: 14px;
  display: none;
  gap: 10px;
  align-items: flex-start;
}
.page-checkout .paidnote.show {
  display: flex;
}

/* overlay / modal */
.page-checkout .overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 27, 52, 0.55);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.page-checkout .overlay.show {
  display: flex;
  animation: fade 0.3s ease;
}
.page-checkout .modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sh-lg);
  max-width: 460px;
  width: 100%;
  padding: 34px 30px;
  text-align: center;
}
.page-checkout .modal .spin {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 5px solid var(--blue-lite);
  border-top-color: var(--blue);
  margin: 0 auto 18px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.page-checkout .modal .tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-fade);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.page-checkout .modal h3 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 10px;
}
.page-checkout .modal p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 8px;
}
.page-checkout .modal .small {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
}
.page-checkout .modal .btn {
  margin-top: 18px;
  width: 100%;
}
