:root {
  --color-ink: #07152f;
  --color-text: #22304a;
  --color-muted: #647086;
  --color-blue: #0b3478;
  --color-blue-dark: #06265c;
  --color-cyan: #c99d37;
  --color-green: #c99d37;
  --color-gold: #d8ad45;
  --color-white: #ffffff;
  --color-soft: #f6f7f4;
  --color-line: #e2dfd5;
  --shadow-soft: 0 20px 50px rgba(7, 21, 47, 0.1);
  --shadow-card: 0 12px 30px rgba(7, 21, 47, 0.08);
  --container: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--color-white);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 76px 0;
}

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

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

.topbar {
  display: none;
  color: var(--color-white);
  background: var(--color-ink);
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.topbar a {
  color: #f1d486;
}

.nav {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-weight: 900;
}

.nav__logo {
  width: clamp(162px, 32vw, 236px);
  height: auto;
  object-fit: contain;
}

.nav__toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  inset: 74px 0 auto 0;
  display: none;
  padding: 18px 16px 24px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.nav__menu.is-open {
  display: grid;
  gap: 6px;
}

.nav__menu a {
  padding: 12px 8px;
  color: var(--color-muted);
  font-weight: 800;
}

.nav__menu a:hover,
.nav__menu a:focus {
  color: var(--color-blue);
}

.nav__menu .nav__cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 64px 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 247, 244, 0.95) 58%, rgba(235, 226, 204, 0.9) 100%);
}

.home-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.42) 64%, rgba(7, 21, 47, 0.2) 100%),
    url("assets/homepage-hero-consultation.png") right center / cover no-repeat;
}

.gci-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/gci-hero-diaspora.png") right center / cover no-repeat;
}

.tourist-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-tourist-visa.png") right center / cover no-repeat;
}

.business-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-business-visa.png") right center / cover no-repeat;
}

.working-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-working-visa.png") right center / cover no-repeat;
}

.stay-permit-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-stay-permit.png") right center / cover no-repeat;
}

.visa-extension-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-visa-extension.png") right center / cover no-repeat;
}

.skim-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-skim.png") right center / cover no-repeat;
}

.visa-problem-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-visa-problem.png") right center / cover no-repeat;
}

.visa-correction-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-visa-correction.png") right center / cover no-repeat;
}

.visa-not-issued-page .hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.48) 66%, rgba(7, 21, 47, 0.18) 100%),
    url("assets/hero-visa-not-issued.png") right center / cover no-repeat;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}

.hero__content {
  max-width: 680px;
}

.gci-page .hero__content,
.tourist-page .hero__content,
.business-page .hero__content,
.working-page .hero__content,
.stay-permit-page .hero__content,
.visa-extension-page .hero__content,
.skim-page .hero__content,
.visa-problem-page .hero__content,
.visa-correction-page .hero__content,
.visa-not-issued-page .hero__content {
  max-width: 780px;
}

.rating-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  padding: 10px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: var(--shadow-card);
}

.rating-card strong {
  color: var(--color-blue);
  font-size: 1.08rem;
}

.rating-card span {
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: 2.55rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 900;
}

.hero__text {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--color-ink);
  background: var(--color-green);
  box-shadow: 0 14px 28px rgba(201, 157, 55, 0.28);
}

.button--primary:hover,
.button--primary:focus {
  background: #b4892c;
}

.button--secondary {
  color: var(--color-blue);
  background: var(--color-white);
  border-color: var(--color-line);
}

.button--secondary:hover,
.button--secondary:focus {
  border-color: var(--color-blue);
}

.hero-board {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 223, 213, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-board__status,
.hero-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-board__footer {
  align-items: flex-start;
  padding-top: 4px;
}

.hero-board__footer strong {
  max-width: 220px;
  color: var(--color-ink);
  text-align: right;
  line-height: 1.3;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 157, 55, 0.16);
}

.document-stack {
  display: grid;
  gap: 12px;
}

.document-stack article {
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-left: 5px solid var(--color-blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(7, 21, 47, 0.06);
}

.document-stack article:nth-child(2) {
  border-left-color: var(--color-gold);
}

.document-stack article:nth-child(3) {
  border-left-color: var(--color-green);
}

.document-stack span,
.service-card__tag,
.step__index {
  display: inline-grid;
  place-items: center;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 900;
  background: #f4ead0;
  border-radius: 6px;
}

.document-stack span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 8px;
}

.document-stack strong {
  display: block;
  color: var(--color-ink);
  line-height: 1.35;
}

.service-strip {
  color: var(--color-white);
  background: var(--color-blue);
}

.trust-band {
  padding: 54px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.trust-band__grid {
  display: grid;
  gap: 22px;
}

.trust-band h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.8rem;
}

.trust-band__content p {
  margin-bottom: 20px;
  color: var(--color-muted);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.service-strip span {
  display: grid;
  min-height: 64px;
  place-items: center;
  padding: 14px;
  background: var(--color-blue);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
}

.services-grid,
.steps {
  display: grid;
  gap: 16px;
}

.service-card,
.step,
.why-list article,
.faq-list details {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 21, 47, 0.04);
}

.service-card,
.step {
  padding: 24px;
}

.service-card {
  position: relative;
  display: block;
  min-height: 100%;
}

a.service-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

a.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(216, 173, 69, 0.72);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: 0 18px 42px rgba(7, 21, 47, 0.1);
  outline: none;
}

a.service-card:hover .text-link,
a.service-card:focus-visible .text-link {
  color: #b4892c;
  text-decoration: underline;
}

.visa-problem-page .services-grid {
  grid-template-columns: 1fr;
}

.service-card--featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ec 100%);
  border-color: rgba(216, 173, 69, 0.58);
}

.service-card--featured::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--color-gold);
}

.service-card__tag,
.step__index {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
}

.service-card__tag {
  width: auto;
  height: auto;
  min-height: 0;
  margin-bottom: 18px;
  place-items: start;
  color: var(--color-gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 0;
}

.step__index {
  place-items: center;
}

.service-card p,
.step p,
.split-section p,
.why-list p,
.faq-list p,
.cta-section p,
.site-footer p {
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-gold);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus {
  color: #f1d486;
  text-decoration: underline;
}

.split-section {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.split-section__grid,
.why-section__grid,
.faq-grid {
  display: grid;
  gap: 28px;
}

.split-section__content p {
  margin-bottom: 24px;
}

.checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checklist span {
  padding: 8px 12px;
  color: var(--color-blue);
  background: #f4ead0;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.stats-section {
  padding: 72px 0;
  color: var(--color-white);
  background: var(--color-ink);
}

.stats-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

.stats-intro .eyebrow,
.stats-intro h2 {
  color: var(--color-white);
}

.stats-intro h2 {
  max-width: 920px;
  font-size: 2rem;
}

.stats-intro p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.stats-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.stats-grid div {
  display: grid;
  gap: 2px;
  min-height: 140px;
  align-content: center;
  padding: 22px;
  background: var(--color-ink);
}

.stats-grid strong {
  font-size: 1.45rem;
  line-height: 1.15;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.process-section {
  border-top: 1px solid var(--color-line);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 21, 47, 0.04);
}

.process-list span {
  color: var(--color-cyan);
  font-size: 0.86rem;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 0;
}

.process-list p {
  margin: 0;
  color: var(--color-muted);
}

.why-section {
  background:
    linear-gradient(rgba(7, 21, 47, 0.91), rgba(7, 21, 47, 0.91)),
    url("assets/sentravisa-logo.png") right 8% center / min(44vw, 520px) auto no-repeat;
}

.why-section .eyebrow,
.why-section h2 {
  color: var(--color-white);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list article {
  padding: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  color: var(--color-ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

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

.cta-section__content {
  max-width: 780px;
}

.cta-section p {
  margin-bottom: 26px;
}

.site-footer {
  padding: 38px 0;
  color: var(--color-white);
  background: #071123;
}

.site-footer__grid {
  display: grid;
  gap: 24px;
}

.site-footer .footer-brand,
.site-footer p,
.footer-contact a,
.footer-contact span {
  color: var(--color-white);
}

.footer-brand {
  font-size: 1.2rem;
}

.site-footer p {
  margin: 10px 0 0;
  opacity: 0.76;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-contact span {
  font-weight: 900;
}

.footer-contact a {
  opacity: 0.82;
}

.footer-contact a:hover,
.footer-contact a:focus {
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 640px) {
  .topbar {
    display: block;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .stats-intro h2 {
    font-size: 2.5rem;
  }

  .hero {
    min-height: calc(100vh - 112px);
  }

  .nav__menu {
    inset: 112px 0 auto 0;
  }

  .service-strip__grid,
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-strip span:nth-child(5),
  .service-strip span:nth-child(6) {
    grid-column: span 2;
  }

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 920px) {
  .section {
    padding: 96px 0;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .stats-grid strong {
    font-size: 1.75rem;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav__menu a {
    padding: 10px 12px;
  }

  .nav__menu .nav__cta {
    margin-top: 0;
    margin-left: 8px;
    padding: 10px 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: center;
  }

  .gci-page .hero__grid,
  .tourist-page .hero__grid,
  .business-page .hero__grid,
  .working-page .hero__grid,
  .stay-permit-page .hero__grid,
  .visa-extension-page .hero__grid,
  .skim-page .hero__grid,
  .visa-problem-page .hero__grid,
  .visa-correction-page .hero__grid,
  .visa-not-issued-page .hero__grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(340px, 0.38fr);
  }

  .home-page .hero__grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(340px, 0.38fr);
  }

  .home-page .hero__content {
    max-width: 680px;
  }

  .hero-board {
    padding: 24px;
  }

  .service-strip__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .service-strip span:nth-child(5),
  .service-strip span:nth-child(6) {
    grid-column: auto;
  }

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

  .visa-problem-page .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-section__grid,
  .trust-band__grid,
  .why-section__grid,
  .faq-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

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