/* ==================== 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, #0f2b48) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 12px rgba(11, 27, 52, 0.18);
  position: sticky;
  top: 0;
  z-index: 500;
}
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;
  width: 100%;
  margin-top: 50px;
}
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;
}
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;
}
/* Split-Screen Hero Layout */
.page-landing .hero-split {
  padding: 50px 0 70px;
  text-align: left;
}
.page-landing .split-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.page-landing .hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-landing .hero-left .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-left h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  color: #fff;
  margin: 16px 0 12px;
  letter-spacing: -0.015em;
  text-align: left;
  line-height: 1.15;
}
.page-landing .hero-left h1 .u {
  color: var(--gold);
}
.page-landing .hero-left .sub {
  font-size: 17px;
  color: #d4e1f2;
  margin: 0 0 22px 0;
  text-align: left;
  max-width: 100%;
}
.page-landing .hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-landing .hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2eefc;
  font-size: 14.5px;
}
.page-landing .hero-features b {
  color: #ffffff;
}
.page-landing .hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 22px;
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.page-landing .hero-trust-bar .t-item {
  display: flex;
  flex-direction: column;
}
.page-landing .hero-trust-bar .t-item b {
  font-size: 18px;
  color: var(--gold);
  font-family: var(--serif);
  line-height: 1.1;
}
.page-landing .hero-trust-bar .t-item span {
  font-size: 11.5px;
  color: #b0c4de;
  font-weight: 600;
}
.page-landing .hero-trust-bar .t-sep {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* Compliance Card Dock (Right Column) */
.page-landing .lookup-dock {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  color: var(--ink);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.page-landing .lookup-dock:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}
.page-landing .lookup-dock .lh {
  background: linear-gradient(135deg, #162e51 0%, #0b1b34 100%);
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-landing .lookup-dock .lh-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffbe2e;
  background: rgba(255, 190, 46, 0.15);
  border: 1px solid rgba(255, 190, 46, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.page-landing .lookup-dock .lh b {
  font-family: var(--sans);
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
}
.page-landing .lookup-dock .lh-desc {
  font-size: 13px;
  color: #b0c4de;
  margin: 0;
}
.page-landing .lookup-dock .lb {
  padding: 26px;
}
.page-landing .lookup-dock label {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: #334155;
  margin-bottom: 8px;
}
.page-landing .lookup-dock .input-wrap {
  position: relative;
  width: 100%;
}
.page-landing .lookup-dock .input-wrap .dot-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  transition: color 0.2s ease;
}
.page-landing .lookup-dock input {
  width: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  transition: all 0.2s ease;
}
.page-landing .lookup-dock input:focus {
  outline: none;
  background: #ffffff;
  border-color: #162e51;
  box-shadow: 0 0 0 4px rgba(22, 46, 81, 0.15);
}
.page-landing .lookup-dock input:focus + .dot-icon,
.page-landing .lookup-dock .input-wrap:focus-within .dot-icon {
  color: #162e51;
}
.page-landing .lookup-dock .btn-lookup-dock {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 16.5px;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffbe2e 0%, #e6a817 100%);
  color: #0b1b34;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(255, 190, 46, 0.35);
  transition: all 0.2s ease;
}
.page-landing .lookup-dock .btn-lookup-dock:hover {
  background: linear-gradient(135deg, #ffd05b 0%, #ffbe2e 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 190, 46, 0.5);
}
.page-landing .lookup-dock .dock-assure {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}
.page-landing .lookup-dock .dock-assure span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}
.page-landing .lookup-dock .dock-assure svg {
  color: #10b981;
}

@media (max-width: 991px) {
  .page-landing .split-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-landing .hero-left {
    align-items: center;
    text-align: center;
  }
  .page-landing .hero-left h1,
  .page-landing .hero-left .sub {
    text-align: center;
  }
  .page-landing .hero-trust-bar {
    justify-content: center;
  }
}

/* lookup card v2 */
.page-landing .lookup-v2 {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 48px -12px rgba(11, 27, 52, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-landing .lookup-v2:hover {
  box-shadow: 0 28px 56px -12px rgba(11, 27, 52, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.page-landing .lookup-v2 .lh {
  background: linear-gradient(135deg, #edf4fc 0%, #e2eeec 100%);
  border-bottom: 1px solid var(--line-2);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.page-landing .lookup-v2 .lh-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(0, 94, 162, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.page-landing .lookup-v2 .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.page-landing .lookup-v2 .lh b {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
}
.page-landing .lookup-v2 .lb {
  padding: 24px;
}
.page-landing .lookup-v2 label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 9px;
}
.page-landing .lookup-v2 .inrow {
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-landing .lookup-v2 .input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.page-landing .lookup-v2 .input-wrap .dot-icon {
  position: absolute;
  left: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.2s ease;
}
.page-landing .lookup-v2 input {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--ink);
  background: #f8fafc;
  transition: all 0.2s ease;
}
.page-landing .lookup-v2 input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 94, 162, 0.15);
}
.page-landing .lookup-v2 input:focus + .dot-icon,
.page-landing .lookup-v2 input:focus ~ .dot-icon,
.page-landing .lookup-v2 .input-wrap:focus-within .dot-icon {
  color: var(--blue);
}
.page-landing .lookup-v2 .btn-lookup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, #005ea2 0%, #004273 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 94, 162, 0.3);
  transition: all 0.2s ease;
}
.page-landing .lookup-v2 .btn-lookup:hover {
  background: linear-gradient(135deg, #00487c 0%, #003258 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 94, 162, 0.4);
}
.page-landing .lookup-v2 .quick-assure {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
}
.page-landing .lookup-v2 .quick-assure span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.page-landing .lookup-v2 .quick-assure svg {
  color: var(--green);
}
@media (max-width: 576px) {
  .page-landing .lookup-v2 .inrow {
    flex-direction: column;
  }
  .page-landing .lookup-v2 .btn-lookup {
    width: 100%;
    justify-content: center;
  }
}

/* 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: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
}
.page-checkout .cohead .wrap {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.page-checkout .cohead h1 {
  font-size: clamp(22px, 2.5vw, 28px);
  color: #0f172a;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.page-checkout .cohead h1 .u {
  color: #005ea2;
}
.page-checkout .cohead .sub {
  color: #64748b;
  font-size: 13.5px;
  margin-top: 2px;
}
.page-checkout .stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-checkout .stepper .st {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}
.page-checkout .stepper .st .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: #64748b;
}
.page-checkout .stepper .st.on {
  color: #0f172a;
}
.page-checkout .stepper .st.on .n {
  background: #005ea2;
  color: #ffffff;
}
.page-checkout .stepper .sep {
  width: 22px;
  height: 1px;
  background: #cbd5e1;
}
@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;
}
/* Compact Clean Modern Carrier Header Dock */
.page-checkout .carrier-dock-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  margin-bottom: 22px;
  overflow: hidden;
}
.page-checkout .cd-main {
  padding: 20px 24px;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #f1f5f9;
}
.page-checkout .cd-carrier-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-checkout .cd-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #005ea2;
  display: grid;
  place-items: center;
  flex: none;
}
.page-checkout .cd-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-checkout .cd-name {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  font-family: var(--sans);
  letter-spacing: -0.01em;
}
.page-checkout .cd-dot-badge {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  background: #f1f5f9;
  color: #005ea2;
  border: 1px solid #cbd5e1;
  padding: 3px 10px;
  border-radius: 6px;
}
.page-checkout .cd-status-badge {
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.page-checkout .cd-status-badge.active {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.page-checkout .cd-status-badge.inactive {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.page-checkout .cd-sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #64748b;
  margin-top: 4px;
  flex-wrap: wrap;
}
.page-checkout .cd-sub-row .dot-sep {
  color: #cbd5e1;
}

.page-checkout .cd-status-bar {
  background: #f8fafc;
  padding: 12px 24px;
}
.page-checkout .cd-status-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-checkout .cd-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-weight: 600;
}
.page-checkout .cd-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.page-checkout .cd-pill.pend {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
.page-checkout .cd-pill.pend .dot {
  background: #ef4444;
}
.page-checkout .cd-pill.done {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}
.page-checkout .cd-pill.done .dot {
  background: #10b981;
}

.page-checkout .panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.page-checkout .panel .h {
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0f172a;
}
.page-checkout .panel .h .ic {
  color: #005ea2;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e0f2fe;
  display: grid;
  place-items: center;
}
.page-checkout .panel .h b {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.page-checkout .panel .bd {
  padding: 24px;
}
.page-checkout .col.side {
  position: sticky;
  top: 16px;
}

/* business data */
.page-checkout .biz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.page-checkout .biz .f {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
}
.page-checkout .biz .f:hover {
  border-color: #cbd5e1;
}
.page-checkout .biz .f.full {
  grid-column: 1 / -1;
}
.page-checkout .biz .k {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.page-checkout .biz .v {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.page-checkout .biz .v.dot {
  color: #005ea2;
  font-family: var(--mono);
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  width: fit-content;
}
.page-checkout .biz .v.ok {
  color: #15803d;
  background: #dcfce7;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
  font-size: 13.5px;
}
.page-checkout .biz .due {
  display: inline-block;
  margin-top: 4px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  font-weight: 700;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 20px;
}

/* status rail */
.page-checkout .statuses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-checkout .st-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.page-checkout .st-card.pend {
  background: #fff8f8;
  border: 1px solid #fee2e2;
  border-left: 4px solid #ef4444;
}
.page-checkout .st-card.done {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #10b981;
}
.page-checkout .st-card .l-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-checkout .st-card .ic {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex: none;
}
.page-checkout .st-card.pend .ic {
  background: #ef4444;
}
.page-checkout .st-card.done .ic {
  background: #10b981;
}
.page-checkout .st-card b {
  display: block;
  font-size: 14.5px;
  color: #0f172a;
  font-weight: 700;
}
.page-checkout .st-card .st-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.page-checkout .st-card.pend .st-badge {
  background: #fee2e2;
  color: #991b1b;
}
.page-checkout .st-card.done .st-badge {
  background: #dcfce7;
  color: #15803d;
}

/* cart */
.page-checkout .yr {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}
.page-checkout .yr.on {
  border-color: #005ea2;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 94, 162, 0.12);
}
.page-checkout .yr.off {
  opacity: 0.55;
  background: #f8fafc;
  border-color: #e2e8f0;
}
.page-checkout .yr.done {
  border-color: #86efac;
  background: #f0fdf4;
}
.page-checkout .yr .cb {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 2px solid #94a3b8;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  color: #fff;
  transition: all 0.2s ease;
}
.page-checkout .yr.on .cb {
  background: #005ea2;
  border-color: #005ea2;
}
.page-checkout .yr.off .cb {
  border-color: #cbd5e1;
}
.page-checkout .yr.done .cb {
  background: #10b981;
  border-color: #10b981;
}
.page-checkout .yr .meta {
  flex: 1;
  min-width: 0;
}
.page-checkout .yr .meta b {
  font-size: 15.5px;
  color: #0f172a;
  font-weight: 700;
}
.page-checkout .yr .meta .tag {
  font-size: 11px;
  color: #005ea2;
  background: #e0f2fe;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-left: 6px;
}
.page-checkout .yr .meta .tag.cur {
  color: #15803d;
  background: #dcfce7;
}
.page-checkout .yr select {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 7px 10px;
  background: #f8fafc;
  color: #1e293b;
  width: 100%;
  display: block;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.15s;
}
.page-checkout .yr select:not([disabled]):focus {
  outline: none;
  border-color: #005ea2;
  background: #fff;
}
.page-checkout .yr select[disabled] {
  cursor: not-allowed;
  opacity: 0.65;
}
.page-checkout .yr .price {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  color: #0f172a;
  white-space: nowrap;
}
.page-checkout .yr.done .price {
  color: #10b981;
}
.page-checkout .yr .filedtag {
  font-family: var(--sans);
  font-size: 13px;
  color: #15803d;
  font-weight: 700;
  background: #dcfce7;
  padding: 4px 12px;
  border-radius: 20px;
  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%;
}
