:root {
  --ink: #111515;
  --ink-2: #273130;
  --muted: #68736f;
  --line: #e4e7e2;
  --paper: #ffffff;
  --paper-2: #f6f7f4;
  --white: #ffffff;
  --gold: #b99a55;
  --gold-2: #efe4c9;
  --gold-3: #f9f5eb;
  --green: #286c64;
  --green-dark: #123d3a;
  --shadow: 0 24px 70px rgba(17, 21, 21, 0.14);
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --radius: 8px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

body.nav-open {
  overflow: hidden;
}

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

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0) scale(0.985);
}

[data-reveal="right"] {
  transform: translate3d(34px, 0, 0) scale(0.985);
}

.heading-media img,
.visual-panel img,
.requirements-grid img {
  filter: saturate(0.86) contrast(1.06) brightness(0.96);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms ease;
}

.heading-media:hover img,
.visual-panel:hover img,
.requirements-grid article:hover img {
  transform: scale(1.055);
  filter: saturate(0.98) contrast(1.08) brightness(1);
}

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

button,
input,
select {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 21, 21, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1220px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
}

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

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #050606;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

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

.brand strong {
  font-size: 1.04rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: currentColor;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
  overflow: hidden;
  isolation: isolate;
}

.nav-cta::after,
.button::after {
  position: absolute;
  inset: -45% auto -45% -70%;
  z-index: 1;
  width: 48%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: skewX(-18deg);
  transition: left 620ms ease;
  pointer-events: none;
}

.nav-cta:hover::after,
.button:hover::after {
  left: 122%;
}

.nav-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-3), var(--gold-2));
  border-color: rgba(185, 154, 85, 0.3);
  box-shadow: 0 14px 34px rgba(185, 154, 85, 0.18);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, var(--gold-2));
  border-color: rgba(185, 154, 85, 0.42);
  box-shadow: 0 16px 42px rgba(185, 154, 85, 0.18);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.glass-button,
.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 18px 48px rgba(17, 21, 21, 0.16);
  backdrop-filter: blur(18px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  padding: calc(var(--header-height) + 48px) 0 74px;
  color: var(--white);
  overflow: hidden;
  background: #0b0f0f;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 12, 12, 0.88) 0%, rgba(9, 12, 12, 0.62) 46%, rgba(9, 12, 12, 0.32) 100%),
    url("assets/img/hero-team.jpg") center / cover no-repeat;
  filter: saturate(0.86) contrast(1.06) brightness(0.94);
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 26%;
  content: "";
  background: linear-gradient(0deg, rgba(17, 21, 21, 0.7), transparent);
}

.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 1160px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 760px;
  margin-top: 44px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-proof span {
  position: relative;
  padding-left: 18px;
}

.hero-proof span::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(239, 228, 201, 0.55);
}

.scroll-hint {
  position: absolute;
  right: min(48px, 5vw);
  bottom: 24px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-band {
  padding: 26px 0;
  background: var(--ink);
  color: var(--white);
}

.credibility-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 16px 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(17, 21, 21, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 235, 0.88)),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.credibility-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.credibility-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px 0 34px;
  color: var(--ink-2);
  border: 1px solid rgba(185, 154, 85, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 850;
}

.credibility-row span::before {
  position: absolute;
  left: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 18px rgba(185, 154, 85, 0.38);
}

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

.trust-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.trust-grid article,
.plan-card,
.calculator-card,
.requirements-grid article,
.country-card,
.faq-list details {
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.trust-grid article:hover,
.plan-card:hover,
.calculator-card:hover,
.requirements-grid article:hover,
.country-card:hover,
.faq-list details:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 154, 85, 0.28);
  box-shadow: 0 24px 68px rgba(17, 21, 21, 0.13);
}

.trust-grid span,
.plan-topline,
.requirements-grid span,
.country-card span,
.process-list span {
  color: var(--gold);
  font-size: 1.00rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-grid article.is-visible > span,
.requirements-grid article.is-visible span,
.country-card.is-visible span,
.process-list article.is-visible > span {
  animation: numberPop 740ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-grid h2,
.trust-grid p,
.section-heading h2,
.section-heading p,
.plan-card h3,
.plan-card p,
.calculator-copy h2,
.calculator-copy p,
.requirements-grid strong,
.process-layout h2,
.process-list h3,
.process-list p,
.country-card h3,
.country-card p,
.faq-layout h2,
.contact-layout h2,
.contact-layout p {
  margin-top: 0;
}

.trust-grid h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.trust-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 102px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.media-heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  align-items: stretch;
}

.media-heading > div:first-child {
  display: grid;
  align-content: end;
}

.heading-media {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(17, 21, 21, 0.12);
}

.heading-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 21, 21, 0.05), rgba(17, 21, 21, 0.68));
}

.heading-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.glass-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.glass-caption strong,
.glass-caption span {
  display: block;
}

.glass-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading h2,
.calculator-copy h2,
.process-layout h2,
.assurance-layout h2,
.faq-layout h2,
.contact-layout h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p,
.calculator-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  min-height: 460px;
  padding: 34px;
  border: 1px solid rgba(17, 21, 21, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 244, 0.76)),
    var(--white);
  box-shadow: 0 18px 54px rgba(17, 21, 21, 0.08);
  backdrop-filter: blur(16px);
}

.plan-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 61, 58, 0.92), rgba(17, 21, 21, 0.96)),
    var(--green-dark);
}

.plan-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
}

.plan-topline strong {
  color: inherit;
}

.plan-card h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.plan-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.plan-card.featured p,
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
}

.plan-card li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.featured .text-link {
  color: var(--gold-2);
}

.plan-button {
  width: fit-content;
  min-height: 48px;
  color: var(--green-dark);
  border-color: rgba(185, 154, 85, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 228, 201, 0.58)),
    rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 16px 34px rgba(17, 21, 21, 0.1);
}

.plan-button:hover {
  border-color: rgba(185, 154, 85, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 20px 44px rgba(17, 21, 21, 0.14);
}

.featured .plan-button {
  color: var(--white);
  border-color: rgba(239, 228, 201, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    rgba(239, 228, 201, 0.08);
}

.calculator-section {
  background: var(--ink);
  color: var(--white);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: start;
}

.calculator-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.visual-panel {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.visual-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  opacity: 0.86;
}

.visual-panel div {
  padding: 0 24px 24px;
}

.visual-panel strong,
.visual-panel span {
  display: block;
}

.visual-panel span {
  color: rgba(255, 255, 255, 0.62);
}

.calculator-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 247, 244, 0.86)),
    var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.calculator-card label {
  display: grid;
  gap: 8px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-card input,
.calculator-card select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(17, 21, 21, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
}

.calculator-card input:focus,
.calculator-card select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 108, 100, 0.14);
}

.input-prefix,
.input-suffix {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 21, 0.16);
  border-radius: var(--radius);
  background: var(--white);
}

.input-suffix {
  grid-template-columns: 1fr auto;
}

.input-prefix > span,
.input-suffix > span {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 13px;
  color: var(--muted);
  background: #eef0ec;
}

.input-prefix input,
.input-suffix input {
  border: 0;
  border-radius: 0;
}

.result-box {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transform-origin: center;
}

.result-box.is-updating {
  animation: resultPulse 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.result-box > span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 800;
}

.result-box > strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--gold-2);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.result-box p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.result-box dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.result-box div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.result-box dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
}

.result-box dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.calculator-link {
  width: 100%;
}

.requirements-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper-2));
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.requirements-grid article {
  display: grid;
  grid-template-rows: 132px 1fr;
  min-height: 330px;
  min-width: 155px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 21, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 44px rgba(17, 21, 21, 0.08);
  scroll-snap-align: start;
}

.requirements-grid img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  background: var(--white);
  transform: scale(1.015);
}

.requirements-grid article:first-child img {
  object-position: center 48%;
}

.requirements-grid article:nth-child(2) img {
  object-position: center 42%;
}

.requirements-grid article:nth-child(3) img {
  object-position: center 43%;
}

.requirements-grid article:nth-child(4) img {
  object-position: center 52%;
}

.requirements-grid article:nth-child(5) img {
  object-position: 68% center;
}

.requirements-grid article:nth-child(6) img {
  object-position: center 42%;
}

.requirements-grid article:nth-child(7) img {
  object-position: center 38%;
}

.requirements-grid article div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.requirements-grid strong {
  font-size: 1.1rem;
  line-height: 1.15;
}

.requirements-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-section {
  background: var(--white);
}

.process-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 56px;
}

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

.process-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--gold-2);
}

.process-list h3 {
  margin-bottom: 4px;
  font-size: 1.16rem;
}

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

.assurance-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 61, 58, 0.96), rgba(17, 21, 21, 0.98)),
    var(--ink);
}

.assurance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.assurance-card {
  padding: 30px;
  border-radius: var(--radius);
}

.assurance-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.countries-section {
  background: var(--white);
}

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

.country-card {
  display: grid;
  gap: 18px;
  align-items: center;
  min-height: 260px;
  padding: 20px;
  border: 1px solid rgba(17, 21, 21, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 247, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 48px rgba(17, 21, 21, 0.08);
}

.flag-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid rgba(17, 21, 21, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, var(--gold-3));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.flag-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 44%, transparent 72%);
  transform: translateX(-120%);
  animation: flagSheen 5.5s ease-in-out infinite;
}

.flag-frame img {
  width: min(84%, 230px);
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(17, 21, 21, 0.16));
  transform-origin: center;
  animation: flagFloat 4.8s ease-in-out infinite;
}

.country-card:nth-child(2) .flag-frame img {
  width: min(88%, 240px);
  max-height: 104px;
}

.country-card h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.country-card p {
  margin-bottom: 0;
  color: var(--muted);
}

@keyframes flagFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) skewX(0deg);
  }

  50% {
    transform: translateY(-5px) rotateX(5deg) skewX(-1.2deg);
  }
}

@keyframes flagSheen {
  0%,
  48% {
    transform: translateX(-120%);
  }

  70% {
    transform: translateX(120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes numberPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.86);
    filter: blur(5px);
  }

  58% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes resultPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(239, 228, 201, 0);
  }

  42% {
    transform: scale(1.018);
    box-shadow: 0 0 0 7px rgba(239, 228, 201, 0.08);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(239, 228, 201, 0);
  }
}

.faq-section {
  background: var(--white);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.contact-section {
  padding: 104px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 21, 21, 0.96), rgba(18, 61, 58, 0.9)),
    var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 50px;
  align-items: center;
}

.contact-layout p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 210px;
  height: 58px;
  padding: 0 18px 0 15px;
  color: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.98), rgba(18, 142, 79, 0.98)),
    #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
  font-weight: 950;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    min-width 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(37, 211, 102, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-whatsapp span {
  white-space: nowrap;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #0a0d0d;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
}

.footer-layout p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 0 10px;
    color: currentColor;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    font-weight: 900;
  }

  .site-header.is-scrolled .menu-button,
  .site-header.nav-active .menu-button {
    border-color: rgba(17, 21, 21, 0.14);
    background: rgba(17, 21, 21, 0.04);
  }

  .menu-button span {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
  }

  .site-header.nav-active .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 20px 26px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 21, 21, 0.1);
  }

  .site-header.nav-active .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 21, 21, 0.08);
  }

  .hero {
    min-height: 86svh;
    background-position: 58% center;
  }

  .trust-grid,
  .credibility-row,
  .section-heading,
  .calculator-layout,
  .process-layout,
  .assurance-layout,
  .faq-layout,
  .contact-layout,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .requirements-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    width: min(100% - 24px, 1220px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: calc(var(--header-height) + 30px);
    align-items: start;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(2.28rem, 9.4vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions,
  .hero-proof {
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .scroll-hint {
    right: 16px;
  }

  .trust-grid,
  .credibility-row,
  .plan-grid,
  .form-grid,
  .requirements-grid,
  .result-box dl {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .plan-card,
  .calculator-card {
    padding: 24px;
  }

  .heading-media {
    min-height: 240px;
  }

  .requirements-grid article {
    grid-template-rows: 160px 1fr;
    min-height: auto;
  }

  .requirements-grid img {
    height: 160px;
  }

  .country-card {
    min-height: 220px;
  }

  .flag-frame {
    min-height: 118px;
  }

  .contact-actions .button {
    justify-content: center;
    padding-inline: 14px;
    font-size: clamp(0.72rem, 3.4vw, 0.95rem);
  }

  .floating-whatsapp {
    min-width: 58px;
    width: 58px;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  .footer-layout {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
