:root {
  --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", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --wrap: 1220px;
}

section {
  position: relative;
}

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

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--brand);
  display: inline-block;
}

.eyebrow.muted {
  color: var(--muted);
}

.eyebrow.muted::before {
  background: var(--muted);
}

.kicker-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}

h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800;
}

h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
}

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


p {
  color: #5d6b73;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
}

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

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  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-dark-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}

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

.btn-text {
  color: var(--brand);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text .arrow {
  transition: transform .16s ease;
}

.btn-text:hover .arrow {
  transform: translateX(3px);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 18px 20px 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
}

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

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

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

.breadcrumb .sep {
  color: var(--line);
}

/* Hero */
.hero {
  padding: 56px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  margin-top: 16px;
}

.hero .lede {
  margin-top: 18px;
  font-size: 18px;
}

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

.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-meta .num {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}

.hero-meta .lbl {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.doc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px 34px 34px;
  position: relative;
  overflow: hidden;
}

.doc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--accent) 60%, var(--brand));
}

.doc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}

.doc-row .doc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.doc-row .doc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-top: 4px;
}

.passport-chip {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--brand), var(--brand-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.passport-chip svg {
  width: 22px;
  height: 22px;
}

.field-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}

.field:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.field .label {
  font-size: 14px;
  color: var(--muted);
}

.field .value {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.field .check {
  color: var(--brand);
  font-weight: 700;
}

.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  max-width: 250px;
}

.float-card.before-apply {
  bottom: -34px;
  left: -38px;
}

.float-card .ft-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.float-card ul li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 9px;
}

.float-card ul li:last-child {
  margin-bottom: 0;
}

.float-card ul li .tick {
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
}

.stamp {
  position: absolute;
  top: -18px;
  right: 18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-9deg);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
  background: rgba(255, 192, 0, .08);
}

/* Sections generic */
.section {
  padding: 76px 0;
}

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

.section-head {
  max-width: 680px;
  margin-bottom: 44px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head h2 {
  margin-top: 10px;
}

.section-head p {
  margin-top: 14px;
  font-size: 16px;
}

/* Answer card */
.answer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 46px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
}

.answer-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.answer-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--brand);
}

.answer-card .q {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  display: block;
}

.answer-card p {
  font-size: 17px;
  color: #5d6b73;
  line-height: 1.7;
}

.answer-card p strong {
  color: var(--ink);
}

.answer-card mark {
  background: rgba(255, 192, 0, .32);
  color: var(--ink);
  padding: 0 3px;
  border-radius: 3px;
}

/* Grid of reasons */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: border-color .16s ease, transform .16s ease;
}

.reason-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.reason-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.reason-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.reason-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--brand);
  fill: none;
}

.reason-card h3 {
  font-size: 16.5px;
  margin-bottom: 9px;
}

.reason-card p {
  font-size: 14px;
}

.reason-card .btn-text {
  margin-top: 14px;
  font-size: 13.5px;
}

/* Full reason sections */
.full-reason {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.full-reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.full-reason .kicker-num {
  display: block;
  margin-bottom: 14px;
}

.full-reason h2 {
  margin-bottom: 16px;
}

.full-reason p {
  font-size: 16px;
  margin-bottom: 14px;
}

.full-reason .check-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.check-points li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  align-items: flex-start;
}

.check-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: 8px;
  flex-shrink: 0;
}

.full-reason .cta-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.compare-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

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

.compare-side.warn {
  background: rgba(193, 20, 37, .05);
  border: 1px solid rgba(193, 20, 37, .14);
}

.compare-side .lbl {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.compare-side .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.compare-vs-x {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.compare-panel .note {
  margin-top: 20px;
  text-align: center;
  font-size: 13.5px;
}

.doc-icon-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.doc-icon-row svg {
  width: 28px;
  height: 28px;
  stroke: var(--ink);
}

/* Checklist section */
.checklist-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 44px;
}

.checklist-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

.checklist-grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checklist-grid li .tickbox {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.6px solid var(--brand);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.checklist-grid li .tickbox svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand);
  stroke-width: 3;
}

/* Document checklist grouped */
.doc-checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.doc-group h3 {
  font-size: 14px;
  font-family: var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  font-weight: 600;
}

.doc-group ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.doc-group li {
  display: flex;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink);
  align-items: flex-start;
}

.doc-group li .box {
  width: 15px;
  height: 15px;
  border: 1.4px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Editorial split image sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-visual {
  order: 2;
}

.split.reverse .split-text {
  order: 1;
}

.illus-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/3.1;
  position: relative;
  box-shadow: var(--shadow);
}

.split-text .eyebrow {
  margin-bottom: 14px;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  font-size: 16px;
  margin-bottom: 22px;
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  position: relative;
  padding: 0 20px 0 0;
}

.step .step-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step:nth-child(1) .step-num {
  background: var(--brand);
}

.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13.5px;
}

.step-connector {
  position: absolute;
  top: 19px;
  left: 38px;
  right: -20px;
  height: 1px;
  background: var(--line);
}

.step:last-child .step-connector {
  display: none;
}

/* Direct answer blocks (mini AEO) */
.mini-answer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  box-shadow: 0 14px 34px rgba(17, 17, 17, .06);
}

.mini-answer .q-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  display: block;
  margin-bottom: 10px;
}

.mini-answer h2 {
  font-size: 23px;
  margin-bottom: 14px;
}

.mini-answer p {
  font-size: 15px;
  color: #5d6b73;
}

.two-col-answers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* Rejected vs delayed */
.rd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.rd-card {
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}

.rd-card.delay {
  background: var(--soft);
  border: 1px solid var(--line);
}

.rd-card.rejected {
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}

.rd-card.rejected::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  border-radius: 4px 0 0 4px;
}

.rd-card .rd-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.rd-card h3 {
  font-size: 20px;
  margin: 14px 0 10px;
}

.rd-card p {
  font-size: 14.5px;
  margin-bottom: 20px;
}

/* Support cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.support-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.support-card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand);
}

.support-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.support-card p {
  font-size: 14px;
}

/* Trust split */
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-top: 24px;
}

.trust-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  align-items: flex-start;
}

.trust-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-placeholder {
  grid-column: 1/-1;
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 44px;
  text-align: center;
}

.review-placeholder h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

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

/* Duration / entry compact cards */
.compact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.compact-card .sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 840px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: transform .2s ease;
}

.faq-item .plus::before,
.faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item .plus::before {
  width: 10px;
  height: 1.6px;
}

.faq-item .plus::after {
  width: 1.6px;
  height: 10px;
}

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

.faq-item[open] .plus::before,
.faq-item[open] .plus::after {
  background: var(--brand);
}

.faq-body {
  padding: 0 26px 24px;
}

.faq-body p {
  font-size: 14.5px;
}

/* Final CTA */
.final-cta {
  background: var(--dark);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 20, 37, .22), transparent 70%);
}

.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.final-cta p {
  color: rgba(255, 255, 255, .68);
  margin-top: 14px;
  font-size: 16px;
}

.final-cta .hero-ctas {
  justify-content: center;
  margin-top: 32px;
}

.final-cta .accent-line {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 2px;
}














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

.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
}

.sticky-cta .wa {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sticky-cta .req {
  background: var(--brand);
  color: var(--white);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--brand);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  z-index: 999;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
}

/* Responsive */
/* Styles moved from inline attributes */
.direct-answer-heading {
  font-size: 23px;
  margin-bottom: 14px;
}

.passport-review-graphic {
  width: 100%;
  height: 100%;
}

.compare-code {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}

.documents-review-graphic {
  width: 100%;
  height: 100%;
}

.photo-status {
  font-size: 13.5px;
  font-weight: 600;
}

.immigration-factors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.overstay-link {
  margin-top: 16px;
}

.prevention-heading {
  margin-top: 10px;
}

.checklist-link {
  margin-top: 30px;
}

.reapply-graphic {
  width: 100%;
  height: 100%;
}

.reapply-link {
  margin-top: 16px;
}

.rejection-ban-compare {
  margin-top: 22px;
}

.compare-description {
  font-size: 14px;
}

.followup-answers {
  margin-top: 22px;
}

.overstay-answer-link {
  margin-top: 16px;
}

.status-answer-link {
  margin-top: 16px;
}

.processing-speed-grid {
  align-items: center;
}

.processing-speed-heading {
  margin-top: 10px;
}

.processing-speed-text {
  margin-top: 16px;
  font-size: 16px;
}

.processing-speed-actions {
  margin-top: 24px;
}

.fast-processing-answer {
  margin-bottom: 22px;
}

.processing-time-link {
  margin-top: 16px;
}

.duration-answer {
  margin-bottom: 22px;
}

.option-links {
  margin-top: 20px;
}

.option-arrow {
  color: var(--brand);
  font-weight: 700;
}

.option-links {
  margin-top: 20px;
}

.option-arrow {
  color: var(--brand);
  font-weight: 700;
}

.trust-graphic {
  width: 100%;
  height: 100%;
}

/* =========================================================
   RESPONSIVE CSS
   All responsive rules are kept together at the bottom.
========================================================= */

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

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

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

  .step-connector {
    display: none;
  }

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

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

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  /* Keep the page heading/content first on mobile/tablet. */
  .hero-visual {
    order: initial;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .float-card {
    display: none;
  }

  .full-reason-grid,
  .split,
  .two-col-answers,
  .rd-grid,
  .compare-vs {
    grid-template-columns: 1fr;
  }

  .full-reason-grid {
    gap: 30px;
  }

  .split {
    gap: 34px;
  }

  .split.reverse .split-visual,
  .split.reverse .split-text {
    order: initial;
  }

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

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

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

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

  .compare-vs-x {
    margin: 0 auto;
  }

  .answer-card {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .section {
    padding: 56px 0;
  }

  .compact-cards {
    grid-template-columns: 1fr;
  }

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

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

  body {
    padding-bottom: 78px;
  }

  .sticky-cta {
    display: flex;
  }

  .hero-ctas .btn {
    flex: 1 1 180px;
  }
}

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

  .hero {
    padding: 38px 0 52px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-meta {
    gap: 14px 20px;
    margin-top: 26px;
  }
.immigration-factors-list{
  grid-template-columns: 1fr;
}
  .doc-card {
    padding: 30px 24px 26px;
  }

  .field {
    gap: 14px;
  }

  .answer-card {
    padding: 26px 22px;
    gap: 20px;
  }

  .answer-card p {
    font-size: 16px;
  }

  .reason-card,
  .compare-panel,
  .rd-card,
  .support-card,
  .review-card,
  .compact-card,
  .mini-answer,
  .doc-group {
    padding-left: 22px;
    padding-right: 22px;
  }

  .checklist-panel {
    padding: 30px 24px;
  }

  .steps-row {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .faq-item summary {
    padding: 19px 20px;
    gap: 14px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 20px 20px;
  }

  .final-cta {
    padding: 62px 0;
  }
}

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

  .hero-ctas,
  .full-reason .cta-row,
  .final-cta .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .full-reason .cta-row .btn,
  .final-cta .hero-ctas .btn {
    width: 100%;
    flex: none;
  }

  .doc-row {
    gap: 14px;
  }

  .field {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .field .label,
  .field .value {
    max-width: 100%;
  }

  .doc-checklist-grid {
    grid-template-columns: 1fr;
  }

  .checklist-panel,
  .answer-card {
    padding: 24px 20px;
  }

  .compact-card {
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .review-placeholder {
    padding: 30px 20px;
  }

  .sticky-cta {
    padding-left: 10px;
    padding-right: 10px;
    gap: 8px;
  }

  .sticky-cta a {
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}