:root {
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-dark: #0b1e4b;
  --footer: #0a2350;
  --text: #101a30;
  --muted: #56637d;
  --soft-muted: #8a95ab;
  --line: #edf1f9;
  --line-strong: #dde5f2;
  --surface: #ffffff;
  --surface-soft: #f6f8fd;
  --surface-tint: #eef3fc;
  --accent-soft: #e8eeff;
  --accent-soft-2: #eef3ff;
  --white-blue: #d7e3ff;
  --footer-text: #a9c0f0;
  --footer-dim: #7e96c8;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-xs: 0 1px 2px rgba(16, 26, 48, 0.05);
  --shadow: 0 1px 2px rgba(16, 26, 48, 0.04), 0 14px 32px -22px rgba(16, 26, 48, 0.22);
  --shadow-lg: 0 2px 4px rgba(16, 26, 48, 0.04), 0 26px 60px -34px rgba(16, 26, 48, 0.3);
  --gradient: linear-gradient(152deg, #2c6bf0, #123f9e);
  --ring: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Segoe UI Variable", "Segoe UI", Roboto, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.has-cookie-modal {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-shell,
.hero-shell,
.section-shell,
.footer-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 40px;
}

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

.site-nav a {
  white-space: nowrap;
  transition: color 0.15s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.header-cta {
  flex: 0 0 auto;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px -12px rgba(37, 99, 235, 0.6);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -12px rgba(37, 99, 235, 0.7);
}

.hero {
  background: var(--gradient);
  color: #ffffff;
}

.hero-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(40px, 5vw, 72px) 0;
}

.hero-copy {
  flex: 1 1 420px;
  min-width: 300px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 20px;
  font-size: clamp(36px, 4.6vw, 54px);
}

.hero-text {
  max-width: 500px;
  margin-top: 22px;
  color: var(--white-blue);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.button-light {
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 14px 28px -16px rgba(0, 0, 0, 0.45);
}

.button-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px -16px rgba(0, 0, 0, 0.5);
}

.button-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 600;
}

.hero-chips i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-visual {
  position: relative;
  flex: 1 1 360px;
  min-width: 300px;
  min-height: 420px;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.55);
}

.hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-price-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.4);
}

.hero-price-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-price-card strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-price-card small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.hero-price-card b,
.phone-card-top span {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-price-card b {
  padding: 6px 11px;
}

.section {
  padding: clamp(44px, 5vw, 76px) 0;
  scroll-margin-top: 78px;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.section-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 40px);
}

.section-heading-split > p {
  max-width: 380px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.phone-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.phone-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.phone-card-top img {
  width: 66px;
  height: 82px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
  object-fit: contain;
}

.phone-card-top span {
  padding: 5px 10px;
  background: var(--accent-soft-2);
  font-size: 11px;
  font-weight: 700;
}

.phone-card h3 {
  margin-top: 16px;
  font-size: 19px;
}

.daily-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}

.daily-price strong {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.daily-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.phone-card > p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.phone-card dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #eef2f9;
}

.phone-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.phone-card dt {
  color: var(--muted);
}

.phone-card dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.phone-apply {
  margin-top: 18px;
  padding: 13px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px -14px rgba(37, 99, 235, 0.7);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.phones-note {
  margin-top: 16px;
  color: var(--soft-muted);
  font-size: 13px;
  line-height: 1.5;
}

.trust-strip-section {
  padding: 0 0 clamp(44px, 5vw, 72px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 24px;
  background: var(--gradient);
  color: #ffffff;
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 20px;
  font-weight: 800;
}

.trust-strip b {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.how-section,
.faq-section {
  padding-top: clamp(20px, 3vw, 28px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

.section-heading-center {
  text-align: center;
}

.step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  flex: 1 1 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
}

.step-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.step-card h3 {
  margin-top: 18px;
  font-size: 22px;
}

.step-card p {
  margin-top: 8px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.5;
}

.faq-shell {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-page-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.faq-page-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #193557;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px -18px rgba(12, 38, 82, 0.38);
}

.faq-page-nav a:hover {
  border-color: rgba(37, 99, 235, 0.34);
  color: var(--accent);
}

.faq-category {
  padding-top: 34px;
  scroll-margin-top: 90px;
}

.faq-category-heading {
  max-width: 760px;
}

.faq-category-heading p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-category-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1.12;
}

.faq-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 20px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 19px;
  font-weight: 800;
}

.faq-question b {
  flex: none;
  width: 24px;
  color: var(--accent);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.faq-item > p {
  display: none;
  max-width: 680px;
  padding: 0 4px 22px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.55;
}

.faq-item > ul,
.faq-item > ol {
  display: none;
  max-width: 680px;
  margin: -8px 0 18px;
  padding: 0 4px 0 24px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.55;
}

.faq-item.is-open > p {
  display: block;
}

.faq-item.is-open > ul,
.faq-item.is-open > ol {
  display: block;
}

.about-page {
  background: #ffffff;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: var(--text);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.about-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(54px, 7vw, 96px) 0 clamp(44px, 6vw, 80px);
}

.about-hero .hero-copy {
  min-width: 0;
}

.about-hero .hero-pill {
  background: #e8f0ff;
  color: var(--accent);
}

.about-hero h1 {
  max-width: 760px;
  color: var(--accent-dark);
  font-size: clamp(34px, 4.4vw, 52px);
}

.about-hero .hero-text {
  max-width: 610px;
  color: #50617c;
}

.about-hero-visual {
  flex: none;
  min-width: 0;
  min-height: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 34px 70px -42px rgba(11, 42, 107, 0.55);
}

.about-hero-visual > img {
  object-position: center center;
}

.about-intro-section {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 18px 42px;
  align-items: end;
  margin-bottom: 28px;
}

.about-intro .section-kicker {
  grid-column: 1 / -1;
}

.about-intro h2 {
  margin: 0;
  color: var(--accent-dark);
  font-size: clamp(28px, 3.6vw, 40px);
}

.about-intro p:not(.section-kicker) {
  color: #51607a;
  font-size: 16px;
  line-height: 1.6;
}

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

.about-card-grid div {
  min-height: 100%;
  padding: clamp(20px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 24px 54px -46px rgba(11, 42, 107, 0.55);
}

.about-card-grid h3 {
  margin: 0;
  color: #071936;
  font-size: 19px;
}

.about-card-grid p {
  margin-top: 10px;
  color: #51607a;
  font-size: 15px;
  line-height: 1.6;
}

.about-principles-section {
  padding-top: 0;
}

.customers-page {
  background: #ffffff;
}

.customer-hero {
  background:
    radial-gradient(circle at 84% 20%, rgba(92, 140, 255, 0.34), transparent 30%),
    linear-gradient(145deg, #061a47 0%, #103e93 55%, #2563eb 100%);
}

.customer-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.customer-hero .hero-text {
  max-width: 590px;
}

.customer-hero-media {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
}

.customer-hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  box-shadow: 0 38px 80px -46px rgba(0, 0, 0, 0.75);
}

.customer-app-card {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: min(292px, 78%);
  padding: 18px;
  border: 1px solid rgba(216, 225, 241, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 54px -34px rgba(6, 26, 71, 0.65);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.customer-app-top,
.customer-app-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-app-top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.customer-app-top span,
.customer-app-card dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.customer-app-top b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #067547;
  font-size: 12px;
}

.customer-app-card dl {
  display: grid;
  gap: 11px;
  margin: 14px 0 0;
}

.customer-app-card dd {
  margin: 0;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
}

.customer-value-section {
  padding-bottom: clamp(22px, 4vw, 44px);
}

.customer-value-grid,
.customer-cycle-grid,
.customer-feature-grid,
.customer-support-grid {
  display: grid;
  gap: 16px;
}

.customer-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-value-grid article,
.customer-cycle-grid article,
.customer-feature-grid article,
.customer-support-grid article,
.customer-steps article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 54px -46px rgba(11, 42, 107, 0.48);
}

.customer-value-grid article {
  padding: 22px;
}

.customer-value-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.customer-value-grid h3,
.customer-steps h3,
.customer-feature-grid h3,
.customer-support-grid h3 {
  margin-top: 14px;
  color: #071936;
  font-size: 19px;
}

.customer-value-grid p,
.customer-steps p,
.customer-feature-grid p,
.customer-support-grid p,
.customer-two-column p,
.customer-completion-layout p {
  margin-top: 10px;
  color: #51607a;
  font-size: 15px;
  line-height: 1.62;
}

.customer-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: customer-steps;
}

.customer-steps article {
  position: relative;
  min-height: 210px;
  padding: 24px;
}

.customer-steps article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

.customer-terms-section,
.customer-app-section,
.customer-responsibility-section {
  background: #f6f9ff;
}

.customer-two-column,
.customer-completion-layout,
.customer-app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.customer-two-column h2,
.customer-completion-layout h2 {
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: clamp(28px, 3.6vw, 40px);
}

.customer-checklist,
.customer-completion-list,
.customer-responsibility-grid {
  display: grid;
  gap: 10px;
}

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

.customer-checklist span,
.customer-completion-list span,
.customer-responsibility-grid span {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: #1d2f52;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.customer-checklist span::before,
.customer-completion-list span::before,
.customer-responsibility-grid span::before {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #067547;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.customer-cycle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-cycle-grid article {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.customer-cycle-grid b {
  display: block;
  color: var(--accent-dark);
  font-size: 22px;
  font-weight: 900;
}

.customer-cycle-grid span {
  display: block;
  margin-top: 8px;
  color: #51607a;
  font-size: 14px;
  line-height: 1.4;
}

.customer-note {
  margin-top: 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.customer-note-strong {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  background: #e8f0ff;
  color: var(--accent-dark);
  font-weight: 900;
}

.customer-app-layout {
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  align-items: stretch;
}

.customer-phone-preview {
  min-height: 520px;
  padding: 22px;
  border: 10px solid #071936;
  border-radius: 36px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
  box-shadow: 0 36px 70px -46px rgba(6, 26, 71, 0.7);
}

.phone-preview-top,
.phone-preview-balance,
.phone-preview-list span {
  border: 1px solid var(--line);
  background: #ffffff;
}

.phone-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
}

.phone-preview-top span {
  color: var(--accent-dark);
  font-weight: 900;
}

.phone-preview-top b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #067547;
  font-size: 12px;
}

.phone-preview-balance {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
}

.phone-preview-balance span,
.phone-preview-balance small {
  display: block;
  color: #64748b;
  font-weight: 800;
}

.phone-preview-balance strong {
  display: block;
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 44px;
  line-height: 1;
}

.phone-preview-balance small {
  margin-top: 12px;
}

.phone-preview-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.phone-preview-list span {
  padding: 15px;
  border-radius: 16px;
  color: #1d2f52;
  font-weight: 900;
}

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

.customer-feature-grid article,
.customer-support-grid article {
  padding: 22px;
}

.customer-timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.customer-timeline span {
  position: relative;
  min-height: 86px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.customer-timeline span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 1;
  color: var(--accent);
  content: "\2192";
  font-weight: 900;
  transform: translateY(-50%);
}

.customer-completion-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 26px;
  box-shadow: 0 34px 70px -44px rgba(6, 26, 71, 0.58);
}

.customer-completion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-completion-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.customer-inline-button {
  margin-top: 22px;
  background: var(--accent);
  color: #ffffff;
}

.customer-responsibility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.customer-support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-faq-section {
  background: #ffffff;
}

.customer-final-ghost {
  width: 100%;
  margin-top: 10px;
  border-color: var(--line-strong);
  background: #f5f8ff;
  color: var(--accent-dark);
}

.merchants-page {
  background: #f7fbf8;
}

.merchants-page h1,
.merchants-page h2,
.merchants-page h3 {
  letter-spacing: 0;
}

.merchant-hero {
  overflow: hidden;
  border-bottom: 1px solid #cfe8d8;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(236, 249, 241, 0.88) 52%, rgba(221, 242, 231, 0.96) 100%),
    #f3fbf6;
  color: #071936;
}

.merchant-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(54px, 7vw, 88px) 0 clamp(36px, 5vw, 64px);
}

.merchant-hero-copy {
  min-width: 0;
}

.merchant-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #0f7a47;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merchant-eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #11a05c;
  content: "";
}

.merchant-hero h1 {
  max-width: 760px;
  margin-top: 18px;
  color: #061527;
  font-size: clamp(38px, 4.8vw, 54px);
  line-height: 1.05;
}

.merchant-hero-copy > p:not(.merchant-eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: #33415c;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.58;
}

.merchant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.merchant-primary-button {
  background: #0f7a47;
  color: #ffffff;
  box-shadow: 0 18px 30px -20px rgba(15, 122, 71, 0.8);
}

.merchant-secondary-button {
  border: 1.5px solid #b4d8c2;
  background: #ffffff;
  color: #124734;
}

.merchant-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin: 32px 0 0;
  border: 1px solid #cfe8d8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.merchant-hero-metrics div {
  padding: 16px;
}

.merchant-hero-metrics div + div {
  border-left: 1px solid #cfe8d8;
}

.merchant-hero-metrics dt {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.merchant-hero-metrics dd {
  margin: 7px 0 0;
  color: #071936;
  font-size: 20px;
  font-weight: 900;
}

.merchant-hero-media {
  position: relative;
  min-width: 0;
  padding: 14px;
  border: 1px solid #c7e5d1;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 34px 70px -46px rgba(6, 26, 71, 0.58);
}

.merchant-hero-media > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.merchant-workboard {
  position: absolute;
  right: clamp(10px, 2vw, 28px);
  bottom: clamp(-26px, -2vw, -18px);
  width: min(360px, calc(100% - 36px));
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 56px -34px rgba(6, 21, 39, 0.72);
  color: #071936;
}

.merchant-workboard-header,
.merchant-workboard-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
}

.merchant-workboard-header {
  border-bottom: 1px solid #e7eee9;
}

.merchant-workboard-header span,
.merchant-workboard-total span {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.merchant-workboard-header b {
  padding: 6px 9px;
  border-radius: 999px;
  background: #dcfce7;
  color: #067547;
  font-size: 12px;
}

.merchant-workboard-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.merchant-workboard-list li {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 4px 12px;
  padding: 13px 16px;
  border-bottom: 1px solid #eef3ef;
}

.merchant-workboard-list span,
.merchant-workboard-list em {
  color: #64748b;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.merchant-workboard-list strong {
  color: #071936;
  font-size: 14px;
  font-weight: 900;
}

.merchant-workboard-list em {
  grid-column: 2;
}

.merchant-workboard-total strong {
  color: #0f7a47;
  font-size: 24px;
}

.merchant-priority-section {
  padding: clamp(28px, 4vw, 48px) 0 0;
}

.merchant-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.merchant-priority-grid article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid #dce8e1;
  border-left: 5px solid #0f7a47;
  border-radius: 8px;
  background: #ffffff;
}

.merchant-priority-grid span,
.merchant-flow span,
.merchant-control-grid span {
  color: #0f7a47;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.merchant-priority-grid h2 {
  margin-top: 26px;
  color: var(--accent-dark);
  font-size: clamp(22px, 2.4vw, 27px);
  line-height: 1.14;
}

.merchant-section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.merchant-section-header h2,
.merchant-dashboard-copy h2,
.merchant-modules-layout h2,
.merchant-apply-panel h2 {
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
}

.merchant-section-header > p:not(.merchant-eyebrow),
.merchant-dashboard-copy > p,
.merchant-control-grid p {
  margin-top: 14px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.62;
}

.merchant-flow-section {
  padding-top: clamp(46px, 6vw, 82px);
}

.merchant-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dce8e1;
  border-radius: 8px;
  background: #ffffff;
}

.merchant-flow article {
  min-height: 260px;
  padding: 24px;
}

.merchant-flow article + article {
  border-left: 1px solid #dce8e1;
}

.merchant-flow h3,
.merchant-control-grid h3 {
  margin-top: 24px;
  color: #071936;
  font-size: 22px;
}

.merchant-flow p {
  margin-top: 10px;
  color: #51607a;
  font-size: 15px;
  line-height: 1.6;
}

.merchant-dashboard-section {
  background: #0c1628;
  color: #ffffff;
}

.merchant-dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.merchant-dashboard-section .merchant-eyebrow {
  color: #86efac;
}

.merchant-dashboard-section .merchant-eyebrow::before {
  background: #86efac;
}

.merchant-dashboard-copy h2 {
  color: #ffffff;
}

.merchant-dashboard-copy > p {
  color: #b7c6dc;
}

.merchant-copy-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.merchant-copy-list span {
  padding: 12px 14px;
  border: 1px solid rgba(183, 198, 220, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #e5edf7;
  font-size: 14px;
  font-weight: 800;
}

.merchant-ledger-panel {
  overflow: hidden;
  border: 1px solid rgba(196, 211, 229, 0.28);
  border-radius: 8px;
  background: #111f35;
  box-shadow: 0 34px 70px -42px rgba(0, 0, 0, 0.82);
}

.merchant-ledger-toolbar,
.merchant-ledger-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}

.merchant-ledger-toolbar {
  border-bottom: 1px solid rgba(196, 211, 229, 0.2);
}

.merchant-ledger-toolbar span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.merchant-ledger-toolbar b {
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #067547;
  font-size: 12px;
}

.merchant-ledger-table {
  display: grid;
}

.merchant-ledger-table [role="row"] {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(120px, 0.9fr) minmax(104px, 0.7fr) minmax(130px, 1fr);
  gap: 12px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(196, 211, 229, 0.16);
}

.merchant-ledger-table [role="row"]:first-child {
  background: rgba(255, 255, 255, 0.04);
  color: #90a4c3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.merchant-ledger-table [role="cell"] {
  color: #edf4ff;
  font-size: 14px;
  font-weight: 700;
}

.merchant-ledger-table b {
  display: inline-flex;
  width: max-content;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.merchant-status-good {
  background: #dcfce7;
  color: #067547;
}

.merchant-status-warn {
  background: #fef3c7;
  color: #92400e;
}

.merchant-status-risk {
  background: #fee2e2;
  color: #991b1b;
}

.merchant-ledger-summary {
  background: rgba(255, 255, 255, 0.04);
}

.merchant-ledger-summary div {
  flex: 1;
}

.merchant-ledger-summary span {
  display: block;
  color: #90a4c3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.merchant-ledger-summary strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 28px;
}

.merchant-control-section {
  background: #ffffff;
}

.merchant-control-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.merchant-control-grid article {
  padding: 24px;
  border: 1px solid #dce8e1;
  border-radius: 8px;
  background: #f7fbf8;
}

.merchant-modules-section {
  padding-top: clamp(26px, 4vw, 52px);
  background: #edf8f1;
}

.merchant-modules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(26px, 5vw, 64px);
}

.merchant-module-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.merchant-module-list span {
  padding: 14px 16px;
  border: 1px solid #cfe8d8;
  border-radius: 8px;
  background: #ffffff;
  color: #164530;
  font-size: 14px;
  font-weight: 900;
}

.merchant-faq-section {
  background: #ffffff;
}

.merchant-apply-section {
  padding: clamp(42px, 6vw, 80px) 0;
  background: #f7fbf8;
}

.merchant-apply-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #bfe1ca;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 58px -48px rgba(6, 26, 71, 0.42);
}

.merchant-apply-panel h2 {
  max-width: 760px;
}

.merchant-apply-panel span {
  display: block;
  max-width: 620px;
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.merchant-apply-actions {
  display: grid;
  gap: 10px;
  flex: 0 0 min(280px, 100%);
}

.contact-page {
  background: #ffffff;
}

.contact-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(92, 140, 255, 0.32), transparent 30%),
    linear-gradient(145deg, #061a47 0%, #103e93 58%, #2563eb 100%);
}

.contact-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.contact-hero .hero-text {
  max-width: 590px;
}

.contact-hero-media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  box-shadow: 0 38px 80px -46px rgba(0, 0, 0, 0.75);
}

.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-details-section {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.contact-card-grid,
.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-card-grid article,
.contact-topic-grid article,
.contact-form-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 54px -46px rgba(11, 42, 107, 0.5);
}

.contact-card-grid article {
  padding: clamp(22px, 3vw, 28px);
}

.contact-card-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-grid h2 {
  margin-top: 12px;
  color: #071936;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1.12;
}

.contact-card-grid p {
  margin-top: 10px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.55;
}

.contact-card-grid a {
  color: inherit;
}

.contact-card-grid p a {
  color: var(--accent);
  font-weight: 900;
}

.contact-form-section,
.contact-support-section {
  background: #f6f9ff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.contact-copy h2 {
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: clamp(28px, 3.6vw, 40px);
}

.contact-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 14px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.65;
}

.contact-help-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-help-list span {
  position: relative;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  color: #1d2f52;
  font-size: 14px;
  font-weight: 800;
}

.contact-help-list span::before {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #067547;
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.contact-form-card {
  padding: clamp(22px, 3vw, 30px);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  color: #33415c;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 7px 0 16px;
  padding: 13px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 15px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form button {
  width: 100%;
  margin-top: 2px;
  padding: 15px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px -14px rgba(37, 99, 235, 0.7);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.contact-form button:disabled,
.apply-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-form p {
  margin-top: 12px;
  color: var(--soft-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.contact-success {
  padding: 18px 8px;
  text-align: center;
}

.contact-success span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
}

.contact-success h3 {
  margin-top: 18px;
  font-size: 24px;
}

.contact-success p {
  max-width: 360px;
  margin: 8px auto 0;
  color: #51607a;
  font-size: 16px;
  line-height: 1.55;
}

.contact-success .button {
  width: min(100%, 260px);
  margin-top: 20px;
  background: var(--accent);
  color: #ffffff;
}

.contact-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-topic-grid article {
  padding: 22px;
}

.contact-topic-grid h3 {
  color: #071936;
  font-size: 19px;
}

.contact-topic-grid p {
  margin-top: 10px;
  color: #51607a;
  font-size: 15px;
  line-height: 1.6;
}

.faq-page {
  background: #f6f9ff;
}

.faq-page .site-header {
  background: rgba(255, 255, 255, 0.94);
}

.faq-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  color: var(--text);
}

.faq-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.faq-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(54px, 7vw, 96px) 0 clamp(42px, 6vw, 78px);
}

.faq-hero .hero-copy {
  min-width: 0;
}

.faq-hero .hero-pill {
  background: #e8f0ff;
  color: var(--accent);
}

.faq-hero h1 {
  max-width: 700px;
  color: var(--accent-dark);
  font-size: clamp(34px, 4.4vw, 52px);
}

.faq-hero .hero-text {
  max-width: 600px;
  color: #50617c;
}

.faq-hero-visual {
  flex: none;
  min-width: 0;
  min-height: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 34px 70px -42px rgba(11, 42, 107, 0.55);
}

.faq-hero-visual > img {
  object-position: center 42%;
}

.faq-page .faq-section {
  padding-top: clamp(28px, 4vw, 52px);
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 65%);
}

.faq-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 18px 26px;
  align-items: end;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px -44px rgba(11, 42, 107, 0.55);
}

.faq-search-panel h2 {
  margin-top: 10px;
  font-size: clamp(26px, 3.2vw, 36px);
}

.faq-search-panel span {
  display: block;
  max-width: 480px;
  margin-top: 10px;
  color: #51607a;
  font-size: 16px;
  line-height: 1.5;
}

.faq-search-field {
  display: block;
}

.faq-search-field span {
  margin: 0 0 8px;
  color: #193557;
  font-size: 13px;
  font-weight: 900;
}

.faq-search-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #f9fbff;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.faq-search-field input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.faq-search-status {
  grid-column: 1 / -1;
  color: var(--soft-muted);
  font-size: 14px;
  font-weight: 800;
}

.faq-empty-state {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  background: #ffffff;
  color: #51607a;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 30px);
  align-items: start;
  margin-top: 26px;
}

.faq-sidebar {
  position: sticky;
  top: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 50px -42px rgba(11, 42, 107, 0.55);
}

.faq-sidebar > p {
  margin: 0;
  color: #193557;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-content {
  display: grid;
  gap: 18px;
}

.faq-sidebar .faq-page-nav {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 14px;
}

.faq-sidebar .faq-page-nav a {
  justify-content: flex-start;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-color: transparent;
  background: #f6f9ff;
  box-shadow: none;
}

.faq-sidebar .faq-page-nav a:hover {
  background: #eaf1ff;
}

.faq-page .faq-category {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 58px -50px rgba(11, 42, 107, 0.58);
}

.faq-page .faq-category-heading {
  max-width: 820px;
}

.faq-page .faq-category-heading h2 {
  font-size: 34px;
}

.faq-page .faq-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  border-top: 0;
}

.faq-page .faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
}

.faq-page .faq-item.is-open {
  border-color: rgba(37, 99, 235, 0.26);
  background: #ffffff;
  box-shadow: 0 18px 42px -36px rgba(37, 99, 235, 0.5);
}

.faq-page .faq-question {
  padding: 18px 20px;
}

.faq-page .faq-question span {
  font-size: 17px;
  line-height: 1.3;
}

.faq-page .faq-question b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 21px;
}

.faq-page .faq-item > p {
  max-width: 780px;
  padding: 0 20px 18px;
  color: #51607a;
}

.faq-page .faq-item > p + p {
  margin-top: -10px;
}

.faq-page .faq-item > ul,
.faq-page .faq-item > ol {
  max-width: 780px;
  margin: -4px 0 18px;
  padding: 0 20px 0 42px;
  color: #51607a;
}

.apply-section {
  padding: clamp(20px, 3vw, 28px) 0 clamp(48px, 6vw, 88px);
  scroll-margin-top: 78px;
}

.apply-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 30px 60px -30px rgba(11, 42, 107, 0.6);
}

.apply-copy {
  flex: 1 1 320px;
  min-width: 300px;
}

.apply-copy > p {
  display: inline-block;
  color: #bfd3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apply-copy h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.6vw, 40px);
}

.apply-copy > span {
  display: block;
  max-width: 430px;
  margin-top: 16px;
  color: var(--white-blue);
  font-size: 17px;
  line-height: 1.5;
}

.apply-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.apply-copy b,
.footer-brand b {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 600;
}

.apply-card {
  flex: 1 1 340px;
  min-width: 300px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  background: #ffffff;
  color: var(--text);
}

.apply-form {
  display: flex;
  flex-direction: column;
}

.apply-form label {
  color: #33415c;
  font-size: 14px;
  font-weight: 700;
}

.apply-form input,
.apply-form select {
  width: 100%;
  margin: 6px 0 16px;
  padding: 13px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 15px;
}

.apply-form button {
  width: 100%;
  margin-top: 2px;
  padding: 15px;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px -14px rgba(37, 99, 235, 0.7);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
}

.apply-form p {
  margin-top: 12px;
  color: var(--soft-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.form-submit-status {
  margin: 12px 0 0;
  color: #0b2a6b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.form-submit-status.error {
  color: #b42318;
}

.apply-success {
  padding: 18px 8px;
  text-align: center;
}

.apply-success span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 30px;
  font-weight: 800;
}

.apply-success h3 {
  margin-top: 18px;
  font-size: 24px;
}

.apply-success p {
  max-width: 300px;
  margin: 8px auto 0;
  color: #51607a;
  font-size: 16px;
  line-height: 1.55;
}

.policy-page {
  background: linear-gradient(180deg, #f5f8ff 0, #ffffff 360px);
}

.policy-shell {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.policy-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(34px, 5vw, 56px);
}

.policy-hero h1 {
  max-width: 860px;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: clamp(32px, 4.2vw, 50px);
}

.policy-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: #40506f;
  font-size: 20px;
  line-height: 1.6;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-meta span {
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: #32425f;
  font-size: 14px;
  font-weight: 700;
}

.policy-section {
  padding: 0 0 clamp(56px, 8vw, 96px);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.policy-layout > *,
.policy-content,
.policy-table-wrap {
  min-width: 0;
  max-width: 100%;
}

.policy-summary {
  position: sticky;
  top: 92px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.policy-summary h2 {
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 16px;
}

.policy-summary a {
  color: #52617c;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.policy-summary a:hover {
  color: var(--accent);
}

.policy-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.policy-content section {
  min-width: 0;
  max-width: 100%;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  color: var(--accent-dark);
  font-size: 32px;
}

.policy-content h3 {
  margin-top: 22px;
  color: #17294d;
  font-size: 19px;
  letter-spacing: 0;
}

.policy-content p,
.policy-content li {
  color: #44536f;
  font-size: 16px;
  line-height: 1.75;
}

.policy-content p,
.policy-content ul,
.policy-card-grid,
.policy-table-wrap {
  margin-top: 14px;
}

.policy-content ul {
  padding-left: 20px;
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.policy-card-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.policy-card-grid h3 {
  margin: 0;
  font-size: 17px;
}

.policy-card-grid p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
}

.policy-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 15px;
}

.policy-table th,
.policy-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table td {
  color: #44536f;
  line-height: 1.55;
}

.site-footer {
  padding: clamp(40px, 5vw, 64px) 0 36px;
  background: var(--footer);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(230px, 1.15fr)
    minmax(140px, 0.72fr)
    minmax(170px, 0.86fr)
    minmax(170px, 0.86fr)
    minmax(245px, 1.05fr);
  gap: clamp(22px, 2.6vw, 36px);
  align-items: start;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand > span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  background: #ffffff;
}

.footer-brand img {
  width: auto;
  height: 30px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--footer-text);
  font-size: 15px;
  line-height: 1.55;
}

.footer-address-title {
  margin-top: 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.footer-address {
  color: var(--footer-text);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  color: var(--footer-text);
  font-size: 14px;
}

.footer-links h2 {
  margin: 0 0 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--footer-text);
  line-height: 1.35;
  white-space: nowrap;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--footer-text);
  cursor: pointer;
  line-height: 1.35;
  text-align: left;
}

.footer-link-button:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--footer-dim);
  font-size: 13px;
}

.footer-actions {
  align-items: center;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-cookie-button {
  white-space: nowrap;
}

.footer-social {
  display: inline-flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--footer-text);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-social a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 100;
  pointer-events: none;
}

.cookie-banner-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(216, 225, 241, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px -32px rgba(6, 26, 71, 0.42);
  pointer-events: auto;
}

.cookie-banner strong,
.cookie-modal-panel h2 {
  color: var(--accent-dark);
}

.cookie-banner strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.cookie-banner p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px -14px rgba(37, 99, 235, 0.7);
}

.cookie-button-secondary {
  background: #ffffff;
  color: var(--accent-dark);
}

.cookie-button-secondary:hover {
  border-color: #b9c8e5;
  background: var(--surface-soft);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 71, 0.48);
  backdrop-filter: blur(4px);
}

.cookie-modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 32px 90px -34px rgba(6, 26, 71, 0.58);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.cookie-eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-modal-panel h2 {
  margin-top: 8px;
  padding-right: 38px;
  font-size: 36px;
}

.cookie-modal-intro,
.cookie-option p,
.cookie-option small {
  color: var(--muted);
  line-height: 1.5;
}

.cookie-modal-intro {
  margin-top: 12px;
  font-size: 15px;
}

.cookie-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.cookie-option:first-of-type {
  margin-top: 22px;
}

.cookie-option-locked {
  grid-template-columns: 1fr auto;
  background: var(--surface-soft);
}

.cookie-option h3,
.cookie-option strong {
  display: block;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 900;
}

.cookie-option p,
.cookie-option small {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.cookie-option-locked > span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #dff7eb;
  color: #067547;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.cookie-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.cookie-switch {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #d9e3f4;
  transition: background 0.18s ease;
}

.cookie-switch::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px -8px rgba(15, 27, 51, 0.6);
  content: "";
  transition: transform 0.18s ease;
}

.cookie-option input:checked + .cookie-switch {
  background: var(--accent);
}

.cookie-option input:checked + .cookie-switch::after {
  transform: translateX(20px);
}

.cookie-option input:focus-visible + .cookie-switch {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 3px;
}

.cookie-modal-actions {
  justify-content: flex-end;
  margin-top: 20px;
}

.cookie-policy-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .header-shell,
  .hero-shell,
  .section-shell,
  .footer-shell,
  .faq-shell,
  .faq-page-shell {
    width: min(1180px, calc(100% - 32px));
  }

  .header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 12px 16px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
    margin-right: 0;
  }

  .header-cta {
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    gap: 18px;
    padding-top: 4px;
    font-size: 14px;
  }

  .hero-shell {
    padding-top: 34px;
  }

  .faq-hero-shell {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .about-hero-shell {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .customer-hero-shell,
  .customer-two-column,
  .customer-completion-layout,
  .customer-app-layout,
  .merchant-hero-shell,
  .merchant-dashboard-layout,
  .merchant-modules-layout,
  .contact-hero-shell,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-visual,
  .apply-copy,
  .apply-card {
    flex-basis: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-text,
  .section-heading-split > p {
    max-width: 100%;
  }

  .section-heading-split {
    display: block;
  }

  .section-heading-split > p {
    margin-top: 16px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .faq-hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .about-hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-card-grid {
    grid-template-columns: 1fr;
  }

  .customer-value-grid,
  .customer-steps,
  .customer-cycle-grid,
  .customer-support-grid,
  .customer-responsibility-grid,
  .merchant-priority-grid,
  .merchant-control-grid,
  .merchant-module-list,
  .contact-card-grid,
  .contact-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .merchant-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .merchant-flow article {
    min-height: auto;
    border: 1px solid #dce8e1;
    border-radius: 8px;
    background: #ffffff;
  }

  .merchant-flow article + article {
    border-left: 1px solid #dce8e1;
  }

  .merchant-dashboard-layout {
    align-items: stretch;
  }

  .customer-timeline {
    grid-template-columns: 1fr;
  }

  .customer-timeline span {
    min-height: auto;
    text-align: left;
  }

  .customer-timeline span:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -16px;
    left: 22px;
    transform: rotate(90deg);
  }

  .customer-phone-preview {
    min-height: auto;
  }

  .faq-search-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-sidebar .faq-page-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .faq-sidebar .faq-page-nav a {
    width: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 520px;
  }

  .policy-shell {
    width: min(1080px, calc(100% - 32px));
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    position: static;
  }

  .cookie-banner {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .cookie-banner-shell {
    display: block;
  }

  .cookie-banner-actions {
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 34px;
  }

  .header-cta {
    padding: 10px 15px;
    font-size: 14px;
  }

  .site-nav {
    gap: 14px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-price-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .about-card-grid div {
    padding: 18px;
  }

  .customer-hero-media {
    aspect-ratio: 4 / 3;
  }

  .customer-app-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .customer-value-grid,
  .customer-steps,
  .customer-cycle-grid,
  .customer-feature-grid,
  .customer-support-grid,
  .customer-checklist,
  .customer-completion-list,
  .customer-responsibility-grid,
  .merchant-priority-grid,
  .merchant-flow,
  .merchant-control-grid,
  .merchant-module-list,
  .contact-card-grid,
  .contact-topic-grid {
    grid-template-columns: 1fr;
  }

  .merchant-hero-shell {
    padding-top: 40px;
  }

  .merchant-actions .button {
    width: 100%;
  }

  .merchant-hero-metrics {
    grid-template-columns: 1fr;
  }

  .merchant-hero-metrics div + div {
    border-top: 1px solid #cfe8d8;
    border-left: 0;
  }

  .merchant-hero-media {
    padding: 10px;
  }

  .merchant-hero-media > img {
    aspect-ratio: 4 / 3;
  }

  .merchant-workboard {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .merchant-workboard-list li {
    grid-template-columns: 1fr;
  }

  .merchant-workboard-list em {
    grid-column: auto;
  }

  .merchant-ledger-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .merchant-ledger-table [role="row"]:first-child {
    display: none;
  }

  .merchant-ledger-summary,
  .merchant-apply-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .merchant-apply-actions {
    flex-basis: auto;
  }

  .contact-hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .customer-steps article {
    min-height: auto;
  }

  .phone-preview-balance strong {
    font-size: 36px;
  }

  .faq-hero-card {
    right: 12px;
    bottom: 12px;
    width: min(290px, calc(100% - 24px));
  }

  .faq-search-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .faq-page .faq-category {
    padding: 18px;
    border-radius: 20px;
  }

  .faq-page .faq-question {
    padding: 16px;
  }

  .faq-page .faq-question span {
    font-size: 16px;
  }

  .faq-page .faq-item > p {
    padding-right: 16px;
    padding-left: 16px;
  }

  .phone-grid {
    grid-template-columns: 1fr;
  }

  .apply-panel {
    gap: 28px;
    border-radius: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-option,
  .cookie-option-locked {
    grid-template-columns: 1fr;
  }

  .cookie-option-locked > span {
    width: fit-content;
  }
}

/* 2026 public website polish */

body h1,
body h2,
body h3 {
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #061a47;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.42);
  outline-offset: 3px;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-shell,
.home-hero-shell,
.section-shell,
.footer-shell {
  width: min(1240px, calc(100% - 56px));
}

.header-shell {
  min-height: 72px;
  padding: 12px 0;
}

.brand img {
  height: 38px;
}

.site-nav {
  gap: 30px;
  color: #35435f;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  border-radius: 8px;
  box-shadow: none;
}

.nav-toggle,
.nav-cta-mobile {
  display: none;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100svh - 120px));
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.92) 38%, rgba(7, 34, 90, 0.48) 66%, rgba(5, 20, 52, 0.14) 100%),
    url("/assets/images/option-b-hero-retailer.png") center 44% / cover no-repeat;
  color: #ffffff;
}

.home-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(4, 17, 43, 0.52));
  content: "";
  pointer-events: none;
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 0 88px;
}

.home-hero-copy {
  width: min(650px, 62%);
}

.home-hero-kicker {
  color: #9fc1ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.04;
}

.home-hero-text {
  max-width: 560px;
  margin-top: 22px;
  color: #d7e3ff;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.58;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-hero .button,
.home-audience-grid .button {
  min-height: 52px;
  border-radius: 8px;
  font-size: 16px;
}

.home-button-primary {
  background: #ffffff;
  color: #174da8;
  box-shadow: none;
}

.home-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(7, 25, 60, 0.32);
  color: #ffffff;
}

.home-button-dark {
  background: #0a1c38;
  color: #ffffff;
}

.home-hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.home-hero-assurances li {
  position: relative;
  padding-left: 18px;
}

.home-hero-assurances li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #70e1a3;
  content: "";
}

.home-hero-caption {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: min(410px, 38%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

.home-signal-band {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.home-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-signal-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 20px 28px;
}

.home-signal-grid > div + div {
  border-left: 1px solid var(--line);
}

.home-signal-grid strong {
  color: var(--accent);
  font-size: 13px;
}

.home-signal-grid span {
  color: #172641;
  font-size: 15px;
  font-weight: 800;
}

.home-phones-section {
  padding-top: 82px;
  background: var(--surface-soft);
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.home-section-heading > div {
  max-width: 700px;
}

.home-section-heading h2,
.home-how-intro h2,
.home-transparency-heading h2 {
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
}

.home-section-heading > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.home-phone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-phone-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 50px -42px rgba(6, 26, 71, 0.5);
}

.home-phone-image {
  position: relative;
  display: grid;
  min-height: 250px;
  place-items: center;
  background: #edf2f8;
}

.home-phone-image img {
  width: 150px;
  height: 190px;
  object-fit: contain;
}

.home-phone-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #ffffff;
  color: #29405f;
  font-size: 11px;
  font-weight: 900;
}

.home-phone-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.home-phone-card h3 {
  margin: 0;
  font-size: 21px;
}

.home-phone-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.home-phone-card .phone-apply {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 22px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
  font-size: 14px;
  text-align: left;
}

.home-phone-card .phone-apply::after,
.home-text-link::after,
.home-faq-link::after,
.home-inline-note a::after {
  margin-left: 8px;
  content: "\2192";
}

.home-inline-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-inline-note strong {
  color: #071936;
}

.home-inline-note span {
  color: var(--muted);
  font-size: 14px;
}

.home-inline-note a,
.home-text-link,
.home-faq-link {
  color: var(--accent);
  font-weight: 800;
}

.home-how-section {
  padding: 94px 0;
  background: #ffffff;
}

.home-how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 90px;
  align-items: start;
}

.home-how-intro {
  position: sticky;
  top: 110px;
}

.home-how-intro > p:not(.section-kicker) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-text-link {
  display: inline-flex;
  margin-top: 26px;
  font-size: 14px;
}

.home-journey-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.home-journey-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-strong);
}

.home-journey-list > li > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.home-journey-list h3 {
  color: #071936;
  font-size: 22px;
}

.home-journey-list p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.home-transparency-section {
  padding: 94px 0;
  background: #08182d;
  color: #ffffff;
}

.home-transparency-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: 70px;
  align-items: end;
}

.home-transparency-heading .section-kicker {
  grid-column: 1 / -1;
  color: #76d8a4;
}

.home-transparency-heading h2 {
  margin-top: -48px;
  color: #ffffff;
}

.home-transparency-heading > p {
  color: #b7c6dc;
  font-size: 15px;
  line-height: 1.65;
}

.home-status-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
  border-top: 1px solid rgba(183, 198, 220, 0.28);
  border-bottom: 1px solid rgba(183, 198, 220, 0.28);
}

.home-status-track article {
  min-height: 240px;
  padding: 26px 24px;
}

.home-status-track article + article {
  border-left: 1px solid rgba(183, 198, 220, 0.28);
}

.home-status-track span {
  color: #76d8a4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-status-track h3 {
  margin-top: 28px;
  color: #ffffff;
  font-size: 23px;
}

.home-status-track p {
  margin-top: 10px;
  color: #b7c6dc;
  font-size: 14px;
  line-height: 1.6;
}

.home-relief-note {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 54px;
  align-items: center;
  margin-top: 42px;
  padding: 30px 0 0;
}

.home-relief-note .section-kicker {
  color: #76d8a4;
}

.home-relief-note h3 {
  margin-top: 8px;
  color: #ffffff;
  font-size: 25px;
}

.home-relief-note > p {
  color: #c9d6e7;
  font-size: 15px;
  line-height: 1.68;
}

.home-audience-section {
  padding: 94px 0;
  background: var(--surface-soft);
}

.home-audience-heading {
  margin-bottom: 30px;
}

.home-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-audience-grid article {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
}

.home-audience-grid article > p {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-audience-grid h3 {
  max-width: 520px;
  margin-top: 22px;
  color: var(--accent-dark);
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.15;
}

.home-audience-grid ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.home-audience-grid .button {
  width: fit-content;
  margin-top: auto;
}

.home-audience-grid .home-button-primary {
  background: var(--accent);
  color: #ffffff;
}

.home-audience-merchant {
  background: #eaf7ef !important;
  border-color: #c9e7d4 !important;
}

.home-audience-merchant > p {
  color: #0f7a47 !important;
}

.home-faq-section {
  padding: 88px 0;
}

.home-faq-section .faq-shell {
  width: min(860px, calc(100% - 48px));
}

.home-faq-section .section-heading h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.home-faq-link {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
  font-size: 14px;
}

.home-apply-section {
  padding: 82px 0;
  background: var(--surface-tint);
}

.home-apply-panel {
  border-radius: 8px;
  background: #0c3f9e;
}

.home-apply-panel .apply-card,
.home-apply-panel .apply-form {
  border-radius: 8px;
}

.form-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.45;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.form-consent a {
  color: var(--accent);
  font-weight: 800;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.3fr) minmax(150px, 0.72fr) minmax(225px, 1fr) minmax(260px, 1.12fr);
  gap: 44px;
}

.footer-links a {
  white-space: normal;
}

.cookie-banner {
  right: 18px;
  bottom: 18px;
  left: auto;
  width: min(560px, calc(100% - 36px));
}

.cookie-banner-shell {
  display: block;
  padding: 16px;
  border-radius: 8px;
}

.cookie-banner-actions {
  margin-top: 14px;
  justify-content: flex-end;
}

.cookie-banner strong {
  font-size: 15px;
}

.cookie-banner p {
  font-size: 12px;
}

@media (max-width: 980px) {
  .home-phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-how-layout,
  .home-transparency-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-how-intro {
    position: static;
  }

  .home-transparency-heading .section-kicker {
    grid-column: auto;
  }

  .home-transparency-heading h2 {
    margin-top: 0;
  }

  .home-status-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-status-track article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(183, 198, 220, 0.28);
  }

  .home-status-track article:nth-child(4) {
    border-top: 1px solid rgba(183, 198, 220, 0.28);
  }
}

@media (max-width: 820px) {
  .header-shell,
  .home-hero-shell,
  .section-shell,
  .footer-shell {
    width: min(1240px, calc(100% - 32px));
  }

  .header-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
    background: #ffffff;
    color: #172641;
    font-size: 13px;
    font-weight: 800;
  }

  .nav-toggle-icon {
    display: grid;
    gap: 3px;
    width: 18px;
  }

  .nav-toggle-icon i {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header.is-menu-open .nav-toggle-icon i:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle-icon i:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle-icon i:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -16px;
    left: -16px;
    display: none;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line-strong);
    background: #ffffff;
    box-shadow: 0 24px 50px -34px rgba(6, 26, 71, 0.5);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
    padding: 13px 18px !important;
    border: 0 !important;
    border-radius: 7px;
    background: var(--accent);
    color: #ffffff;
  }

  .header-cta {
    display: none;
  }

  .home-hero {
    min-height: min(680px, calc(100svh - 105px));
    background:
      linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.9) 58%, rgba(7, 34, 90, 0.48) 100%),
      url("/assets/images/option-b-hero-retailer.png") 64% center / cover no-repeat;
  }

  .home-hero-shell {
    padding: 58px 0 74px;
  }

  .home-hero-copy {
    width: min(620px, 88%);
  }

  .home-hero h1 {
    font-size: 50px;
  }

  .home-hero-caption {
    width: min(470px, 80%);
  }

  .home-signal-grid {
    grid-template-columns: 1fr;
  }

  .home-signal-grid > div {
    min-height: 66px;
    padding: 15px 0;
  }

  .home-signal-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .home-section-heading {
    display: block;
  }

  .home-section-heading > p {
    margin-top: 18px;
  }

  .home-relief-note,
  .home-audience-grid {
    grid-template-columns: 1fr;
  }

  .home-relief-note {
    gap: 20px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 32px;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .home-hero {
    min-height: calc(100svh - 112px);
    background:
      linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.93) 68%, rgba(7, 34, 90, 0.62) 100%),
      url("/assets/images/option-b-hero-retailer.png") 65% center / cover no-repeat;
  }

  .home-hero-shell {
    padding: 46px 0 78px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero-text {
    font-size: 16px;
  }

  .home-hero-actions {
    display: grid;
  }

  .home-hero-actions .button {
    width: 100%;
  }

  .home-hero-assurances {
    display: grid;
    gap: 8px;
  }

  .home-hero-caption {
    right: auto;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: left;
  }

  .home-phones-section,
  .home-how-section,
  .home-transparency-section,
  .home-audience-section,
  .home-faq-section,
  .home-apply-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-section-heading h2,
  .home-how-intro h2,
  .home-transparency-heading h2,
  .home-faq-section .section-heading h2 {
    font-size: 34px;
  }

  .home-phone-grid,
  .home-status-track {
    grid-template-columns: 1fr;
  }

  .home-phone-image {
    min-height: 220px;
  }

  .home-inline-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-journey-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .home-status-track article {
    min-height: 0;
    padding: 24px 0;
  }

  .home-status-track article + article,
  .home-status-track article:nth-child(3),
  .home-status-track article:nth-child(4) {
    border-top: 1px solid rgba(183, 198, 220, 0.28);
    border-left: 0;
  }

  .home-audience-grid article {
    min-height: 0;
    padding: 26px;
  }

  .home-audience-grid h3 {
    font-size: 27px;
  }

  .home-audience-grid .button {
    width: 100%;
  }

  .home-faq-section .faq-shell {
    width: calc(100% - 32px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner-actions .cookie-button-primary {
    grid-column: 1 / -1;
  }
}

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

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

/* Full-bleed public page heroes */

.about-hero,
.customer-hero,
.faq-hero,
.contact-hero {
  position: relative;
  display: flex;
  min-height: min(640px, calc(100svh - 120px));
  align-items: center;
  overflow: hidden;
  color: #ffffff;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.9) 46%, rgba(7, 34, 90, 0.22) 100%),
    url("/assets/images/about-company-hero.png") 68% center / cover no-repeat;
}

.customer-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.92) 44%, rgba(7, 34, 90, 0.25) 100%),
    url("/assets/images/customers-hero.png") 68% center / cover no-repeat;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.91) 45%, rgba(7, 34, 90, 0.24) 100%),
    url("/assets/images/faq-smiling-support-hero.png") 70% center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5, 20, 52, 0.98) 0%, rgba(7, 34, 90, 0.9) 45%, rgba(7, 34, 90, 0.24) 100%),
    url("/assets/images/customers-support.png") 72% center / cover no-repeat;
}

.about-hero-shell,
.customer-hero-shell,
.faq-hero-shell,
.contact-hero-shell {
  position: relative;
  display: block;
  padding-top: 76px;
  padding-bottom: 80px;
}

.about-hero .hero-copy,
.customer-hero .hero-copy,
.faq-hero .hero-copy,
.contact-hero .hero-copy {
  width: min(660px, 62%);
}

.about-hero .hero-visual,
.faq-hero .hero-visual,
.contact-hero .contact-hero-media,
.customer-hero-media > img {
  display: none;
}

.about-hero h1,
.customer-hero h1,
.faq-hero h1,
.contact-hero h1 {
  color: #ffffff;
  font-size: clamp(36px, 4.6vw, 52px);
}

.customer-hero-media {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(360px, 34%);
  overflow: visible;
  aspect-ratio: auto;
}

.customer-hero-media .customer-app-card {
  position: static;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 64px -34px rgba(0, 0, 0, 0.72);
}

.merchant-hero {
  position: relative;
  min-height: min(680px, calc(100svh - 110px));
  background:
    linear-gradient(90deg, rgba(245, 252, 247, 1) 0%, rgba(237, 249, 241, 0.98) 47%, rgba(232, 248, 238, 0.76) 65%, rgba(232, 248, 238, 0.18) 100%),
    url("/assets/images/option-b-hero-retailer.png") 72% center / cover no-repeat;
}

.merchant-hero-shell {
  position: relative;
  display: block;
  min-height: inherit;
  padding-top: 76px;
  padding-bottom: 92px;
}

.merchant-hero-copy {
  width: min(690px, 60%);
}

.merchant-hero h1 {
  font-size: clamp(38px, 4.8vw, 54px);
}

.merchant-hero-media {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(410px, 35%);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.merchant-hero-media > img {
  display: none;
}

.merchant-workboard {
  position: static;
  width: 100%;
}

@media (max-width: 980px) {
  .about-hero .hero-copy,
  .customer-hero .hero-copy,
  .faq-hero .hero-copy,
  .contact-hero .hero-copy,
  .merchant-hero-copy {
    width: min(620px, 72%);
  }

  .customer-hero-media,
  .merchant-hero-media {
    display: none;
  }
}

@media (max-width: 820px) {
  body.has-nav-open {
    overflow: hidden;
  }

  .about-hero,
  .customer-hero,
  .faq-hero,
  .contact-hero,
  .merchant-hero {
    min-height: min(620px, calc(100svh - 105px));
  }

  .about-hero .hero-copy,
  .customer-hero .hero-copy,
  .faq-hero .hero-copy,
  .contact-hero .hero-copy,
  .merchant-hero-copy {
    width: min(620px, 88%);
  }

  .about-hero h1,
  .customer-hero h1,
  .faq-hero h1,
  .contact-hero h1,
  .merchant-hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 560px) {
  .about-hero,
  .customer-hero,
  .faq-hero,
  .contact-hero,
  .merchant-hero {
    min-height: calc(100svh - 112px);
  }

  .about-hero,
  .customer-hero,
  .faq-hero,
  .contact-hero {
    background-position: 64% center;
  }

  .merchant-hero {
    background-position: 66% center;
  }

  .about-hero::after,
  .customer-hero::after,
  .faq-hero::after,
  .contact-hero::after,
  .merchant-hero::after {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 52, 0.18);
    content: "";
    pointer-events: none;
  }

  .merchant-hero::after {
    background: rgba(237, 249, 241, 0.3);
  }

  .about-hero-shell,
  .customer-hero-shell,
  .faq-hero-shell,
  .contact-hero-shell,
  .merchant-hero-shell {
    z-index: 1;
    padding-top: 50px;
    padding-bottom: 58px;
  }

  .about-hero .hero-copy,
  .customer-hero .hero-copy,
  .faq-hero .hero-copy,
  .contact-hero .hero-copy,
  .merchant-hero-copy {
    width: 100%;
  }

  .about-hero h1,
  .customer-hero h1,
  .faq-hero h1,
  .contact-hero h1,
  .merchant-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .faq-category-heading h2,
  .faq-page .faq-category-heading h2 {
    font-size: 30px;
  }

  .about-intro h2,
  .customer-completion-layout h2,
  .merchant-apply-panel h2,
  .contact-copy h2,
  .apply-copy h2 {
    font-size: 40px;
  }

  .merchant-priority-grid h2 {
    font-size: 25px;
  }

  .contact-card-grid h2 {
    font-size: 27px;
  }

  .faq-search-panel h2 {
    font-size: 36px;
  }

  .policy-hero h1 {
    font-size: 46px;
  }

  .policy-hero p {
    font-size: 18px;
  }

  .policy-content h2 {
    font-size: 28px;
  }

  .cookie-modal-panel h2 {
    font-size: 32px;
  }
}

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

  .hero-text {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .faq-category-heading h2,
  .faq-page .faq-category-heading h2 {
    font-size: 26px;
  }

  .about-intro h2,
  .customer-completion-layout h2,
  .merchant-apply-panel h2,
  .contact-copy h2,
  .apply-copy h2 {
    font-size: 34px;
  }

  .merchant-priority-grid h2 {
    font-size: 23px;
  }

  .contact-card-grid h2 {
    font-size: 24px;
  }

  .faq-search-panel h2 {
    font-size: 30px;
  }

  .policy-hero h1 {
    font-size: 38px;
  }

  .policy-hero p {
    font-size: 16px;
  }

  .policy-content h2 {
    font-size: 26px;
  }

  .cookie-modal-panel h2 {
    font-size: 28px;
  }
}
