:root {
  --font-sans:
    "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-mono:
    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  --ink: #08122e;
  --muted: #43566b;
  --dim: #6d7d8d;
  --line: #d8e2ec;
  --line-strong: #bccbda;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --panel: #ffffff;
  --panel-strong: #f7faff;
  --deep: #07263b;
  --blue: #d8ecff;
  --blue-strong: #1769a6;
  --blue-hover: #0d5488;
  --primary: #0075d5;
  --primary-hover: #005fae;
  --green: #0a6f54;
  --amber: #b45309;
  --shadow: 0 18px 42px rgba(8, 36, 58, 0.1);
  --shadow-sm: 0 8px 22px rgba(8, 36, 58, 0.07);
  --motion: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 8px;
  --pill: 999px;
  --max: 1240px;
  --live-award-height: 45px;
  --live-nav-height: 76px;
  --live-header-height: calc(var(--live-award-height) + var(--live-nav-height));
}
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #faf9ff;
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}

/* Live shabaas.com theme and above-the-fold composition. */
.live-home-shell {
  background: #faf9ff;
  color: #000;
  font-family: var(--font-sans);
  min-height: 720px;
  padding-top: var(--live-header-height);
}

.live-award {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 101;
  min-height: var(--live-award-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: #0075d5;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.live-award a,
.site-chrome .live-award a {
  color: #ffffff !important;
  text-decoration: none;
}

.live-award a:hover,
.site-chrome .live-award a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.live-header {
  position: fixed;
  top: var(--live-award-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  transition: background-color 0.2s ease;
}

body.live-header-scrolled .live-header {
  background: #ffffff;
}

.live-nav {
  width: min(100% - 52px, 1140px);
  height: var(--live-nav-height);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-brand img {
  width: 270px;
  height: auto;
}

.live-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.live-links a {
  color: #0b0925;
  font-size: 17px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.live-links a:hover,
.live-links a:focus-visible {
  color: var(--primary);
}

.live-links span {
  display: inline-block;
  margin-left: 3px;
  font-size: 20px;
}

.live-dropdown {
  position: relative;
}

.live-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0b0925;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.35s ease;
}

.live-dropdown:hover .live-dropdown-btn,
.live-dropdown:focus-within .live-dropdown-btn {
  color: var(--primary);
}

.live-dropdown-btn span {
  display: inline-block;
  transition: transform 0.75s ease;
}

.live-dropdown:hover .live-dropdown-btn span,
.live-dropdown:focus-within .live-dropdown-btn span {
  transform: rotate(180deg);
}

.live-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 200px;
  padding: 8px 0;
  border: 1px solid #d1dceb;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.12);
  z-index: 40;
}

/* Keep hover when moving from label into the panel */
.live-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
}

.live-dropdown:hover .live-dropdown-panel,
.live-dropdown:focus-within .live-dropdown-panel {
  display: block;
}

.live-dropdown-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 18px;
  color: #0b0925;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.35s ease;
}

.live-dropdown-panel a:hover,
.live-dropdown-panel a:focus-visible {
  color: var(--primary);
}

.live-dropdown-panel a::after {
  content: "›";
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.45s ease;
}

.live-dropdown-panel a:hover::after,
.live-dropdown-panel a:focus-visible::after {
  transform: translateX(6px);
}

.live-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #d1dceb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.live-menu:hover,
.live-menu:focus-visible {
  border-color: var(--primary);
  background: #edf7ff;
  outline: none;
}

.live-menu-icon {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.live-menu-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #0b0925;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease,
    top 0.3s ease;
}

.live-menu-bar:nth-child(1) {
  top: 0;
}

.live-menu-bar:nth-child(2) {
  top: 6px;
}

.live-menu-bar:nth-child(3) {
  top: 12px;
}

.live-menu.is-open .live-menu-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.live-menu.is-open .live-menu-bar:nth-child(2) {
  opacity: 0;
}

.live-menu.is-open .live-menu-bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.live-menu-backdrop {
  display: none;
}

/* Base Desktop Styles */
.sp-hero {
  width: min(100% - 52px, 1200px);
  min-height: 557px;
  margin: 0 auto;
  padding: 38px 0 0;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 46px;
  align-items: start;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: 40px;
}

.sp-hero__copy h1 {
  margin: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: clamp(48px, 4.25vw, 56px);
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: -0.025em;
}

.sp-hero__benefits {
  list-style: none;
  margin: 24px 0 36px;
  padding: 0 0 0 12px;
}

.sp-hero__benefits li {
  position: relative;
  margin: 15px 0;
  padding-left: 38px;
  color: #666472;
  font-size: 22px;
  line-height: 1.35;
}

.sp-hero__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0b1630;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(26, 25, 44, 0.14);
}

.sp-hero__actions {
  display: flex;
  gap: 14px;
  padding-left: 10px;
}

.sp-btn {
  min-width: 191px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #0075d5;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.sp-btn--primary {
  background: #0068b5;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 138, 251, 0.22);
}

.sp-btn--secondary {
  background: #fff;
  color: #00639f;
}

.sp-btn--primary:hover {
  background: #0075d5;
  border-color: #0075d5;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 138, 251, 0.3);
}

.sp-btn--secondary:hover {
  background: #edf7ff;
  transform: translateY(-2px);
}

.sp-hero__proof {
  margin: 14px 0 0 10px;
  color: #565462;
  font-size: 19px;
}


.sp-hero__visual {
  position: relative;
  min-height: 500px;
  padding-top: 98px;
}

.sp-hero__badge {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 28px;
  width: 266px;
  padding: 10px 20px 12px;
  border: 1px solid #181818;
  border-radius: 10px;
  background: #faf9ff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  animation: spFloat 3.5s ease-in-out infinite;
  will-change: transform;
}

.sp-hero__badge span {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.sp-hero__badge img {
  width: 218px;
}

.sp-hero__image {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  animation: spEntrance 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  will-change: transform, opacity;
}

@keyframes spFloat {
  0%, 100% {
    transform: translateY(11px);
  }
  50% {
    transform: translateY(3px); 
  }
}

@keyframes spEntrance {
  0% {
    opacity: 0;
    transform: translateY(120px); 
  }
 
  100% {
    opacity: 1;
    transform: translateY(0px);    
  }
}
.sp-brand-strip {
  overflow: hidden;
  padding: 34px 0 42px;
  background: #fff;
  text-align: center;
}

.sp-brand-strip h2 {
  margin: 0 0 28px;
  color: #0f0840;
  font: 700 20px/1.2 var(--font-sans);
}

.sp-brand-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 64px;
  padding-inline: 40px;
  animation: bankFlow 24s linear infinite;
  will-change: transform;
}

.sp-brand-track img {
  width: auto;
  height: 40px;
  max-width: 150px;
  object-fit: contain;
}

.sp-intro,
.sp-methods-index {
  padding: 110px 0;
  background: #faf9ff;
  color: var(--ink);
  font-family: var(--font-sans);
}

.sp-intro h2,
.sp-methods-index h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.sp-eyebrow {
  margin: 0 0 14px;
  color: #0a6f54;
  font: 700 12px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sp-method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.sp-method-grid a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  background: var(--soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sp-method-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.sp-method-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.sp-method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes bankFlow {
  to {
    transform: translateX(calc(-50% - 32px));
  }
}

.site-chrome {
  background: #faf9ff;
  padding-top: var(--live-header-height);
}

.site-chrome .live-header {
  position: fixed;
  top: var(--live-award-height);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.live-hero {
  width: min(100% - 52px, 1200px);
  min-height: 557px;
  margin: 0 auto;
  padding: 38px 0 0;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 46px;
  align-items: start;
  overflow: hidden;
}

.live-hero-copy h1 {
  margin: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: clamp(48px, 4.25vw, 56px);
  font-weight: 600;
  line-height: 1.43;
  letter-spacing: -0.025em;
}

.live-benefits {
  list-style: none;
  margin: 24px 0 36px;
  padding: 0 0 0 12px;
}

.live-benefits li {
  position: relative;
  margin: 15px 0;
  padding-left: 38px;
  color: #666472;
  font-size: 22px;
  line-height: 1.35;
}

.live-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0b1630;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(26, 25, 44, 0.14);
}

.live-cta-row {
  display: flex;
  gap: 14px;
  padding-left: 10px;
}

.live-primary,
.live-secondary {
  min-width: 191px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid #0075d5;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.live-primary {
  background: #0075d5;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 138, 251, 0.22);
}

.live-secondary {
  background: #fff;
  color: #0075d5;
}

.live-primary:hover {
  background: #0075d5;
  border-color: #0075d5;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 138, 251, 0.3);
}

.live-secondary:hover {
  background: #edf7ff;
  transform: translateY(-2px);
}

.entity-eyebrow {
  margin: 0 0 14px;
  color: #0a6f54;
  font: 700 12px/1.4 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entity-intro,
.payment-methods-index {
  padding: 110px 0;
  background: #faf9ff;
  color: var(--ink);
  font-family: var(--font-sans);
}

.entity-intro h2,
.payment-methods-index h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.04em;
}

.entity-intro p:not(.entity-eyebrow),
.advantage-lede {
  max-width: 100%;
  color: #43566b;
  font-size: 18px;
  line-height: 1.7;
}

.advantage-lede {
  margin-top: -4px;
}

.entity-method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.entity-method-grid a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  background: var(--soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.entity-method-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.entity-method-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.entity-method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.live-proof {
  margin: 14px 0 0 10px;
  color: #565462;
  font-size: 19px;
}

.live-hero-visual {
  position: relative;
  min-height: 500px;
  padding-top: 98px;
}

.live-featured {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 28px;
  width: 266px;
  padding: 10px 20px 12px;
  border: 1px solid #181818;
  border-radius: 10px;
  background: #faf9ff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.live-featured span {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
}

.live-featured img {
  width: 218px;
}

.live-product {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
}

.live-bank-strip {
  overflow: hidden;
  padding: 34px 0 42px;
  background: #fff;
  text-align: center;
}

.live-bank-strip h2 {
  margin: 0 0 28px;
  color: #0f0840;
  font: 700 20px/1.2 var(--font-sans);
}

.live-bank-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 64px;
  padding-inline: 40px;
  animation: bankFlow 24s linear infinite;
  animation-duration: 24s !important;
  animation-iteration-count: infinite !important;
  will-change: transform;
}

.live-bank-track img {
  width: auto;
  height: 40px;
  max-width: 150px;
  object-fit: contain;
}

@keyframes bankFlow {
  to {
    transform: translateX(calc(-50% - 32px));
  }
}

.live-home-shell ~ .topbar,
.live-home-shell ~ header {
  display: none;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.container-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* Page Title Styling */
.page-title {
  width: 100%;
  margin: 40px 0 8px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.topbar {
  background: var(--deep);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(188, 203, 218, 0.82);
  backdrop-filter: blur(14px);
}

nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  white-space: nowrap;
}

.brand-logo {
  width: 214px;
  height: auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--deep);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown:hover .nav-dropbtn,
.nav-dropdown:focus-within .nav-dropbtn {
  color: var(--primary);
}

.nav-dropbtn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropbtn::after,
.nav-dropdown:focus-within .nav-dropbtn::after {
  transform: translateY(1px) rotate(180deg);
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 251, 255, 0.98);
  box-shadow: var(--shadow);
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  color: #0b0925;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-dropdown-content a::after {
  content: "›";
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a:focus-visible {
  color: var(--primary);
}

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

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 138, 251, 0.24);
}

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

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-blue {
  background: var(--deep);
  color: #fff;
  box-shadow: 0 10px 22px rgba(8, 36, 58, 0.18);
}

.btn-accent {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 138, 251, 0.24);
}

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

section {
  padding: 96px 0;
}

[hidden] {
  display: none !important;
}

.live-prepricing {
  margin-top: 90px;
}

.live-prepricing,
.legacy-content,
footer {
  background: #faf9ff;
}

.legacy-content > section,
.section-soft {
  background: #faf9ff;
}

.legacy-content .pricing-card,
.legacy-content .card,
.legacy-content .faq-item {
  background: rgba(255, 255, 255, 0.78);
  border-color: #dedbea;
  box-shadow: 0 16px 45px rgba(48, 38, 85, 0.07);
}

.live-container {
  width: min(100% - 52px, 1180px);
  margin-inline: auto;
}

.live-section {
  padding: 5px 0;
  color: #101020;
  font-family: var(--font-sans);
}

.live-section-head {
  max-width: 820px;
  margin-bottom: 54px;
  text-align: center;
}

.live-section-head h2,
.live-feature-row h2,
.live-checkout-copy h2 {
  margin: 0 0 18px;
  color: #05050a;
  font: 600 clamp(36px, 4vw, 54px)/1.08 var(--font-sans);
  letter-spacing: -0.035em;
}

.live-section-head p,
.live-feature-row p,
.live-checkout-copy p {
  color: #686675;
  font-size: 19px;
  line-height: 1.65;
}

.live-alternative {
  padding: 80px 0 125px;
  background: linear-gradient(90deg, rgb(0, 138, 251), rgb(121, 58, 255));
}

.live-alternative .live-container {
  width: min(100% - 52px, 1214px);
}

.live-alternative .live-section-head {
  max-width: none;
  margin-bottom: 38px;
}

.live-alternative .live-section-head h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 28.8px;
  font-weight: 400;
  line-height: 51.2px;
  letter-spacing: 0;
}

.live-alternative .live-section-head p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}

.live-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.live-info-card {
  width: 100%;
  min-height: 338px;
  display: flex;
  flex-direction: column;
  padding: 55px 35px 40px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: rgba(14, 17, 44, 0.1) 0 12px 34px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.live-info-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(14, 17, 44, 0.2) 0 18px 42px;
}

.live-card-title {
  min-height: 86px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.live-card-title img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
}

.live-info-card h3 {
  margin: 0;
  color: #0f0840;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
}

.live-info-card p {
  margin: 22px 0 0;
  color: #54506f;
  font-size: 18px;
  line-height: 34px;
}

.live-calculator-section {
  background: #faf9ff;
  margin-top: 100px;
}

.live-calculator-section .live-section-head {
  margin-bottom: 42px;
}

.live-calculator-section .live-section-head h2 {
  font-size: 32px;
  color: #333;
}

.live-calculator-section .live-section-head h3 {
  margin: 0;
  color: #333;
  font-size: 22px;
  font-weight: 600;
}

/* Savings calculator page only — keep AEO H1 without changing shared calculator styles */
.savings-calculator-section .live-section-head h1 {
  margin: 0 0 18px;
  font: 600 32px/1.08 var(--font-sans);
  letter-spacing: -0.035em;
  color: #333;
}

.savings-calculator-section .live-section-head h2 {
  margin: 0 0 12px 0 !important;
  color: #08122e !important;
  font-size: clamp(26px, 3.5vw, 36px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
}

.live-exact-calculator {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: stretch;
}

.live-calc-controls {
  padding: 42px;
  border: 1px solid #e3dfef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(41, 29, 87, 0.08);
}

.live-calc-field + .live-calc-field {
  margin-top: 35px;
}

.live-calc-field label {
  display: block;
  margin-bottom: 12px;
  color: #333;
  font-size: 17px;
  font-weight: 600;
}

.live-number-period,
.live-money-input,
.live-fee-inputs,
.live-fee-inputs > div {
  display: flex;
  align-items: center;
}

.live-number-period input {
  border-radius: 10px 0 0 10px;
}

.live-number-period select {
  width: 150px;
  border-left: 0;
  border-radius: 0 10px 10px 0;
}

.live-calc-controls input[type="number"],
.live-calc-controls select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid #d9d5e4;
  background: #fff;
  color: #201b35;
  font: 600 17px var(--font-sans);
}

.live-money-input,
.live-fee-inputs > div {
  height: 54px;
  border: 1px solid #d9d5e4;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.live-money-input > span,
.live-fee-inputs span,
.live-fee-inputs small {
  padding: 0 14px;
  color: #54506f;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.live-money-input input,
.live-fee-inputs input {
  border: 0 !important;
  height: 52px !important;
}

.live-fee-inputs {
  gap: 14px;
}

.live-fee-inputs > div {
  flex: 1;
}

.live-fee-inputs small {
  font-size: 12px;
}

.live-range {
  width: 100%;
  height: 22px;
  margin: 18px 0 1px;
  padding: 0;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.live-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #0075d5 0 var(--range-progress, 0%),
    #eceaf0 var(--range-progress, 0%) 100%
  );
}

.live-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -8px;
  appearance: none;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0075d5;
  box-shadow: 0 1px 5px rgba(0, 138, 251, 0.42);
}

.live-range::-moz-range-track {
  width: 100%;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    #0075d5 0 var(--range-progress, 0%),
    #eceaf0 var(--range-progress, 0%) 100%
  );
}

.live-range::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: #0075d5;
}

.live-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #0075d5;
  box-shadow: 0 1px 5px rgba(0, 138, 251, 0.42);
}

.live-range-labels {
  display: flex;
  justify-content: space-between;
  color: #76717e;
  font-size: 13px;
}

.live-savings-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  border: 1px solid #dcecff;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f1f8ff);
  color: #0f0840;
  box-shadow: 0 22px 55px rgba(0, 138, 251, 0.13);
}

.live-savings-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  color: #0f0840;
  font-size: 26px;
}

.live-savings-value {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-right: 24px;
  color: #0075d5;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.live-savings-card > p {
  position: relative;
  z-index: 2;
  min-height: 58px;
  margin: 20px 0 25px;
  color: #000;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.live-celebration-message.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.live-savings-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-details-button,
.live-savings-cta {
  position: relative;
  z-index: 2;
  width: 190px;
  min-width: 0 !important;
  height: 46px;
  min-height: 46px !important;
  padding: 12px 22px !important;
  border-radius: 999px !important;
  font-family: var(--font-mono) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-details-button {
  align-self: flex-start;
  border: 1px solid #0075d5;
  background: #fff;
  color: #0075d5;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.live-details-button:hover {
  background: #edf7ff;
  transform: translateY(-2px);
}

.live-savings-details {
  position: relative;
  z-index: 2;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.live-savings-details.open {
  display: grid;
}

.live-savings-details > div {
  padding: 14px;
  border: 1px solid #d7e8f8;
  border-radius: 9px;
  background: #fff;
}

.live-savings-details span {
  display: block;
  color: #666273;
  font-size: 12px;
}

.live-savings-card .live-primary {
  margin-top: 0;
  background: #0075d5;
  color: #fff;
}

.live-confetti {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 9px;
  height: 15px;
  border-radius: 2px;
  background: var(--confetti-color);
  opacity: 0;
  animation: confettiBurst 1.45s cubic-bezier(0.12, 0.72, 0.25, 1) forwards;
  animation-duration: 1.45s !important;
  animation-iteration-count: 1 !important;
  animation-delay: var(--confetti-delay);
}

@keyframes confettiBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(
        calc(-50% + var(--confetti-x)),
        calc(-50% + var(--confetti-y))
      )
      scale(1) rotate(var(--confetti-r));
  }
}

.live-checkout-section {
  background: #f1edff;
}

.live-checkout-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(8, 36, 58, 0.14);
}

.live-checkout-inline .checkout-card {
  margin: auto;
}

.live-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #00639f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  min-width: 0;
}

.live-quote {
  margin: 0;
  padding: 34px;
  min-width: 0;
  overflow-wrap: anywhere;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(48, 38, 85, 0.08);
}

.live-quote > span {
  color: #0075d5;
  font-size: 54px;
  line-height: 0.5;
}

.live-quote p {
  min-height: 120px;
  color: #555260;
  font-size: 18px;
  line-height: 1.55;
}

.live-quote cite {
  color: #111;
  font-style: normal;
  font-weight: 600;
}

.live-feature-stack {
  padding-top: 20px;
  padding-bottom: 50px;
}

.live-feature-row {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 60px;
  align-items: center;
}

#pay-by-link,
#pay-by-bank,
#pay-by-card {
  scroll-margin-top: 24px;
}

.live-feature-row.reverse .live-feature-art {
  order: 2;
}

.live-feature-art {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 32px 36px;
  border: 1px solid #dfd9f4;
  border-radius: 32px;
  background: linear-gradient(145deg, #f2eeff, #fff);
  box-shadow: 0 26px 65px rgba(55, 37, 104, 0.12);
}

.live-feature-art img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(12, 17, 39, 0.16);
}

.live-feature-art .recurring-payments-image {
  width: min(100%, 520px);
  max-width: 520px;
  height: auto !important;
  object-fit: contain;
}

.live-feature-art span {
  color: #777283;
  font-size: 17px;
}

.live-feature-art strong {
  color: #0b0920;
  font-size: 30px;
}

.live-feature-art i {
  width: fit-content;
  padding: 13px 20px;
  border-radius: 10px;
  background: #050505;
  color: #fff;
  font-style: normal;
}

.review-art strong {
  color: #0b0920;
  letter-spacing: 0.12em;
}

.live-product {
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.scroll-reveal {
  opacity: 1;
  transform: none;
}

.scroll-reveal.reveal-ready {
  opacity: 0;
  transform: translateY(48px) scale(0.985);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.scroll-reveal.reveal-ready.revealed {
  opacity: 1;
  transform: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.56s var(--motion),
    transform 0.56s var(--motion);
}

.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-soft {
  background: #ffffff;
  border-top: 1px solid rgba(216, 226, 236, 0.85);
  border-bottom: 1px solid rgba(216, 226, 236, 0.85);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.flush {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--blue-strong);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 5.4vw, 82px);
  letter-spacing: -0.02em;
  max-width: 760px;
}

.hero h1 {
  margin: 0;
}

h2 {
  font-size: clamp(31px, 4vw, 50px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero {
  min-height: calc(100vh - 116px);
  display: block;
  padding: 58px 0 0;
  background:
    linear-gradient(115deg, #fff 0 42%, rgba(216, 236, 255, 0.92) 42% 100%),
    radial-gradient(
      circle at 88% 16%,
      rgba(255, 200, 0, 0.18),
      transparent 22%
    ),
    #ffffff;
  border-bottom: 1px solid rgba(188, 203, 218, 0.74);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
  max-width: 1180px;
  text-align: left;
}

.hero-content {
  min-width: 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 22px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-copy {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.48;
  color: var(--muted);
}

.hero-method-line {
  display: block;
  max-width: 660px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.method-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: max-content;
  margin-top: 10px;
  min-width: 0;
  min-height: 38px;
  padding: 7px 14px;
  border-radius: var(--pill);
  background: var(--deep);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(7, 38, 59, 0.18);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.method-cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--primary);
  animation: cursorBlink 1s steps(2, start) infinite;
}

.method-pill.is-typing .method-cursor {
  animation: none;
}

@keyframes cursorBlink {
  50% {
    opacity: 0.22;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.centered {
  justify-content: center;
}

.hero .cta-row {
  justify-content: flex-start;
  margin-top: 30px;
}

.hero .btn {
  min-width: 196px;
  min-height: 54px;
  font-size: 13px;
}

.hero .btn-secondary {
  background: #fff;
  color: var(--deep);
  border-color: var(--line-strong);
  box-shadow: none;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 680px;
  margin-top: 20px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(7, 38, 59, 0.12);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.trust-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.checkout-preview {
  min-width: 0;
}

.checkout-card {
  position: relative;
  max-width: 430px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(188, 203, 218, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(7, 38, 59, 0.16);
}

.checkout-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: var(--primary);
}

.checkout-topline,
.checkout-merchant,
.recommended-pay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-topline span,
.checkout-merchant span,
.recommended-pay span,
.checkout-card p {
  color: var(--dim);
  font-size: 13px;
  font-weight: 700;
}

.checkout-topline strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.checkout-merchant {
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  padding: 18px 0;
}

.checkout-merchant strong {
  color: var(--ink);
  font-size: 16px;
}

.recommended-pay {
  padding: 15px;
  border: 1px solid rgba(7, 38, 59, 0.14);
  border-radius: 12px;
  background: #f7fbff;
}

.recommended-pay strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.recommended-pay small {
  padding: 6px 8px;
  border-radius: var(--pill);
  background: var(--primary);
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.payment-options-label {
  display: block;
  margin-top: 16px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-options span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.checkout-pay {
  width: 100%;
  margin-top: 18px;
}

.checkout-card p {
  margin-top: 13px;
  text-align: center;
}

.bank-strip {
  grid-column: 1 / -1;
  width: 100vw;
  margin: 54px calc(50% - 50vw) 0;
  padding: 22px 0 24px;
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  text-align: center;
}

.bank-strip h2 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.payment-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 0 24px;
}

.payment-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bank-marquee {
  display: flex;
  width: max-content;
  gap: 42px;
  align-items: center;
  animation: bankMarquee 24s linear infinite;
}

.bank-marquee img {
  height: 28px;
  width: auto;
  opacity: 0.68;
  filter: grayscale(100%) brightness(0) invert(1);
}

@keyframes bankMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.who-section {
  position: relative;
  padding: 100px 0 116px;
  background: #ffffff;
  overflow: hidden;
}

.who-section::before {
  content: "";
  position: absolute;
  inset: 34px 40px auto auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(159, 207, 255, 0.45);
  border-radius: 8px;
  transform: rotate(10deg);
  pointer-events: none;
}

.who-head {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 46px;
  position: relative;
  z-index: 1;
}

.who-head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(23, 105, 166, 0.24);
  border-radius: var(--pill);
  background: #eef7ff;
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.who-head h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.who-head p {
  max-width: 480px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 600;
}

.who-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.who-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: rgba(14, 17, 44, 0.1) 0 12px 34px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.who-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 3px;
  border-radius: var(--pill) var(--pill) 0 0;
  background: currentColor;
  opacity: 0.22;
  transform: scaleX(0.24);
  transform-origin: left;
  transition:
    transform 0.24s var(--motion),
    opacity 0.24s var(--motion);
}

.who-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(14, 17, 44, 0.2) 0 18px 42px;
}

.who-card:hover::after {
  opacity: 0.5;
  transform: scaleX(1);
}

.who-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 478px;
  background: linear-gradient(135deg, rgb(0, 138, 251), rgb(121, 58, 255));
  color: #fff;
  border-color: transparent;
}

.who-card-featured::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.who-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.who-title h3 {
  color: inherit;
  font-size: clamp(22px, 1.8vw, 29px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.who-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.who-card-featured .who-kicker,
.who-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.who-card-featured .who-title h3 {
  max-width: 320px;
  font-size: clamp(31px, 3vw, 43px);
}

.who-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: currentColor;
}

.who-icon.blue,
.who-icon.magenta,
.who-icon.purple,
.who-icon.green,
.who-icon.gold,
.who-icon.coral {
  color: var(--blue-strong);
}

.who-card-featured .who-icon {
  color: #fff;
}

.who-card p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: -0.02em;
}

.who-card.who-card-featured p {
  color: #fff;
}

.trust-strip {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

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

.trust-item {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  color: var(--ink);
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.cards-3,
.cards-4,
.pricing-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  gap: 0;
  position: relative;
}

.how-steps::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--line-strong);
}

.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 0 0 34px;
}

.how-step:last-child {
  padding-bottom: 0;
}

.step-dot {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--pill);
  background: var(--primary);
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 138, 251, 0.28);
}

.step-copy h3 {
  margin-bottom: 8px;
}

.step-copy p {
  max-width: 520px;
}

.dashboard-preview {
  max-width: 500px;
  width: 100%;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-strong);
}

.dashboard-top strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.dashboard-top span {
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
}

.status-badge {
  padding: 7px 10px;
  border-radius: var(--pill);
  background: var(--primary);
  color: var(--deep);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.dashboard-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.dash-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.dash-row strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}

.dash-row span {
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
}

.dash-amount {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.dashboard-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-box {
  padding: 14px;
  border-radius: 8px;
  background: #f0f6ff;
  border: 1px solid #d8e7fb;
}

.metric-box strong {
  display: block;
  color: var(--blue-strong);
  font-size: 22px;
  line-height: 1;
}

.metric-box span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s var(--motion),
    box-shadow 0.22s var(--motion),
    border-color 0.22s var(--motion);
}

.card:hover,
.method-card:hover,
.pricing-card:hover,
.quote:hover,
.faq-item:hover,
.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 105, 166, 0.28);
  box-shadow: 0 18px 38px rgba(8, 36, 58, 0.08);
}

.card-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--deep);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 10px;
}

.card p + p {
  margin-top: 12px;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
  color: #1e3a8a;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.22s var(--motion),
    box-shadow 0.22s var(--motion),
    border-color 0.22s var(--motion);
}

.method-card.recommended {
  border-color: var(--blue-strong);
  box-shadow:
    0 0 0 3px rgba(159, 207, 255, 0.28),
    var(--shadow-sm);
}

.method-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  border-radius: var(--pill);
  background: var(--deep);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.method-card:not(.recommended) .method-label {
  background: transparent;
  border: 1px solid var(--blue-strong);
  color: var(--blue-strong);
}

.calculator {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.scenario-tabs button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.scenario-tabs button.active {
  background: var(--deep);
  color: #fff;
  border-color: var(--deep);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  font-weight: 800;
}

.result-panel {
  min-height: 100%;
  padding: 28px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

.result-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.result-value {
  margin: 12px 0;
  font-family: var(--font-sans);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.result-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.mini-stat {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.mini-stat strong {
  display: block;
  color: #fff;
  font-size: 22px;
}

.disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.disclaimer.on-dark {
  color: rgba(255, 255, 255, 0.66);
}

.pricing-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.pricing-card.primary {
  border: 2px solid var(--blue-strong);
  box-shadow: var(--shadow);
}

.price {
  margin: 16px 0 8px;
  font-family: var(--font-sans);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 18px;
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
}

.quote {
  position: relative;
  min-height: 190px;
}

.reviews-shell {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
}

.review-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

.review-arrow:hover {
  border-color: var(--blue-strong);
  color: var(--blue-strong);
  transform: translateY(-1px);
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.reviews-track .quote {
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 220px;
}

.quote p {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.quote footer {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-a {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.open .faq-a {
  display: block;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 138, 251, 0.28);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(0, 138, 251, 0.35);
  outline-offset: 3px;
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 12px 16px 16px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -4px 12px rgba(8, 18, 46, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.mobile-sticky.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-sticky .btn {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
}

.ui-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.ui-checkout-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 0;
}

.ui-checkout-content {
  max-width: 100%;
}

.ui-kicker {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0075d5;
  margin-bottom: 12px;
}

.ui-checkout-content h2 {
  margin: 0 0 18px;
  color: #05050a;
  font: 600 clamp(32px, 5vw, 48px)/1.1 var(--font-sans, sans-serif);
  letter-spacing: -0.035em;
}

.ui-checkout-content p {
  color: #686675;
  font-size: 18px;
  line-height: 1.6;
}

.ui-checkout-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* The Live Interactive Mockup Card */
.ui-preview-card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #dedbea;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 45px rgba(48, 38, 85, 0.07);
  box-sizing: border-box;
}

.ui-card-topline,
.ui-card-merchant {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.ui-card-topline span,
.ui-card-merchant span {
  font-size: 14px;
  color: #686675;
}

.ui-card-topline strong {
  font-size: 20px;
  color: #05050a;
  font-weight: 700;
}

.ui-card-merchant strong {
  font-size: 13px;
  color: #0075d5;
}

.ui-recommended-badge {
  background: #f0f7ff;
  border-left: 4px solid #0075d5;
  padding: 12px 16px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ui-recommended-badge span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #0075d5;
}

.ui-recommended-badge strong {
  font-size: 16px;
  color: #05050a;
}

.ui-recommended-badge small {
  background: #0075d5;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

/* Secondary Alternatives Configuration */
.ui-options-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9a98a6;
  margin-bottom: 10px;
}

.ui-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.ui-options-grid span {
  background: #fdfdff;
  border: 1px solid #e6e5ed;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  color: #3f3d4d;
}

.ui-pay-button {
  display: block;
  text-align: center;
  background: #0075d5;
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.ui-pay-button:hover {
  background: #0077d6;
}

.ui-confirmation-text {
  text-align: center;
  font-size: 12px;
  color: #9a98a6;
  margin: 10px 0 0;
}

/* ==========================================
   IMPROVED RESPONSIVE BREAKPOINTS
   ========================================== */

/* Large tablets / small desktops */
@media (max-width: 1100px) {
  .sp-method-grid,
  .entity-method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .live-card-grid {
    gap: 28px;
  }

  .live-feature-row {
    gap: 50px;
  }
}

/* Tablets & below (max-width: 991px) */
@media (max-width: 991px) {
  .sp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding: 24px 20px;
  }

  .sp-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-hero__visual {
    min-height: auto;
    padding-top: 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
    width: 100%;
  }

  .sp-hero__badge {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    text-align: center;
  }

  .sp-hero__badge span {
    font-size: 14px;
  }

  .sp-hero__badge img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
  }

  .sp-hero__image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .sp-intro,
  .sp-methods-index {
    padding: 60px 20px;
  }

  .sp-method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .live-hero {
    width: min(100% - 32px, 650px);
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .live-hero-copy h1 {
    font-size: clamp(36px, 8vw, 48px);
    line-height: 1.25;
  }

  .live-hero-visual {
    min-height: auto;
    padding-top: 0;
  }

  .live-featured {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px;
  }

  .live-product {
    margin: 0 auto;
  }
}

/* Tablets (max-width: 900px) */
@media (max-width: 900px) {
  :root {
    --live-nav-height: 64px;
  }

  .live-header,
  .site-chrome .live-header {
    position: fixed;
    top: var(--live-award-height);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
  }

  .live-nav {
    height: var(--live-nav-height);
    width: min(100% - 32px, 1140px);
    position: relative;
    z-index: 51;
  }

  .live-brand img {
    width: min(65vw, 210px);
  }

  .live-menu {
    display: inline-flex;
  }

  body.live-menu-open {
    overflow: hidden;
  }

  .live-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(11, 9, 37, 0.42);
    z-index: 49;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .live-menu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .live-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    margin: 0;
    padding: 96px 24px 32px;
    gap: 4px;
    border: 0;
    border-left: 1px solid #d1dceb;
    border-radius: 0;
    background: #fff;
    box-shadow: -10px 0 40px rgba(16, 35, 63, 0.16);
    z-index: 50;
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.35s ease;
    overflow-y: auto;
    pointer-events: none;
  }

  .live-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .live-links > a,
  .live-links .live-dropdown-btn {
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid #eef1f6;
  }

  .live-links .live-dropdown {
    border-bottom: 1px solid #eef1f6;
  }

  .live-links .live-dropdown-btn {
    width: 100%;
    justify-content: space-between;
  }

  .live-links .live-dropdown-panel {
    display: none;
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 12px 16px;
    min-width: 0;
  }

  .live-links .live-dropdown:hover .live-dropdown-panel,
  .live-links .live-dropdown:focus-within .live-dropdown-panel {
    display: none;
  }

  .live-links .live-dropdown.mobile-open .live-dropdown-panel {
    display: block;
  }

  .live-card-grid,
  .live-testimonials,
  .live-checkout-layout,
  .live-feature-row,
  .live-exact-calculator,
  .live-checkout-inline {
    grid-template-columns: 1fr;
  }

  .sp-btn,
  .live-primary,
  .live-secondary,
  .btn,
  .btn-primary,
  .btn-secondary {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center;
    box-sizing: border-box !important;
  }

  .live-cta-row,
  .sp-hero__actions,
  .marketing-cta-row {
    flex-direction: column !important;
    width: 100% !important;
  }

  .live-section {
    padding: 48px 0 !important;
  }

  .live-feature-stack {
    padding-top: 16px !important;
  }

  .live-feature-row {
    min-height: auto !important;
    gap: 28px !important;
    padding: 24px 0 !important;
  }

  .live-feature-row.reverse .live-feature-art {
    order: 0 !important;
  }

  .live-feature-art {
    min-height: auto !important;
    padding: 32px 28px !important;
    gap: 14px !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 40px rgba(55, 37, 104, 0.08) !important;
  }

  .live-feature-art img {
    max-width: 240px !important;
    margin: 0 auto !important;
  }

  .live-feature-art span {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .live-feature-art strong {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  .live-feature-art i {
    padding: 10px 16px !important;
    font-size: 14px !important;
  }

  .live-kicker {
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
  }

  .live-feature-row h2 {
    font-size: 26px !important;
    line-height: 1.28 !important;
    margin-top: 6px !important;
    margin-bottom: 12px !important;
  }

  .live-feature-row p {
    font-size: 16px !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
  }

  .live-feature-row br {
    display: none !important;
  }

  .live-feature-row .live-secondary {
    margin-top: 16px !important;
  }

  .live-bank-track {
    gap: 42px;
  }

  .live-bank-track img {
    height: 32px;
  }

  .live-checkout-layout {
    gap: 50px;
  }

  .entity-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links {
    position: fixed;
    top: 118px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-dropdown {
    display: block;
    height: auto;
  }

  .nav-dropbtn {
    height: auto;
    padding: 0;
  }

  .nav-dropdown-content {
    position: static;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 8px 0 0 16px;
  }

  .nav-dropdown:hover .nav-dropdown-content,
  .nav-dropdown:focus-within .nav-dropdown-content {
    display: flex;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .how-layout,
  .calculator,
  .split,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    justify-self: center;
    max-width: 560px;
  }

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .who-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .who-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 330px;
  }

  .who-card {
    padding: 34px 30px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .hero h1,
  .hero-copy,
  .hero-method-line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .cta-row,
  .trust-badges {
    justify-content: center;
  }

  .checkout-card {
    margin: 0 auto;
  }

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

  .cards-3,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .ui-checkout-layout {
    flex-direction: column;
    gap: 40px;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .sp-hero__copy h1 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.25;
    letter-spacing: -0.015em;
  }

  .sp-hero__benefits {
    margin: 20px 0 28px;
    padding-left: 0;
    width: 100%;
  }

  .sp-hero__benefits li {
    font-size: 16px;
    line-height: 1.45;
    padding-left: 36px;
    margin: 12px 0;
  }

  .sp-hero__benefits li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
    top: 2px;
  }

  .sp-hero__actions {
    width: 100%;
    padding-left: 0;
    gap: 10px;
  }

  .sp-hero__proof {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
  }

  .sp-intro h2,
  .sp-methods-index h2 {
    font-size: 28px;
  }

  .sp-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-bank-strip {
    padding: 28px 0 32px;
  }

  .live-bank-strip h2 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-inline: 16px;
  }

  .live-bank-track {
    gap: 44px;
    padding-inline: 20px;
    animation-duration: 18s !important;
  }

  .live-bank-track img {
    height: 32px;
    max-width: 120px;
  }

  .live-benefits li {
    font-size: 18px;
  }

  .live-cta-row {
    flex-direction: column;
    padding-left: 0;
  }

  .live-primary,
  .live-secondary {
    width: 100%;
  }

  .live-proof {
    margin-left: 0;
    font-size: 16px;
  }

  .live-featured {
    right: 0;
    width: 230px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  section {
    padding: 58px 0;
  }
}

/* Small phones (max-width: 560px) */
@media (max-width: 560px) {
  .live-award {
    font-size: 14px;
    padding: 6px 12px;
  }

  .live-benefits li {
    font-size: 17px;
  }

  .live-cta-row {
    flex-direction: column;
    padding-left: 0;
  }

  .live-primary,
  .live-secondary {
    width: 100%;
  }

  .live-proof {
    margin-left: 0;
    font-size: 15px;
  }

  .live-featured {
    right: 0;
    width: 100%;
    max-width: 240px;
  }
}

/* Extra small phones (max-width: 520px) */
@media (max-width: 520px) {
  .sp-hero {
    padding: 0;
    padding-bottom: 40px;
    padding-top: 1%;
  }

  .sp-hero__actions {
    flex-direction: column;
  }

  .sp-btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    min-height: 50px;
  }

  .sp-method-grid {
    grid-template-columns: 1fr;
  }

  .sp-brand-strip {
    padding: 24px 0 30px;
  }

  .sp-brand-strip h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .sp-brand-track {
    gap: 36px;
  }

  .sp-brand-track img {
    height: 28px;
  }

  .live-section,
  .payment-methods-index,
  .live-stories,
  .live-alternative {
    padding: 32px 0 !important;
  }

  .live-section-head h2,
  .payment-methods-index h2,
  .ui-checkout-content h2 {
    font-size: 23px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 8px !important;
  }

  .live-section-head h3 {
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    color: #4a475a !important;
  }

  .live-section-head p,
  .advantage-lede,
  .ui-checkout-content p {
    font-size: 14px !important;
    font-weight: normal;
    line-height: 1.5 !important;
  }

  .live-card-title h3,
  .who-title h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }

  .who-kicker,
  .live-kicker,
  .ui-kicker {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
  }

  .live-info-card p,
  .who-card p,
  .live-quote p {
    font-size: 14px !important;
    line-height: 1.48 !important;
  }

  .live-savings-card h3 {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }

  .live-savings-value {
    font-size: clamp(32px, 8vw, 42px) !important;
    line-height: 1.1 !important;
    white-space: normal;
  }

  .live-savings-card > p {
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .live-fee-inputs {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .live-fee-inputs > div {
    width: 100% !important;
  }

  .live-savings-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .live-details-button,
  .live-savings-cta,
  .ui-pay-button {
    width: 100% !important;
    max-width: none !important;
    height: 48px !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
  }

  .live-savings-details {
    grid-template-columns: 1fr !important;
  }

  .live-calculator-section {
    margin-top: 24px;
    padding: 0 !important;
  }

  .live-calculator-section .live-section-head h2 {
    font-size: 20px;
    font-weight: bold;
  }

  .live-calculator-section .live-section-head h3 {
    font-size: 14px;
    font-weight: normal;
  }

  .savings-calculator-section .live-section-head h1 {
    font-size: 20px !important;
    font-weight: bold !important;
    margin-bottom: 8px !important;
  }

  .savings-calculator-section .live-section-head h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    letter-spacing: normal !important;
    line-height: 1.3 !important;
  }

  .live-section {
    padding-top: 33px !important;
    margin-bottom: 0;
  }

  .live-feature-row {
    gap: 16px !important;
  }

  .live-feature-art {
    border-radius: 20px !important;
  }

  .live-feature-art img {
    max-width: 200px !important;
  }

  .live-feature-art span {
    font-size: 14px !important;
  }

  .live-feature-art strong {
    font-size: 19px !important;
    line-height: 1.32 !important;
  }

  .live-feature-row h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
  }

  .live-feature-row p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .live-savings-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .live-details-button,
  .live-savings-cta,
  .live-feature-row .live-secondary {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    text-align: center !important;
    margin-top: 14px !important;
    font-size: 13px !important;
  }

  .live-calc-controls {
    padding: 24px 18px;
  }

  .live-savings-card {
    padding: 28px 20px;
  }

  .live-info-card {
    padding: 32px 22px 28px;
    min-height: auto;
  }

  .live-card-title {
    min-height: auto;
  }

  .live-info-card h3 {
    font-size: 20px;
    line-height: 1.3;
  }

  .live-info-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .live-quote {
    padding: 24px;
  }

  .live-quote p {
    min-height: auto;
    font-size: 15px;
  }

  .live-alternative .live-section-head h2 {
    font-size: 22px;
    line-height: 1.35;
  }

  .live-alternative .live-section-head p {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* Very small phones (max-width: 480px) */
@media (max-width: 480px) {
  .live-bank-strip {
    padding: 20px 0 24px;
  }

  .live-bank-strip h2 {
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .live-bank-track {
    gap: 32px;
    animation-duration: 14s !important;
  }

  .live-bank-track img {
    height: 26px;
    max-width: 95px;
  }

  .live-brand img {
    width: min(68vw, 240px);
  }

  .live-nav {
    width: min(100% - 20px, 1140px);
  }
}

/* Legacy / older styles mobile (max-width: 640px) */
@media (max-width: 640px) {
  .entity-method-grid {
    grid-template-columns: 1fr;
  }

  .entity-intro,
  .payment-methods-index {
    padding: 58px 0;
  }

  .container {
    width: min(100%, var(--max));
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding: 48px 0;
  }

  .topbar {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    white-space: normal;
  }

  nav {
    min-height: 66px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .nav-links {
    top: 103px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
    overflow-wrap: break-word;
  }

  .eyebrow {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 11px;
    line-height: 1.4;
    white-space: normal;
  }

  h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  .section-head {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-method-line {
    display: block;
    max-width: 100%;
    font-size: 14px;
    text-align: center;
  }

  .method-pill {
    display: flex;
    width: fit-content;
    margin: 12px auto 0;
    min-width: 124px;
    min-height: 34px;
    font-size: 12px;
  }

  .cta-row .btn {
    width: 100%;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-badges span {
    justify-content: center;
  }

  .checkout-card {
    padding: 20px;
  }

  .checkout-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .checkout-topline strong {
    font-size: 26px;
  }

  .payment-options span {
    font-size: 11px;
  }

  .bank-strip {
    margin-top: 38px;
    padding-bottom: 18px;
  }

  .bank-strip h2 {
    padding: 0 20px;
    font-size: 11px;
    line-height: 1.45;
  }

  .bank-marquee {
    gap: 34px;
  }

  .bank-marquee img {
    height: 26px;
  }

  .who-section {
    padding: 56px 0 60px;
  }

  .who-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .who-head span {
    margin-bottom: 14px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .who-card-featured {
    grid-column: auto;
    min-height: auto;
  }

  .who-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .who-title {
    margin-bottom: 18px;
  }

  .trust-grid,
  .cards-4,
  .field-grid,
  .scenario-tabs,
  .result-breakdown {
    grid-template-columns: 1fr;
  }

  .reviews-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .review-arrow {
    width: 42px;
    height: 42px;
  }

  .reviews-track .quote {
    flex-basis: 100%;
  }

  .mobile-sticky {
    display: block;
  }

  .scroll-top {
    bottom: 88px;
  }

  main {
    padding-bottom: 70px;
  }

  .price {
    font-size: 40px;
  }

  .how-layout {
    gap: 28px;
  }

  .how-steps::before {
    left: 16px;
  }

  .how-step {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding-bottom: 24px;
  }

  .step-dot {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .dashboard-top,
  .dashboard-body {
    padding: 16px;
  }

  .dashboard-metric {
    grid-template-columns: 1fr;
  }

  .dash-row {
    grid-template-columns: 1fr;
  }

  .dash-amount {
    justify-self: start;
  }
}

/* Desktop enhancement for UI checkout */
@media (min-width: 768px) {
  .ui-checkout-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    padding: 110px 0;
  }

  .ui-checkout-content {
    flex: 1;
    max-width: 540px;
  }

  .ui-checkout-preview {
    flex: 1;
    justify-content: flex-end;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* Homepage pricing section */
.homepage-pricing { background: #f6f4ff; color: #08122e; }
.homepage-pricing-intro { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.homepage-pricing-eyebrow, .homepage-pricing-card-eyebrow { display: inline-block; color: #0a7656; font: 700 12px/1.4 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.homepage-pricing-intro h2 { margin: 12px 0; color: #08122e; font-size: clamp(32px,4vw,48px); line-height: 1.12; letter-spacing: -.035em; }
/* .homepage-pricing-intro h1, .homepage-pricing-intro h2 { margin: 12px 0; color: #08122e; font-size: clamp(32px,4vw,48px); line-height: 1.12; letter-spacing: -.035em; } */
.homepage-pricing-intro > p { margin: 0; color: #52637a; font-size: 18px; line-height: 1.6; }
.homepage-pricing-trust, .homepage-pricing-bottom-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-top: 22px; color: #075fae; font-size: 14px; font-weight: 600; }
.homepage-pricing-trust span + span::before { content: "·"; margin-right: 20px; color: #c9d1e6; }
.homepage-pricing-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(280px,1fr); gap: 22px; align-items: stretch; }
.homepage-pricing-card { display: flex; flex-direction: column; padding: 34px; border: 1px solid #dcdff0; border-radius: 20px; background: #fff; box-shadow: 0 14px 36px rgba(28,35,74,.08); }
.homepage-pricing-card h3 { margin: 10px 0 8px; color: #08122e; font-size: clamp(26px,2.5vw,34px); line-height: 1.15; }
.homepage-pricing-card-lede { max-width: 560px; margin: 0; color: #52637a; font-size: 16px; line-height: 1.55; }
.homepage-pricing-options { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 26px 0 14px; }
.homepage-pricing-option { padding: 22px; border: 1px solid #dcdff0; border-radius: 14px; background: #fff; }
.homepage-pricing-option h4 { margin: 0 0 6px; color: #08122e; font-size: 18px; }
.homepage-pricing-option p, .homepage-pricing-option small { display: block; margin: 0; color: #52637a; font-size: 14px; line-height: 1.45; }
.homepage-pricing-option strong { display: block; margin: 18px 0 5px; color: #0878e8; font-size: clamp(26px,3vw,36px); line-height: 1; }
.homepage-pricing-option strong span { font-size: 13px; font-weight: 600; }
.homepage-pricing-gst { margin: 0; color: #08122e; font-size: 14px; font-weight: 700; }
.homepage-pricing-features { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.homepage-pricing-features li { display: flex; gap: 10px; align-items: flex-start; color: #52637a; font-size: 15px; line-height: 1.45; }
.homepage-pricing-features li > span { flex: 0 0 auto; color: #0a7656; font-weight: 800; }
.homepage-pricing-cta { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; margin-top: 26px; padding: 12px 20px; border: 1px solid #0878e8; border-radius: 999px; background: #0878e8; color: #fff; font: 700 13px/1.2 var(--font-mono); letter-spacing: .05em; text-decoration: none; }
.homepage-pricing-cta:hover, .homepage-pricing-cta:focus-visible { background: #075fae; border-color: #075fae; }
.homepage-pricing-support { margin: 12px 0 0; color: #52637a; font-size: 13px; text-align: center; }
.homepage-pricing-card--custom .homepage-pricing-card-lede { min-height: 76px; }
.homepage-pricing-custom-price { margin: 26px 0 0; color: #0878e8; font-size: 36px; line-height: 1; }
.homepage-pricing-cta--secondary { background: #fff; color: #075fae; }
.homepage-pricing-cta--secondary:hover, .homepage-pricing-cta--secondary:focus-visible { background: #edf6ff; color: #075fae; }
.homepage-pricing-bottom-trust { margin-top: 28px; color: #52637a; }
.homepage-pricing a:focus-visible { outline: 3px solid rgba(8,120,232,.28); outline-offset: 3px; }
@media (max-width:900px) { .homepage-pricing-grid { grid-template-columns: 1fr; } .homepage-pricing-card--custom .homepage-pricing-card-lede { min-height: 0; } }
@media (max-width:560px) { .homepage-pricing { padding-top: 58px; padding-bottom: 58px; } .homepage-pricing-card { padding: 24px 20px; } .homepage-pricing-options { grid-template-columns: 1fr; } .homepage-pricing-cta { width: 100%; } .homepage-pricing-trust span + span::before { margin-right: 8px; } }

.savings-calculator-section {
  margin-top: 0 !important;
}
