:root {
  --ink: #17211b;
  --muted: #5e6a62;
  --line: #dce4dd;
  --paper: #fbfcf8;
  --white: #ffffff;
  --green: #0f5132;
  --green-2: #1f7a4b;
  --saffron: #d87622;
  --teal: #186b75;
  --blue: #284f9f;
  --shadow: 0 24px 70px rgba(22, 37, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid rgba(220, 228, 221, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #35433a;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--green);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.primary-btn {
  background: var(--green);
  color: var(--white);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(58px, 7vw, 104px) clamp(18px, 6vw, 92px) 36px;
  background:
    linear-gradient(120deg, rgba(15, 81, 50, 0.09), rgba(216, 118, 34, 0.09)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--green);
  text-transform: none;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

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

.proof-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #35433a;
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(241, 247, 239, 0.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23d8e2da' stroke-width='1'%3E%3Cpath d='M0 55h220M0 110h220M0 165h220M55 0v220M110 0v220M165 0v220'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: var(--shadow);
  overflow: hidden;
}

.document-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(72%, 360px);
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 28px 60px rgba(20, 35, 26, 0.2);
}

.document-card span,
.document-card small,
.timeline-card small {
  opacity: 0.84;
  font-weight: 750;
}

.document-card strong {
  margin: 6px 0 8px;
  font-size: 32px;
  line-height: 1.02;
}

.passport-card {
  top: 44px;
  left: 34px;
  background: linear-gradient(140deg, var(--green), #153d56);
}

.status-card {
  right: 30px;
  bottom: 128px;
  background: linear-gradient(140deg, var(--teal), var(--blue));
}

.timeline-card {
  position: absolute;
  right: 30px;
  bottom: 32px;
  left: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.timeline-card div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.timeline-card strong {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 22px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 92px);
}

.band {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.quick-grid,
.service-grid,
.location-grid,
.risk-grid {
  display: grid;
  gap: 16px;
}

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

.quick-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green);
  font-weight: 850;
}

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

.service-card,
.location-grid article,
.doc-grid article,
.fee-card,
.risk-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card > svg,
.doc-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--green);
}

.service-card p,
.location-grid p,
.steps p,
.faq-list p,
.cta-section p,
.site-footer p {
  color: var(--muted);
}

.service-card ul,
.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-card li {
  padding-top: 8px;
  color: #35433a;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #eaf3ee;
  color: var(--green);
  font-weight: 850;
}

.steps p {
  margin-bottom: 0;
}

.fee-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.fee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
}

.fee-card h3 {
  margin-bottom: 16px;
}

.fee-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.fee-table div:last-child {
  border-bottom: 0;
}

.fee-table span {
  color: var(--green);
  font-weight: 900;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

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

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.doc-grid p {
  color: var(--muted);
}

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

.risk-grid article {
  border-left: 4px solid var(--saffron);
}

.risk-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.risk-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.checks {
  background: #eef6f0;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.check-list svg {
  color: var(--green-2);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(18px, 6vw, 92px) clamp(56px, 7vw, 88px);
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 81, 50, 0.98), rgba(18, 25, 20, 0.98)),
    var(--ink);
  color: var(--white);
}

.cta-section .eyebrow {
  color: #f3a445;
}

.cta-section p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta-section .primary-btn {
  background: #ffffff;
  color: var(--green);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.start-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 850;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 36px clamp(18px, 6vw, 92px);
  background: #101912;
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #0b7a3b;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(9, 67, 35, 0.34);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: #095f31;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 480px;
  }

  .quick-grid,
  .service-grid,
  .location-grid,
  .risk-grid,
  .doc-grid,
  .fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .quick-grid,
  .service-grid,
  .location-grid,
  .risk-grid,
  .doc-grid,
  .fee-grid,
  .check-list,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
    padding: 18px;
  }

  .document-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 184px;
    margin-bottom: 14px;
  }

  .timeline-card {
    position: relative;
    inset: auto;
  }

  .cta-section {
    display: grid;
  }

  .cta-section .start-link {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 56px;
    border-radius: 8px;
  }
}
