.processing-page {
  --ink: #101820;
  --muted: #5d6b73;
  --soft: #f5f5f5;
  --line: #e6e6e6;
  --brand: #c11425;
  --brand-dark: #9c0f1e;
  --accent: #ffc000;
  --dark: #111111;
  --white: #ffffff;
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .10);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --maxw: 1240px;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.processing-page a {
  color: inherit;
  text-decoration: none;
}

.processing-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.processing-page section {
  padding: 72px 0;
}

.processing-page h1,
.processing-page h2,
.processing-page h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.15;
}

.processing-page h1 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
}

.processing-page h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

.processing-page h3 {
  font-size: 19px;
  font-weight: 700;
}

.processing-page p {
  margin: 10px 0 14px;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.section-head p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white) !important;
  box-shadow: 0 14px 30px rgba(193, 20, 37, .28);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .3);
}

.btn-ghost-dark:hover {
  border-color: var(--white);
}


.breadcrumb {
  padding: 16px 0 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--line);
}

.breadcrumb li[aria-current] {
  color: var(--ink);
  font-weight: 700;
}


.hero {
  padding: 48px 0 60px;
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  justify-content: center;
}


.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.proc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow);
}

.proc-card .badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--ink);
  margin-bottom: 16px;
}

.proc-card.express {
  border-color: var(--accent);
}

.proc-card.express .badge {
  background: #fff6d9;
  color: #8a6800;
}

.proc-card .time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  color: var(--ink);
}

.proc-card .sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}


.answer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.answer-card::before {
  content: "Direct answer";
  position: absolute;
  top: -13px;
  left: 34px;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.answer-card p {
  color: var(--ink);
  font-size: 17px;
  margin: 0 0 20px;
}

.answer-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.answer-pill {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--brand);
}

.answer-pill span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 10px;
}


.glance-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.glance-table th {
  background: var(--ink);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

.glance-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

.glance-table td.strong {
  color: var(--ink);
  font-weight: 700;
}

.glance-table tr.express td.strong {
  position: relative;
}

.glance-table tr.express td.strong::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 8px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 640px;
}


.decision-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.decision-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.decision-row .cond {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.decision-row .arrow {
  color: var(--line);
  font-weight: 800;
}

.decision-row .result {
  display: flex;
  align-items: center;
  gap: 10px;
}

.decision-row .result strong {
  font-family: var(--font-display);
  color: var(--brand);
}

.decision-row .result span.time {
  font-size: 13px;
  color: var(--muted);
}

.proc-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.proc-section.alt {
  background: var(--soft);
}

.proc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.proc-detail-copy p {
  max-width: 460px;
}

.proc-detail-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
}

.proc-detail-visual.express {
  border-color: var(--accent);
}

.proc-detail-visual .time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--ink);
}

.proc-detail-visual .label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 8px;
}


.progression {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}

.prog-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.prog-row:not(:last-child) {
  border-bottom: 1px dashed var(--line);
}

.prog-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--soft);
  border: 2px solid var(--line);
  flex: none;
}

.prog-row.active .prog-dot {
  background: var(--brand);
  border-color: var(--brand);
}

.prog-row.express .prog-dot {
  background: var(--accent);
  border-color: var(--accent);
}

.prog-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.prog-sub {
  font-size: 13px;
  color: var(--muted);
}

.prog-time {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}


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

.compact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.compact-card .t {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.compact-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}


.approval-block {
  background: var(--white);
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.approval-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.approval-compare .side {
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.approval-compare .side.yes {
  background: var(--soft);
}

.approval-compare .side.no {
  background: var(--soft);
}

.approval-compare .side .head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}

.approval-compare .side .body {
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
}


.reason-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}


.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
}


.mini-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-pill {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.mini-arrow {
  color: var(--line);
  font-weight: 700;
}


.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 560px;
}

.price-table th {
  background: var(--soft);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink);
}

.price-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}

.price-table td.strong {
  color: var(--ink);
  font-weight: 700;
}

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

.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

.trust-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--soft);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-weight: 800;
}

.trust-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}


.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.link-row a {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}

.link-row a:hover {
  text-decoration: underline;
}


.review-placeholder {
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  background: var(--white);
}

.review-placeholder p {
  max-width: 440px;
  margin: 0 auto;
}


.apply-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.apply-steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.apply-steps li:last-child {
  border-bottom: none;
}

.apply-steps li::before {
  content: counter(step);
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--brand);
}

.apply-steps p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  align-self: center;
}


.faq {
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.faq-q .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--brand);
  transition: transform .2s;
}

.faq-item[open] .plus {
  transform: rotate(45deg);
  border-color: var(--brand);
}

.faq-a {
  padding: 0 4px 20px;
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}


.final-cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 88px 0;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin: 0 auto 30px;
}

.final-cta .ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}


.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(17, 17, 17, .08);
  gap: 10px;
}

.sticky-cta .btn {
  flex: 1;
  min-height: 50px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  z-index: 100;
  border-radius: 8px;
}

.hero-eyebrow {
  justify-content: center;
}

.answer-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.answer-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.glance-table-main {
  margin-top: 20px;
  max-width: 720px;
}

.decision-box {
  max-width: 760px;
  margin: 0 auto;
}

.best-for {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.best-for {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.best-for {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.compare-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-copy {
  max-width: 640px;
}

.type-grid {
  margin-top: 20px;
}

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

.approval-copy {
  color: var(--ink);
  font-size: 16px;
}

.no-guarantee {
  text-decoration: line-through;
  color: var(--muted);
}

.approval-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.start-panel {
  max-width: 720px;
}

.panel-copy {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.delay-grid {
  margin-top: 22px;
}

.left-actions {
  justify-content: flex-start;
}

.delay-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-panel {
  max-width: 700px;
}

.delay-flow {
  margin: 22px 0;
}

.active-pill {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.left-actions {
  justify-content: flex-start;
}

.delayed-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-panel {
  max-width: 720px;
}

.wide-panel {
  max-width: 720px;
}

.fast-pill {
  display: inline-block;
  margin-bottom: 18px;
}

.fast-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-panel {
  max-width: 700px;
}

.wide-panel {
  max-width: 700px;
}

.validity-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wide-copy {
  max-width: 640px;
}

.duration-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
  margin-top: 20px;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.apply-copy {
  max-width: 460px;
}

.left-actions {
  justify-content: flex-start;
}

.apply-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table-main {
  margin-top: 18px;
}

.left-actions {
  justify-content: flex-start;
}

.why-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-box {
  max-width: 700px;
}

.dark-text {
  color: var(--ink);
}

.dark-text {
  color: var(--ink);
}

.dark-text {
  color: var(--ink);
}

.reviews-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}


.processing-page .page-wrap {
  max-width: var(--maxw);
  padding: 14px 24px;
}

.processing-page {
  color: var(--ink);
  background: #ffffff;
  overflow-x: clip;
}

.processing-page .page-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.processing-page p,
.processing-page li {
  color: #5d6b73;
}

.processing-page .final-cta p {
  color: rgba(255, 255, 255, .75);
}

.processing-page .best-for {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.processing-page .answer-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 28px;
}

.processing-page .answer-section,
.processing-page .compare-section,
.processing-page .approval-section,
.processing-page .delay-section,
.processing-page .delayed-section,
.processing-page .fast-section,
.processing-page .validity-section,
.processing-page .apply-section,
.processing-page .why-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.processing-page .glance-table-main {
  margin-top: 20px;
  max-width: 720px;
}

.processing-page .decision-box {
  max-width: 760px;
  margin: 0 auto;
}

.processing-page .wide-copy {
  max-width: 640px;
}

.processing-page .wide-panel {
  max-width: 720px;
}

.processing-page .about-box {
  max-width: 700px;
}

.processing-page .dark-text {
  color: var(--ink);
}

.processing-page .left-actions {
  justify-content: flex-start;
}

.processing-page .duration-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 500px;
  margin-top: 20px;
}

.processing-page .apply-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.processing-page .active-pill {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.processing-page .fast-pill {
  display: inline-block;
  margin-bottom: 18px;
}

.processing-page .no-guarantee {
  text-decoration: line-through;
  color: var(--muted);
}

@media (max-width:960px) {
  .reason-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:900px) {
  .compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .processing-page section {
    padding: 52px 0;
  }
}

@media (max-width:820px) {
  .proc-grid {
    grid-template-columns: 1fr;
  }

  .proc-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {

  .processing-page .btn,
  .processing-page .btn-primary,
  .processing-page .btn-secondary {
    max-width: 100%;
  }

  .processing-page table {
    max-width: 100%;
  }
}

@media (max-width:760px) {
  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width:640px) {
  .glance-table thead {
    display: none;
  }

  .glance-table,
  .glance-table tbody,
  .glance-table tr,
  .glance-table td {
    display: block;
    width: 100%;
  }

  .glance-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    padding: 6px 4px;
    background: var(--white);
  }

  .glance-table td {
    border-top: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .glance-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--ink);
  }

  .decision-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .decision-row .arrow {
    display: none;
  }
}

@media (max-width:620px) {
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .approval-compare {
    grid-template-columns: 1fr;
  }

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    background: var(--white);
  }

  .price-table td {
    border-top: none;
    display: flex;
    justify-content: space-between;
  }

  .price-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--ink);
  }

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

@media (min-width: 1100px) {
  .processing-page .page-wrap {
    max-width: 1240px;
  }

  .processing-page .proc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .processing-page .reason-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .processing-page .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) {
  .processing-page .page-wrap {
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .processing-page .reason-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .processing-page section {
    padding: 56px 0;
  }

  .processing-page .hero {
    padding: 38px 0 52px;
  }

  .processing-page .proc-grid {
    gap: 14px;
  }

  .processing-page .proc-card {
    padding: 24px 18px;
  }

  .processing-page .proc-detail {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .processing-page .proc-detail-visual {
    order: -1;
  }

  .processing-page .apply-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .processing-page .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 767px) {
  .processing-page .page-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .processing-page section {
    padding: 48px 0;
  }

  .processing-page .hero {
    padding: 30px 0 44px;
  }

  .processing-page h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .processing-page h2 {
    font-size: 29px;
    line-height: 1.16;
  }

  .processing-page .hero-copy p.lede,
  .processing-page .answer-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .processing-page .hero-ctas {
    gap: 10px;
    margin-top: 22px;
  }

  .processing-page .proc-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .processing-page .proc-card {
    padding: 22px 18px;
  }

  .processing-page .answer-card {
    padding: 28px 20px 22px;
  }

  .processing-page .answer-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .processing-page .decision-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .processing-page .decision-row .arrow {
    display: none;
  }

  .processing-page .decision-row .result {
    justify-content: space-between;
  }

  .processing-page .approval-block {
    padding: 26px 20px;
  }

  .processing-page .approval-compare {
    grid-template-columns: 1fr;
  }

  .processing-page .mini-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .processing-page .mini-arrow {
    display: none;
  }

  .processing-page .review-placeholder {
    padding: 34px 20px;
  }

  .processing-page .faq-q {
    align-items: flex-start;
    padding: 18px 0;
  }

  .processing-page .final-cta {
    padding: 52px 0;
  }

  .processing-page .price-table-main {
    max-width: 100%;
  }
}

@media (max-width: 640px) {

  .processing-page .glance-table thead,
  .processing-page .price-table thead {
    display: none;
  }

  .processing-page .glance-table,
  .processing-page .glance-table tbody,
  .processing-page .glance-table tr,
  .processing-page .glance-table td,
  .processing-page .price-table,
  .processing-page .price-table tbody,
  .processing-page .price-table tr,
  .processing-page .price-table td {
    display: block;
    width: 100%;
  }

  .processing-page .glance-table tr,
  .processing-page .price-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--white);
  }

  .processing-page .glance-table td,
  .processing-page .price-table td {
    border-top: 0;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    text-align: right;
  }

  .processing-page .glance-table td::before,
  .processing-page .price-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--ink);
    text-align: left;
  }
}

@media (max-width: 560px) {
  .processing-page .page-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .processing-page h1 {
    font-size: 32px;
  }

  .processing-page h2 {
    font-size: 27px;
  }

  .processing-page .hero-ctas,
  .processing-page .final-cta .ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .processing-page .hero-ctas .btn,
  .processing-page .final-cta .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .processing-page .compact-grid,
  .processing-page .duration-grid,
  .processing-page .reason-grid,
  .processing-page .trust-grid {
    grid-template-columns: 1fr;
  }

  .processing-page .prog-row {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 10px 14px;
  }

  .processing-page .prog-time {
    grid-column: 2;
    margin-left: 0;
  }

  .processing-page .panel,
  .processing-page .approval-block,
  .processing-page .proc-detail-visual {
    padding: 22px 18px;
  }

  .processing-page .sticky-cta {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
  }

  .processing-page .sticky-cta .btn {
    min-width: 0;
    padding: 12px 10px;
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .processing-page h1 {
    font-size: 30px;
  }

  .processing-page h2 {
    font-size: 25px;
  }

  .processing-page .answer-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

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