:root {
  --ink: #101820;
  --muted: #5d6b73;
  --soft: #f5f5f5;
  --line: #e6e6e6;
  --brand: #c11425;
  --accent: #ffc000;
  --dark: #111111;
  --white: #ffffff;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .10);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}


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

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.05;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.12;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

p {
  color: #5d6b73;
  margin: 0;
}

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

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 64px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

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

.figure {
  font-family: var(--mono);
}









.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(193, 20, 37, .28);
}

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

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

.btn-block {
  width: 100%;
}




.breadcrumb {
  padding: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--mono);
}

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

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

.breadcrumb .sep {
  margin: 0 8px;
  opacity: .5;
}

.breadcrumb .current {
  color: var(--ink);
}

/* ---------- hero ---------- */
.hero {
  padding: 44px 0 90px;
}

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

.hero h1 {
  margin: 16px 0 20px;
}

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

.hero-media {
  position: relative;
}

.hero-media .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #e9ebec, #f7f5f2);
}

.stamp-card {
  position: absolute;
  left: -28px;
  bottom: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  width: 210px;
}

.stamp-card .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stamp-card .big {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 6px 0 4px;
  line-height: 1.15;
}

.stamp-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-right: 7px;
}

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

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

.answer-card .q-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--brand);
  flex-shrink: 0;
}

.answer-card .direct {
  font-size: 19px;
  color: #5d6b73;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.tag-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---------- fine ticket card (signature element) ---------- */
.ticket {
  display: grid;
  grid-template-columns: 1.1fr 1px .9fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.ticket-main {
  padding: 48px;
  position: relative;
}

.ticket-stub {
  padding: 48px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.ticket-divider {
  background: transparent;
  position: relative;
}

.ticket-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px dashed var(--line);
}

.ticket-divider .notch {
  position: absolute;
  left: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--soft);
  border: 1px solid var(--line);
}

.ticket-divider .notch.top {
  top: -11px;
}

.ticket-divider .notch.bottom {
  bottom: -11px;
}

.fine-amount {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--brand);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -.02em;
}

.fine-unit {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}

.updated-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  margin-bottom: 22px;
}

.updated-stamp .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.stub-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

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

.stub-row .label {
  font-size: 13.5px;
  color: var(--muted);
}

.stub-row .val {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

/* ---------- generic cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
}

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

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

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

.note-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.note-box .ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--ink);
}

/* timeline */
.timeline {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding: 10px 0;
}

.tl-step {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 20px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--mono);
  letter-spacing: .02em;
  color: var(--ink);
}

.tl-arrow {
  color: var(--line);
  font-size: 22px;
  padding: 0 6px;
  flex-shrink: 0;
}

/* examples */
.ex-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}

.ex-card .days {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
}

.ex-card .calc {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0;
}

.ex-card .total {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--brand);
  margin-top: 6px;
}

/* comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.compare>div {
  padding: 36px;
}

.compare .col-ext {
  background: var(--white);
}

.compare .col-over {
  background: var(--soft);
}

.compare .col-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

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

.cl-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
}

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

.cl-box {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
}

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

.split img,
.split .frame {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #eceeee, #f7f5f2);
}

/* trust cards */
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}

.trust-card .ic {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--brand);
  font-weight: 600;
}

/* related */
.rel-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color .2s;
}

.rel-card:hover {
  border-color: var(--brand);
}

.rel-card .arrow {
  color: var(--brand);
  font-family: var(--mono);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16.5px;
  gap: 20px;
}

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

.faq-item .plus {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
}

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

.faq-item .a {
  padding: 0 4px 22px;
  color: var(--muted);
  max-width: 760px;
}

/* reviews placeholder */
.review-placeholder {
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  background: var(--white);
}

/* final cta */
.final-cta {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  margin: 0 24px;
}

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

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

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

.final-cta .accent-line {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 22px;
}










/* mobile sticky cta */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .08);
}

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

:is(a, button, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Styles moved from inline attributes */
.visa-overstay-hero-text {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
}

.visa-overstay-direct-aeo-answer-highlight {
  color: var(--ink);
}

.visa-overstay-fine-text {
  font-size: 22px;
  color: var(--muted);
}

.visa-overstay-fine-text-2 {
  margin-top: 22px;
}

.visa-overstay-section-link {
  margin-top: 6px;
}

.visa-overstay-authority-note-heading {
  font-size: 17px;
  margin-bottom: 8px;
}

.visa-overstay-calculation-text {
  max-width: 680px;
  margin-top: 26px;
}

.visa-overstay-grace-period-grid-2 {
  align-items: start;
  gap: 50px;
}

.visa-overstay-grace-period-text {
  font-size: 16.5px;
}

.visa-overstay-8-9-10-11-visa-type-sections-text {
  margin-top: 10px;
}

.visa-overstay-8-9-10-11-visa-type-sections-link {
  margin-top: 18px;
}

.visa-overstay-8-9-10-11-visa-type-sections-text-2 {
  margin-top: 10px;
}

.visa-overstay-8-9-10-11-visa-type-sections-link-2 {
  margin-top: 18px;
}

.visa-overstay-8-9-10-11-visa-type-sections-text-3 {
  margin-top: 10px;
}

.visa-overstay-section-link-2 {
  margin-top: 18px;
}

.visa-overstay-section-text {
  margin-top: 10px;
}

.visa-overstay-section-highlight {
  color: var(--ink);
}

.visa-overstay-section-highlight-2 {
  color: var(--ink);
}

.visa-overstay-section-link-3 {
  margin-top: 18px;
}

.visa-overstay-extension-answer-card {
  grid-template-columns: 1fr;
  background: var(--soft);
}

.visa-overstay-extension-heading {
  margin-bottom: 14px;
}

.visa-overstay-extension-text {
  max-width: 640px;
}

.visa-overstay-extension-link {
  margin-top: 22px;
}

.visa-overstay-already-overstayed-figure {
  color: var(--brand);
  font-size: 22px;
  font-weight: 600;
}

.visa-overstay-already-overstayed-heading {
  margin-top: 10px;
  font-size: 17px;
}

.visa-overstay-already-overstayed-figure-2 {
  color: var(--brand);
  font-size: 22px;
  font-weight: 600;
}

.visa-overstay-already-overstayed-heading-2 {
  margin-top: 10px;
  font-size: 17px;
}

.visa-overstay-already-overstayed-figure-3 {
  color: var(--brand);
  font-size: 22px;
  font-weight: 600;
}

.visa-overstay-already-overstayed-heading-3 {
  margin-top: 10px;
  font-size: 17px;
}

.visa-overstay-already-overstayed-figure-4 {
  color: var(--brand);
  font-size: 22px;
  font-weight: 600;
}

.visa-overstay-already-overstayed-heading-4 {
  margin-top: 10px;
  font-size: 17px;
}

.visa-overstay-already-overstayed-block {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.visa-overstay-check-fines-card {
  max-width: 560px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 38px;
}

.visa-overstay-check-fines-heading {
  margin-bottom: 6px;
}

.visa-overstay-check-fines-link {
  margin-top: 20px;
}

.visa-overstay-paying-text {
  max-width: 700px;
}

.visa-overstay-paying-text-2 {
  max-width: 700px;
  margin-top: 14px;
  font-size: 14px;
}

.visa-overstay-unpaid-grid-2 {
  align-items: start;
  gap: 50px;
}

.visa-overstay-unpaid-text {
  font-size: 16.5px;
}

.visa-overstay-unpaid-link {
  margin-top: 18px;
}

.visa-overstay-cannot-afford-heading {
  font-size: 17px;
  margin-bottom: 8px;
}

.visa-overstay-future-travel-grid-2 {
  align-items: start;
  gap: 50px;
}

.visa-overstay-future-travel-text {
  font-size: 16.5px;
}

.visa-overstay-overstay-vs-extension-col-tag {
  color: var(--brand);
}

.visa-overstay-overstay-vs-extension-text {
  color: #5d6b73;
  font-size: 15.5px;
  margin-bottom: 16px;
}

.visa-overstay-overstay-vs-extension-text-2 {
  color: #5d6b73;
  font-size: 15.5px;
}

.visa-overstay-overstay-vs-extension-link {
  margin-top: 22px;
}

.visa-overstay-overstay-vs-extension-col-tag-2 {
  color: var(--muted);
}

.visa-overstay-overstay-vs-extension-text-3 {
  color: #5d6b73;
  font-size: 15.5px;
  margin-bottom: 16px;
}

.visa-overstay-overstay-vs-extension-text-4 {
  color: #5d6b73;
  font-size: 15.5px;
}

.visa-overstay-avoid-heading {
  font-size: 16.5px;
}

.visa-overstay-avoid-heading-2 {
  font-size: 16.5px;
}

.visa-overstay-avoid-heading-3 {
  font-size: 16.5px;
}

.visa-overstay-avoid-heading-4 {
  font-size: 16.5px;
}

.visa-overstay-avoid-heading-5 {
  font-size: 16.5px;
}

.visa-overstay-checklist-text {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
}

.visa-overstay-image-section-frame {
  aspect-ratio: 4/3;
}

.visa-overstay-image-section-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.visa-overstay-image-section-heading {
  margin: 14px 0 16px;
}

.visa-overstay-image-section-text {
  font-size: 16.5px;
}

.visa-overstay-image-section-link {
  margin-top: 22px;
}

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

.visa-overstay-trust-text {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-trust-text-2 {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-trust-text-3 {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-trust-text-4 {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-trust-text-5 {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-trust-text-6 {
  color: #5d6b73;
  font-weight: 500;
}

.visa-overstay-reviews-text {
  max-width: 420px;
  margin: 0 auto;
}

.visa-overstay-section-link-4 {
  color: var(--brand);
  font-weight: 600;
}

.visa-overstay-section-link-5 {
  color: var(--brand);
  font-weight: 600;
}

.visa-overstay-section-link-6 {
  color: var(--brand);
  font-weight: 600;
}

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

@media (max-width: 900px) {
  .main-wrapper{
    padding: 0 20px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Keep the heading/content first on stacked layouts. */
  .hero-media {
    order: initial;
  }

  .stamp-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .grid-3,
  .grid-4,
  .visa-overstay-trust-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .ticket-divider {
    display: none;
  }

  .ticket-main,
  .ticket-stub {
    padding: 34px;
  }

  .timeline {
    flex-direction: column;
    align-items: stretch;
  }

  .tl-step {
    width: 100%;
    min-width: 0;
  }

  .tl-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .sticky-mobile {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

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

  .breadcrumb {
    padding-top: 12px;
    font-size: 12px;
    line-height: 1.6;
  }

  .section {
    padding: 56px 0;
  }

  .section.tight {
    padding: 44px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero {
    padding: 30px 0 56px;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .stamp-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .answer-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .ticket-main,
  .ticket-stub {
    padding: 28px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .visa-overstay-trust-grid-3 {
    grid-template-columns: 1fr;
  }

  .visa-overstay-grace-period-grid-2,
  .visa-overstay-unpaid-grid-2,
  .visa-overstay-future-travel-grid-2 {
    gap: 24px;
  }

  .card {
    padding: 24px;
  }

  .note-box {
    padding: 24px;
  }

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

  .compare > div {
    padding: 28px;
  }

  .checklist {
    padding: 28px;
  }

  .review-placeholder {
    padding: 32px 24px;
  }

  .final-cta {
    margin: 0 16px;
    padding: 44px 24px;
  }

  .visa-overstay-check-fines-card {
    max-width: 100%;
    padding: 28px;
  }

  .stub-row {
    gap: 12px;
  }

  .stub-row .val {
    text-align: right;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 16px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .answer-card {
    padding: 24px;
  }

  .answer-card .q-badge {
    width: 44px;
    height: 44px;
  }

  .ticket-main,
  .ticket-stub {
    padding: 24px;
  }

  .fine-amount {
    font-size: 44px;
  }

  .fine-unit {
    font-size: 14px;
  }

  .note-box {
    flex-direction: column;
    gap: 14px;
  }

  .faq-item summary {
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
  }

  .faq-item .a {
    padding-right: 0;
  }

  .final-cta {
    margin: 0 12px;
    padding: 40px 20px;
  }
}

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

  .section {
    padding: 48px 0;
  }

  .section.tight {
    padding: 38px 0;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-ctas,
  .visa-overstay-already-overstayed-block,
  .final-cta .ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .visa-overstay-already-overstayed-block .btn,
  .final-cta .ctas .btn {
    width: 100%;
  }

  .card,
  .ticket-main,
  .ticket-stub,
  .answer-card,
  .checklist {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stub-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .stub-row .label,
  .stub-row .val {
    width: 100%;
    text-align: left;
  }

  .updated-stamp {
    max-width: 100%;
    line-height: 1.5;
  }

  .fine-amount {
    font-size: 40px;
  }

  .cl-item {
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-mobile {
    padding: 10px 12px;
  }

  .sticky-mobile .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}