: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;
}

.visa-delay-container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.visa-delay-page section {
  position: relative;
}

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


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

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

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

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

.visa-delay-page h1 {
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 800;
}

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

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

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


.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(193, 20, 37, .28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #c11425;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  overflow: hidden;
  padding: 10px 18px;
  transition: var(--transition-5);
  position: relative;
  z-index: 1;
}

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

.btn-secondary {
  background: var(--ink);
  color: var(--white);
  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);
}

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


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

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

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

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

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

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

/* Hero */
.visa-delay-hero {
  padding: 52px 0 66px;
}

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

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

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

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

.visa-delay-hero-visual {
  position: relative;
}

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

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

.status-card .sc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}

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

.status-row:last-child {
  border-bottom: none;
}

.status-row .s-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.status-row .s-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-row .s-left {
  display: flex;
  align-items: center;
  gap: 11px;
}

.status-row.s-normal .s-dot {
  background: var(--muted);
}

.status-row.s-approaching .s-dot {
  background: var(--accent);
}

.status-row.s-longer .s-dot {
  background: var(--brand);
}

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

.float-card.timing-note {
  bottom: -30px;
  left: -30px;
}

.float-card .ft-title {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.float-card .ft-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

/* Sections */
.visa-delay-section {
  padding: 74px 0;
}

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

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

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

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

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

/* 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: 13px;
  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 mark {
  background: rgba(255, 192, 0, .32);
  color: var(--ink);
  padding: 0 3px;
  border-radius: 3px;
}

.answer-badge {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.answer-badge .neq {
  color: var(--brand);
  font-weight: 700;
}

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

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

.sg-card .sg-indicator {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sg-card.normal .sg-indicator {
  background: var(--soft);
}

.sg-card.approaching .sg-indicator {
  background: rgba(255, 192, 0, .14);
}

.sg-card.longer .sg-indicator {
  background: rgba(193, 20, 37, .08);
}

.sg-card .sg-indicator svg {
  width: 17px;
  height: 17px;
  stroke: var(--ink);
}

.sg-card.approaching .sg-indicator svg {
  stroke: #a97600;
}

.sg-card.longer .sg-indicator svg {
  stroke: var(--brand);
}

.sg-card h3 {
  font-size: 15.5px;
  margin-bottom: 10px;
}

.sg-card p {
  font-size: 14px;
  color: #5d6b73;
}

/* Processing options 3-card */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.proc-card.express {
  border-color: rgba(255, 192, 0, .5);
}

.proc-card .proc-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

.proc-card .proc-time {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 10px 0 4px;
}

.proc-card.express .proc-time {
  color: var(--brand);
  position: relative;
}

.proc-card.express .proc-time::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}

.proc-card .proc-desc {
  font-size: 14px;
  margin-bottom: 22px;
}

.proc-card .btn {
  margin-top: auto;
}

.proc-disclaimer {
  margin-top: 22px;
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
}

/* Vertical timeline */
.timeline {
  display: flex;
  flex-direction: column;
  max-width: 640px;
}

.tl-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
}

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

.tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.6px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  z-index: 1;
}

.tl-step:first-child .tl-dot {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.tl-step:last-child .tl-dot {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.tl-line {
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: -36px;
  width: 1px;
  background: var(--line);
}

.tl-step:last-child .tl-line {
  display: none;
}

.tl-content h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
  padding-top: 8px;
}

.tl-content p {
  font-size: 14px;
}

/* Reason grid (8 cards) */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  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: 12px;
  margin-bottom: 15px;
}

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

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

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

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

.reason-card p {
  font-size: 14px;
  color: #5d6b73;
}

/* Split editorial */
.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 .visa-delay-eyebrow {
  margin-bottom: 14px;
}

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

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

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

/* Numbered step-list (what to do) */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.step-list-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.step-list-item:last-child {
  border-bottom: none;
}

.step-list-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
}

.step-list-item h3 {
  font-size: 15.5px;
  margin-bottom: 6px;
}

.step-list-item p {
  font-size: 14px;
}

/* Compare panel (reused) */
.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: 13px;
  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: 12px;
  font-weight: 700;
  margin: 0 auto;
}

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

/* Delayed vs rejected large cards */
.rd-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.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: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

.rd-neq {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  margin: 0 auto;
}

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

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

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

.mini-answer p {
  font-size: 15px;
  color: var(--ink);
}

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

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

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

.situation-card .sit-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}

.situation-card.ok .sit-tag {
  background: var(--soft);
  color: var(--muted);
}

.situation-card.info .sit-tag {
  background: rgba(255, 192, 0, .16);
  color: #8a6200;
}

.situation-card.action .sit-tag {
  background: rgba(193, 20, 37, .08);
  color: var(--brand);
}

.situation-card h3 {
  font-size: 15.5px;
  margin-bottom: 8px;
}

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

/* Checklist */
.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: 12px;
  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: 12px;
  height: 12px;
  stroke: var(--brand);
  stroke-width: 3;
}

/* Compact duration/entry 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;
}

/* Processing vs validity/duration two-card */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.concept-card .c-label {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
  display: block;
}

.concept-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

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

/* How to apply mini steps */
.mini-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.mini-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
}

.mini-step .ms-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--brand);
  font-size: 13px;
  margin-bottom: 8px;
}

.mini-step .ms-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

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

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

.price-card .p-eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card .p-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 10px 0 18px;
  color: var(--ink);
}

.price-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Trust list */
.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 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-placeholder {
  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;
}

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

.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: 15.5px;
  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 .visa-delay-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: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -12px 30px rgba(17, 17, 17, .08);
}

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

.sticky-cta .status-link {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

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

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

/* Responsive */
@media (max-width:1100px) {
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width:1024px) {

  .status-grid,
  .proc-grid,
  .price-grid,
  .situation-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width:860px) {


  .visa-delay-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .visa-delay-hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .float-card {
    display: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .two-col-answers {
    grid-template-columns: 1fr;
  }

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

  .rd-neq {
    margin: 6px auto;
  }

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

  .mini-steps {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .visa-delay-section {
    padding: 54px 0;
  }

  body {
    padding-bottom: 78px;
  }

  .sticky-cta {
    display: flex;
  }

  .visa-delay-hero-ctas .btn {
    flex: 1;
  }

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

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

  .mini-steps {
    grid-template-columns: 1fr 1fr;
  }

  .checklist-panel,
  .answer-card {
    padding: 26px 22px;
  }

  .visa-delay-container {
    padding: 0 20px;
  }
}

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

  * {
    transition: none !important;
  }
}

/* Styles moved from inline attributes */
.delay-answer-title {
  font-size: 23px;
  margin-bottom: 12px;
}

.delay-status-cta {
  margin-top: 30px;
}

.processing-timeline-cta {
  margin-top: 30px;
}

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

.delayed-steps-cta {
  margin-top: 30px;
}

.delayed-rejected-link {
  margin-top: 26px;
}

.express-delay-title {
  font-size: 20px;
}

.express-delay-link {
  margin-top: 16px;
}

.urgent-delay-title {
  font-size: 20px;
}

.urgent-delay-link {
  margin-top: 16px;
}

.express-urgent-compare-panel {
  margin-top: 22px;
  max-width: 520px;
}

.express-urgent-compare-grid {
  grid-template-columns: 1fr auto 1fr;
}

.weekend-delay-answer {
  max-width: 760px;
}

.reapply-delay-answer {
  max-width: 760px;
}

.reapply-delay-actions {
  margin-top: 20px;
}

.status-check-title {
  font-size: 23px;
  margin-bottom: 12px;
}

.status-check-flow {
  gap: 14px;
}

.status-check-action {
  margin-top: 22px;
}

.support-contact-action {
  margin-top: 30px;
}

.avoid-delay-title {
  margin-top: 10px;
}

.duration-entry-intro {
  margin-bottom: 22px;
}

.duration-card-list {
  margin-top: 20px;
}

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

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

.entry-card-list {
  margin-top: 20px;
}

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

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

.processing-validity-intro {
  margin-bottom: 22px;
}

.processing-validity-note {
  margin-bottom: 16px;
}

.validity-details-link {
  margin-top: 18px;
}

.processing-validity-actions {
  margin-top: 16px;
}

.how-to-apply-action {
  margin-top: 30px;
}

.visa-fees-action {
  margin-top: 22px;
}

.why-dvi-illustration {
  width: 100%;
  height: 100%;
}