:root {
  --vnc-primary: #c7a66a;
  --vnc-primary-rgb: 199, 166, 106;
  --vnc-ink: #182337;
  --vnc-ink-rgb: 24, 35, 55;
  --vnc-navy: #182337;
  --vnc-steel: #324a6d;
  --vnc-line: #c8d5dc;
  --vnc-line-rgb: 200, 213, 220;
  --vnc-paper: #ffffff;
  --vnc-paper-soft: #fbfaf7;
  --vnc-mist: #eef2f4;
  --vnc-success: #5d7f6f;
  --vnc-cta: #182337;
  --vnc-cta-hover: #23314a;
  --vnc-cta-rgb: 24, 35, 55;
  --vnc-font-primary: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vnc-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vnc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --vnc-radius: 8px;
  --vnc-shadow: 0 24px 80px rgba(var(--vnc-ink-rgb), 0.12);
  --vnc-shadow-strong: 0 38px 120px rgba(var(--vnc-ink-rgb), 0.22);
  --vnc-max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--vnc-ink);
  background:
    radial-gradient(circle at 18% 6%, rgba(var(--vnc-primary-rgb), 0.055), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(50, 74, 109, 0.14), transparent 26%),
    linear-gradient(90deg, rgba(var(--vnc-line-rgb), 0.38) 1px, transparent 1px) 0 0 / 12.5% 100%,
    linear-gradient(180deg, rgba(var(--vnc-line-rgb), 0.25) 1px, transparent 1px) 0 0 / 100% 112px,
    var(--vnc-paper-soft);
  font-family: var(--vnc-font-body);
  text-rendering: optimizeLegibility;
}
body::selection { color: #fff; background: var(--vnc-cta); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.vnc-ds {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}
.container {
  width: min(var(--vnc-max), calc(100% - 32px));
  margin: 0 auto;
}
#particle-canvas,
.ambient-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
#particle-canvas { z-index: 0; opacity: 0.38; }
.ambient-grid {
  z-index: 1;
  opacity: 0.72;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}
.beam-v,
.beam-h {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, transparent, rgba(var(--vnc-cta-rgb), 0.52), transparent);
  filter: blur(0.2px);
}
.beam-v {
  top: -20%;
  bottom: -20%;
  width: 1px;
  left: 18%;
  animation: beam-v 7s linear infinite;
}
.beam-v.beam-delay { left: 76%; animation-delay: -3s; }
.beam-h {
  left: -20%;
  right: -20%;
  height: 1px;
  top: 34%;
  animation: beam-h 8s linear infinite;
}
.beam-h.beam-delay { top: 68%; animation-delay: -4s; }
@keyframes beam-v {
  0% { transform: translateY(-18%); opacity: 0; }
  16%, 72% { opacity: 1; }
  100% { transform: translateY(28%); opacity: 0; }
}
@keyframes beam-h {
  0% { transform: translateX(-20%); opacity: 0; }
  20%, 72% { opacity: 0.9; }
  100% { transform: translateX(18%); opacity: 0; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(var(--vnc-line-rgb), 0.68);
  background: rgba(250, 252, 255, 0.76);
  backdrop-filter: blur(20px);
  transition: box-shadow 240ms var(--vnc-ease), background 240ms var(--vnc-ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 46px rgba(var(--vnc-ink-rgb), 0.08);
}
.header-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--vnc-radius);
  background: var(--vnc-ink);
  box-shadow: 0 14px 32px rgba(var(--vnc-ink-rgb), 0.18);
}
.brand-lockup strong {
  display: block;
  font-family: var(--vnc-font-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}
.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: var(--vnc-steel);
  font-size: 12px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.78);
  border-radius: var(--vnc-radius);
  background: rgba(255, 255, 255, 0.7);
}
.nav-links a {
  padding: 10px 12px;
  color: var(--vnc-steel);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms var(--vnc-ease), background 180ms var(--vnc-ease);
}
.nav-links a:hover { color: var(--vnc-cta); background: #fff; }

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--vnc-ink);
  flex: 0 0 auto;
  transition: transform 220ms var(--vnc-ease), color 220ms var(--vnc-ease), opacity 220ms var(--vnc-ease);
}
.header-social svg {
  width: 22px;
  height: 22px;
}
.header-social:hover {
  color: var(--vnc-steel);
  transform: translateY(-2px);
  opacity: 0.88;
}

.ds-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  border: 0;
  border-radius: var(--vnc-radius);
  background: var(--vnc-ink);
  box-shadow: 0 18px 36px rgba(var(--vnc-ink-rgb), 0.16);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 220ms var(--vnc-ease), box-shadow 220ms var(--vnc-ease), background 220ms var(--vnc-ease);
}
.ds-button svg { width: 17px; height: 17px; transition: transform 220ms var(--vnc-ease); }
.ds-button:hover {
  transform: translateY(-2px);
  background: var(--vnc-cta-hover);
  box-shadow: 0 22px 46px rgba(var(--vnc-cta-rgb), 0.24);
}
.ds-button:hover svg { transform: translateX(2px); }
.ds-button.accent {
  background: var(--vnc-cta);
  box-shadow: 0 18px 40px rgba(var(--vnc-cta-rgb), 0.24);
}
.ds-button.secondary {
  color: var(--vnc-ink);
  background: #fff;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.9);
  box-shadow: 0 16px 38px rgba(var(--vnc-ink-rgb), 0.08);
}
.ds-button.secondary:hover {
  color: #fff;
  border-color: var(--vnc-cta);
  background: var(--vnc-cta);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--vnc-ink);
  border: 1px solid rgba(var(--vnc-line-rgb), 0.86);
  border-radius: var(--vnc-radius);
  background: #fff;
}
.mobile-menu {
  display: none;
  width: min(var(--vnc-max), calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.8);
  border-radius: var(--vnc-radius);
  background: #fff;
}
.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 12px;
  color: var(--vnc-steel);
  font-weight: 800;
  border-radius: 6px;
}
.mobile-menu a:hover { color: var(--vnc-cta); background: var(--vnc-paper-soft); }

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  padding: 92px 0 20px;
  display: grid;
  align-items: center;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #d9e0ea;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--vnc-ink-rgb), 0.1), rgba(var(--vnc-ink-rgb), 0.18) 34%, rgba(var(--vnc-ink-rgb), 0.4)),
    linear-gradient(90deg, rgba(255,255,255,0.78), rgba(255,255,255,0.24) 34%, rgba(var(--vnc-ink-rgb), 0.12) 62%, rgba(var(--vnc-ink-rgb), 0.28));
  pointer-events: none;
}
.mesh-bg {
  position: absolute;
  inset: 78px 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(var(--vnc-cta-rgb), 0.1), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(97, 206, 112, 0.11), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  animation: mesh-float 9s ease-in-out infinite;
}
@keyframes mesh-float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.82; }
  50% { transform: translate3d(0, -12px, 0); opacity: 1; }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(920px, 58vw);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 11px;
  color: var(--vnc-steel);
  border: 1px solid rgba(var(--vnc-line-rgb), 0.84);
  border-radius: var(--vnc-radius);
  background: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge.accent {
  color: #fff;
  border-color: transparent;
  background: var(--vnc-cta);
  box-shadow: 0 12px 28px rgba(var(--vnc-cta-rgb), 0.14);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--vnc-cta);
  box-shadow: 0 0 0 0 rgba(var(--vnc-primary-rgb), 0.22);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--vnc-primary-rgb), 0.24); }
  100% { box-shadow: 0 0 0 13px rgba(var(--vnc-primary-rgb), 0); }
}
.reveal-title,
h1, h2, h3 {
  font-family: var(--vnc-font-primary);
  letter-spacing: 0;
}
h2 + p,
h3 + p {
  margin-top: 18px;
}
strong + span {
  margin-top: 12px;
}
h1 {
  max-width: 860px;
  margin: 18px 0 0;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: 0.94;
  font-weight: 900;
}
.hero-title-line {
  display: block;
}
.hero-title-line:first-child {
  white-space: nowrap;
}
.hero-title-subline {
  font-size: 0.76em;
  line-height: 0.98;
}
.hero-lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--vnc-steel);
  font-size: clamp(16px, 1.14vw, 19px);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.panel {
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: var(--vnc-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--vnc-shadow);
  backdrop-filter: blur(18px);
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  background: rgba(var(--vnc-line-rgb), 0.75);
}
.hero-metrics div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
}
.hero-metrics strong {
  display: block;
  font-family: var(--vnc-font-primary);
  font-size: 17px;
  font-weight: 900;
}
.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--vnc-steel);
  font-size: 13px;
  line-height: 1.45;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.02);
}
.motion-card {
  position: relative;
  padding: clamp(18px, 2.5vw, 26px);
  color: var(--vnc-ink);
  border-radius: var(--vnc-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(var(--vnc-ink-rgb), 0.2);
  backdrop-filter: blur(18px);
}
.hero-visual .motion-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}
.motion-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
}
.motion-card p { margin: 0; color: var(--vnc-steel); line-height: 1.72; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--vnc-ink);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--vnc-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(var(--vnc-ink-rgb), 0.16);
  font-size: 13px;
  font-weight: 900;
  animation: float-card 4.8s ease-in-out infinite;
}
.floating-card svg { color: var(--vnc-cta); }
.card-one { top: 26px; right: 24px; }
.card-two { top: 96px; left: 24px; animation-delay: -1.4s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.marquee-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: -6px;
  border-block: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  background: rgba(255, 255, 255, 0.82);
}
.marquee-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  gap: 34px;
  padding: 14px 34px;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  flex: 0 0 auto;
  color: var(--vnc-steel);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--vnc-cta);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 6vw, 104px) 0;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 64px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--vnc-cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section h2,
.section-copy h2 {
  margin: 18px 0 0;
  max-width: 930px;
  font-size: clamp(30px, 4.2vw, 62px);
  line-height: 1.02;
  font-weight: 900;
}
.section-head p,
.section-copy p,
.about-copy p,
.region-panel p,
.travel-card p,
.cta-panel p {
  margin: 14px 0 0;
  color: var(--vnc-steel);
  font-size: 16px;
  line-height: 1.64;
}
.fold-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(36px, 4vw, 64px);
}
.fold-intro.media-left {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
}
.fold-intro-copy h2 {
  margin: 18px 0 0;
  line-height: 1.08;
}
.fold-intro-copy p {
  margin: 18px 0 0;
  color: var(--vnc-steel);
  font-size: 16px;
  line-height: 1.64;
}
.fold-intro-media {
  overflow: hidden;
  min-height: 320px;
  padding: 0;
}
.fold-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center center;
}
.benefit-grid,
.service-grid,
.specialty-grid,
.credential-grid,
.faq-grid,
.blog-grid,
.travel-steps {
  display: grid;
  gap: 14px;
}
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.specialty-grid { grid-template-columns: repeat(4, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card,
.service-card,
.specialty-card,
.blog-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 22px;
  transition: transform 240ms var(--vnc-ease), box-shadow 240ms var(--vnc-ease), border-color 240ms var(--vnc-ease);
}
.feature-card::before,
.service-card::before,
.specialty-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(var(--vnc-primary-rgb), 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.8), transparent);
  opacity: 0;
  transition: opacity 240ms var(--vnc-ease);
}
.feature-card:hover,
.service-card:hover,
.specialty-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--vnc-cta-rgb), 0.34);
  box-shadow: var(--vnc-shadow-strong);
}
.feature-card:hover::before,
.service-card:hover::before,
.specialty-card:hover::before,
.blog-card:hover::before { opacity: 1; }
.feature-card > *,
.service-card > *,
.specialty-card > *,
.blog-card > * { position: relative; z-index: 1; }
.service-card-top {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.specialty-card-top {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
.feature-card svg,
.service-card svg,
.specialty-card svg {
  width: 34px;
  height: 34px;
  color: var(--vnc-cta);
}
.feature-card h3,
.service-card h3,
.specialty-card h3,
.blog-card h3 {
  margin: 54px 0 18px;
  font-size: 23px;
  line-height: 1.14;
}
.service-card h3 { margin-top: 28px; }
.feature-card p,
.service-card p,
.specialty-card p,
.blog-card p,
.timeline-step p,
.travel-steps span,
.faq-grid p,
.site-footer p {
  color: var(--vnc-steel);
  line-height: 1.65;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(240,242,249,0.72)),
    var(--vnc-paper-soft);
}
.specialties-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(var(--vnc-primary-rgb), 0.045), transparent 28%),
    #fff;
}
.specialty-card {
  min-height: 300px;
  background:
    radial-gradient(circle at 90% 8%, rgba(var(--vnc-primary-rgb), 0.055), transparent 26%),
    rgba(255, 255, 255, 0.9);
}
.specialty-card .badge,
.blog-card .badge { margin-top: 0; }
.specialty-card h3 { margin-top: 28px; }
.blog-card h3 { margin-top: 34px; }
.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--vnc-cta);
  font-size: 13px;
  font-weight: 900;
}
.blog-card a svg {
  width: 15px;
  height: 15px;
}
.split-grid,
.about-grid,
.travel-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: var(--vnc-radius);
  background: rgba(var(--vnc-line-rgb), 0.82);
  box-shadow: var(--vnc-shadow);
}
.section-copy,
.about-copy,
.travel-card {
  padding: clamp(24px, 3.4vw, 42px);
  background: rgba(255, 255, 255, 0.9);
}
.section-copy .ds-button { margin-top: 24px; }
.process-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(var(--vnc-primary-rgb), 0.08), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(var(--vnc-cta-rgb), 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,252,0.98)),
    #fff;
}
.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
}
.process-section::before {
  top: 118px;
  background: linear-gradient(90deg, transparent, rgba(var(--vnc-line-rgb), 0.72), transparent);
}
.process-section::after {
  top: 62%;
  background: linear-gradient(90deg, transparent, rgba(var(--vnc-primary-rgb), 0.12), transparent);
}
.process-head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.process-head .eyebrow {
  justify-content: center;
  width: 100%;
}
.process-head h2 {
  margin-left: auto;
  margin-right: auto;
}
.process-head p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.process-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr) 52px minmax(0, 1fr);
  align-items: start;
  gap: 0;
  margin-top: 46px;
}
.process-step {
  min-height: 100%;
  position: relative;
  padding: 22px 18px 18px;
  text-align: center;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  box-shadow: 0 22px 48px rgba(var(--vnc-ink-rgb), 0.06);
  backdrop-filter: blur(16px);
  transition: transform 260ms var(--vnc-ease), box-shadow 260ms var(--vnc-ease), border-color 260ms var(--vnc-ease);
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, rgba(var(--vnc-primary-rgb), 0.9), rgba(var(--vnc-cta-rgb), 0.72));
  opacity: 0.86;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--vnc-cta-rgb), 0.28);
  box-shadow: 0 28px 60px rgba(var(--vnc-ink-rgb), 0.1);
}
.process-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.9), transparent 42%),
    linear-gradient(180deg, rgba(232,236,246,0.98), rgba(220,225,239,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.process-icon svg {
  width: 42px;
  height: 42px;
  color: var(--vnc-ink);
}
.process-index {
  position: absolute;
  top: -8px;
  right: -2px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 999px;
  background: var(--vnc-ink);
  font-size: 15px;
  font-weight: 900;
}
.process-step h3 {
  margin: 0 0 14px;
  font-size: 23px;
  line-height: 1.18;
}
.process-step p {
  max-width: 246px;
  margin: 0 auto;
  color: var(--vnc-steel);
  line-height: 1.6;
}
.process-connector {
  position: relative;
  align-self: start;
  height: 124px;
}
.process-connector::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 6px;
  right: 6px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--vnc-line-rgb), 0.16), rgba(var(--vnc-line-rgb), 0.92), rgba(var(--vnc-line-rgb), 0.16));
}
.process-connector::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--vnc-primary-rgb), 0), rgba(var(--vnc-primary-rgb), 0.9), rgba(var(--vnc-primary-rgb), 0));
  animation: process-beam 5.8s linear infinite;
}
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
@keyframes process-beam {
  from { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  to { transform: translateX(30px); opacity: 0; }
}

.about-section { background: #fff; }
.about-shell {
  padding: clamp(18px, 2.2vw, 26px);
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--vnc-primary-rgb), 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,253,0.98));
}
.about-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: center;
}
.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy h2 {
  max-width: 12ch;
  margin-bottom: 10px;
}
.about-copy p {
  max-width: 58ch;
  margin-bottom: 0;
}
.image-panel {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.about-portrait {
  min-height: 300px;
  max-height: 332px;
  border-radius: 24px;
  align-self: center;
}
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center 14%;
}
.image-panel-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--vnc-ink);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 38px rgba(var(--vnc-ink-rgb), 0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.image-panel-badge svg {
  width: 16px;
  height: 16px;
  color: var(--vnc-cta);
}
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.about-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.78);
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
}
.about-highlight svg {
  width: 16px;
  height: 16px;
  color: var(--vnc-cta);
  margin-top: 4px;
}
.about-highlight strong {
  display: block;
  font-family: var(--vnc-font-primary);
  font-size: 17px;
  font-weight: 900;
}
.about-highlight span {
  display: block;
  margin-top: 4px;
  color: var(--vnc-steel);
  font-size: 12px;
  line-height: 1.34;
}
.about-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: 24px;
  background: rgba(var(--vnc-line-rgb), 0.82);
}
.about-ribbon-item {
  padding: 14px 16px;
  background: rgba(255,255,255,0.92);
}
.about-ribbon-item span {
  display: block;
  color: var(--vnc-steel);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-ribbon-item strong {
  display: block;
  margin-top: 6px;
  color: var(--vnc-ink);
  font-size: 16px;
  line-height: 1.22;
}
.about-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 10px;
  padding: 0;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  background: rgba(var(--vnc-line-rgb), 0.82);
  box-shadow: none;
}
.about-proof > div {
  padding: 14px 16px;
  background: rgba(255,255,255,0.92);
}
.about-proof-stat,
.about-proof-review {
  display: inline-grid;
  align-content: center;
}
.about-proof-stat {
  grid-template-columns: auto;
}
.about-proof-stat {
  justify-items: start;
  gap: 0;
}
.about-proof-stat small {
  display: block;
  color: var(--vnc-steel);
  font-size: 12.5px;
  line-height: 1.42;
  max-width: 320px;
}
.about-proof-stat strong {
  display: block;
  margin-top: 6px;
  color: var(--vnc-primary);
  font-family: var(--vnc-font-primary);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.9;
  font-weight: 900;
}
.about-proof-stat span {
  display: block;
  margin-top: 2px;
  color: var(--vnc-ink);
  font-size: 15px;
  font-weight: 800;
}
.about-proof-review {
  max-width: none;
  padding-top: 2px;
}
.about-proof-review h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.2;
}
.about-proof-review > strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.review-stars {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.review-stars svg {
  width: 18px;
  height: 18px;
  color: #f5b400;
  fill: currentColor;
}
.about-proof-review p {
  margin: 4px 0 0;
  color: var(--vnc-steel);
  line-height: 1.45;
}
.about-proof {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.about-proof-review {
  border-left: 1px solid rgba(var(--vnc-line-rgb), 0.72);
}
.review-carousel {
  grid-column: 1 / -1;
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(var(--vnc-line-rgb), 0.72);
}
.review-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.review-carousel-label {
  color: var(--vnc-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-carousel-controls {
  display: flex;
  gap: 10px;
}
.review-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--vnc-ink);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.review-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--vnc-primary-rgb), 0.3);
  background: rgba(246, 248, 252, 0.98);
}
.review-nav:disabled {
  opacity: 0.4;
}
.review-nav svg {
  width: 18px;
  height: 18px;
}
.review-viewport {
  overflow: hidden;
}
.review-track {
  display: flex;
  gap: 16px;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-height: 170px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,253,0.96));
  box-shadow: 0 18px 44px rgba(var(--vnc-ink-rgb), 0.08);
}
.review-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.review-card-top strong,
.review-card-top span {
  display: block;
}
.review-card-top strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 92px;
}
.review-card-top span {
  margin-top: 4px;
  color: var(--vnc-steel);
  font-size: 11px;
  max-width: 92px;
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.review-avatar--amber {
  background: #f07a00;
}
.review-avatar--green {
  background: #116b57;
}
.review-avatar-photo {
  object-fit: cover;
}
.review-google-mark {
  color: #4285f4;
}
.review-card-stars {
  display: flex;
  gap: 4px;
  margin: 10px 0 8px;
}
.review-card-stars svg {
  width: 15px;
  height: 15px;
  color: #f5b400;
  fill: currentColor;
}
.review-card p {
  margin: 0;
  color: var(--vnc-ink);
  font-size: 12px;
  line-height: 1.36;
  max-width: 26ch;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--vnc-ink-rgb), 0.18);
  transition: width 240ms ease, background 240ms ease;
}
.review-dot.is-active {
  width: 28px;
  background: var(--vnc-primary);
}
.trust-section {
  padding-top: 24px;
}
.trust-shell {
  padding: clamp(24px, 3vw, 36px);
  background:
    radial-gradient(circle at 8% 18%, rgba(var(--vnc-primary-rgb), 0.08), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(199, 166, 106, 0.11), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,253,0.98));
  box-shadow: 0 24px 64px rgba(var(--vnc-ink-rgb), 0.08);
}
.trust-head {
  margin-bottom: 22px;
}
.trust-head p {
  max-width: 62ch;
}
.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 16px;
  align-items: stretch;
}
.trust-counter,
.trust-rating {
  min-height: 100%;
  padding: 22px;
  box-shadow: none;
}
.trust-counter {
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,249,252,0.94));
}
.trust-counter small {
  color: var(--vnc-steel);
  font-size: 13px;
  line-height: 1.5;
  max-width: 28ch;
}
.trust-counter strong {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 10px;
  color: var(--vnc-primary);
  font-family: var(--vnc-font-primary);
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.9;
  font-weight: 900;
}
.counter-plus {
  font-size: 0.82em;
}
.trust-counter span {
  display: block;
  margin-top: 6px;
  color: var(--vnc-ink);
  font-size: 16px;
  font-weight: 800;
}
.trust-rating {
  display: grid;
  align-content: center;
}
.trust-rating h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.trust-rating > strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.trust-rating p {
  margin: 8px 0 0;
  color: var(--vnc-steel);
}
.trust-carousel {
  margin-top: 18px;
}

.region-panel {
  padding: clamp(24px, 3.4vw, 38px);
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--vnc-primary-rgb), 0.07), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,251,252,0.94));
}
.region-panel.region-panel-reverse .region-panel-head img { order: -1; }
.region-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(22px, 3.5vw, 34px);
  align-items: stretch;
}
.region-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.region-panel h2 {
  margin: 14px 0 14px;
  font-size: clamp(30px, 3.8vw, 52px);
}
.region-panel-head img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(var(--vnc-ink-rgb), 0.12);
}
.region-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.region-highlights span {
  padding: 10px 13px;
  color: var(--vnc-ink);
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.region-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.region-group {
  min-height: 100%;
  padding: 20px 20px 18px;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.74);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
  box-shadow: 0 14px 34px rgba(var(--vnc-ink-rgb), 0.06);
}
.region-group strong {
  display: block;
  margin-bottom: 10px;
  color: var(--vnc-ink);
  font-family: var(--vnc-font-primary);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 800;
}
.region-group strong::after {
  content: ":";
}
.region-group span {
  display: block;
  color: var(--vnc-steel);
  font-size: 14px;
  line-height: 1.42;
}
.region-group h3 {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(var(--vnc-line-rgb), 0.72);
  font-size: 21px;
  line-height: 1.14;
}
.region-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.region-group li {
  position: relative;
  padding-left: 16px;
  color: var(--vnc-steel);
  font-size: 14px;
  line-height: 1.46;
}
.region-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--vnc-cta);
}

.travel-section {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--vnc-cta-rgb), 0.34), transparent 24%),
    var(--vnc-ink);
}
.travel-grid {
  display: grid;
  grid-template-columns: 0.78fr 0.62fr;
  gap: 14px;
  align-items: stretch;
  border-color: rgba(255,255,255,0.14);
  background: transparent;
}
.travel-card {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
.travel-cover {
  overflow: hidden;
  padding: 0;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
}
.travel-cover img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}
.travel-steps {
  grid-column: 1 / -1;
}
.travel-card h2 { color: #fff; }
.travel-card p { color: rgba(255,255,255,0.72); }
.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--vnc-cta);
}
.travel-steps {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
}
.travel-steps .panel {
  min-height: 196px;
  padding: 20px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}
.travel-steps svg { color: var(--vnc-cta); }
.travel-steps strong {
  display: block;
  margin-top: 38px;
  font-family: var(--vnc-font-primary);
  font-size: 20px;
}
.travel-steps span { display: block; margin-top: 10px; color: rgba(255,255,255,0.72); }
.travel-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 12px;
  padding: 0;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.14);
}
.travel-note > div {
  padding: 20px;
  background: rgba(255,255,255,0.08);
}
.travel-note p {
  margin: 14px 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(250,252,255,0.95)),
    var(--vnc-paper-soft);
}
.blog-card {
  min-height: 286px;
}
.blog-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 12px;
  padding: 20px;
}
.blog-cta strong {
  display: block;
  font-family: var(--vnc-font-primary);
  font-size: 22px;
  font-weight: 900;
}
.blog-cta span {
  display: block;
  margin-top: 8px;
  color: var(--vnc-steel);
  line-height: 1.6;
}

.faq-grid { grid-template-columns: repeat(2, 1fr); }
.faq-grid details {
  padding: 0;
  overflow: hidden;
}
.faq-grid summary {
  list-style: none;
  position: relative;
  padding: 22px 58px 20px 20px;
  font-family: var(--vnc-font-primary);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  cursor: pointer;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 18px;
  color: var(--vnc-cta);
  font-size: 28px;
  line-height: 1;
}
.faq-grid details[open] summary::after { content: "-"; }
.faq-grid p {
  margin: 0;
  padding: 2px 20px 22px;
}

.final-cta { padding-top: 40px; }
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 14% 0%, rgba(var(--vnc-cta-rgb), 0.44), transparent 34%),
    linear-gradient(135deg, var(--vnc-ink), var(--vnc-navy));
}
.cta-panel h2 {
  max-width: 880px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.04;
}
.cta-panel p { color: rgba(255,255,255,0.72); }

.site-footer {
  position: relative;
  z-index: 2;
  padding: 46px 0;
  color: #fff;
  background: var(--vnc-ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 52px;
}
.footer-brand .brand-logo { box-shadow: none; }
.site-footer p {
  max-width: 460px;
  color: rgba(255,255,255,0.72);
}
.site-footer strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--vnc-font-primary);
}
.site-footer a,
.site-footer span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}
.site-footer a:hover { color: #fff; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  color: #fff;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms var(--vnc-ease), box-shadow 220ms var(--vnc-ease), background 220ms var(--vnc-ease);
}
.whatsapp-float:hover {
  color: #fff;
  background: #20bd5c;
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.34);
}
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.24);
  outline-offset: 3px;
}
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.subpage-hero {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  padding: 118px 0 56px;
  display: grid;
  align-items: end;
}
.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: end;
}
.subpage-hero h1 {
  margin: 22px 0 0;
  max-width: 860px;
  font-size: clamp(46px, 5.2vw, 92px);
  line-height: 0.96;
}
.subpage-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--vnc-steel);
  font-size: clamp(17px, 1.34vw, 21px);
  line-height: 1.62;
}
.subpage-card {
  padding: 22px;
}
.subpage-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--vnc-radius);
  margin-bottom: 20px;
}
.subpage-card strong {
  display: block;
  font-family: var(--vnc-font-primary);
  font-size: 25px;
  line-height: 1.16;
}
.subpage-card span {
  display: block;
  margin-top: 14px;
  color: var(--vnc-steel);
  line-height: 1.64;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.content-card {
  min-height: 230px;
  padding: 22px;
}
.content-card svg {
  width: 32px;
  height: 32px;
  color: var(--vnc-cta);
}
.content-card h2,
.content-card h3 {
  margin: 38px 0 18px;
  font-size: 23px;
  line-height: 1.14;
}
.content-card p,
.article-card p {
  color: var(--vnc-steel);
  line-height: 1.65;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(var(--vnc-line-rgb), 0.82);
  border-radius: var(--vnc-radius);
  background: rgba(var(--vnc-line-rgb), 0.82);
  box-shadow: var(--vnc-shadow);
}
.included-grid > * {
  padding: clamp(22px, 3.2vw, 36px);
  background: rgba(255,255,255,0.92);
}
.included-grid h2 {
  margin: 0 0 22px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}
.included-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.included-grid li {
  position: relative;
  padding-left: 23px;
  color: var(--vnc-steel);
  line-height: 1.55;
}
.included-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--vnc-cta);
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.article-card {
  min-height: 320px;
  padding: 22px;
}
.article-card h2 {
  margin: 22px 0 18px;
  font-size: 25px;
  line-height: 1.14;
}
.article-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--vnc-cta);
  font-weight: 900;
}
.article-body {
  display: grid;
  gap: 14px;
  max-width: 940px;
}
.article-body .panel {
  padding: clamp(22px, 3.4vw, 34px);
}
.article-body h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.06;
}
.article-body p {
  color: var(--vnc-steel);
  line-height: 1.64;
}
.page-nav-link {
  color: var(--vnc-cta) !important;
}

.fade-in-up,
.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
}
.fade-in-up.is-visible,
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 820ms var(--vnc-ease), transform 820ms var(--vnc-ease);
}
.title-reveal {
  opacity: 1;
}
.title-reveal-unit {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.title-reveal-word {
  display: inline-block;
  transform: translateY(112%);
  opacity: 0;
  transition:
    transform 1250ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease-out;
  will-change: transform, opacity;
}
.title-reveal-space {
  display: inline;
}
.title-reveal.is-visible .title-reveal-word {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1120px) {
  .nav-links,
  .header-whatsapp,
  .header-social { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid,
  .fold-intro,
  .section-head,
  .subpage-grid,
  .split-grid,
  .about-stage,
  .region-panel,
  .travel-grid {
    grid-template-columns: 1fr;
  }
  .hero-video { min-height: 560px; }
  .benefit-grid,
  .service-grid,
  .specialty-grid,
  .blog-grid,
  .content-grid,
  .article-grid,
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
  .region-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .travel-grid { grid-template-columns: 1fr; }
  .about-ribbon { grid-template-columns: 1fr; }
  .about-proof { grid-template-columns: 1fr; }
  .about-proof-review {
    border-left: 0;
    border-top: 1px solid rgba(var(--vnc-line-rgb), 0.72);
  }
  .trust-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: calc((100% - 32px) / 3); }
  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
  .process-connector { display: none; }
  .process-section::after { top: 52%; }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }
  .container,
  .mobile-menu { width: min(100% - 24px, var(--vnc-max)); }
  .header-shell { height: 70px; }
  .brand-lockup { min-width: auto; }
  .brand-lockup small { display: none; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    flex: 0 0 auto;
    background: #fff;
    box-shadow: 0 12px 26px rgba(var(--vnc-ink-rgb), 0.08);
  }
  .hero { padding-top: 108px; }
  .hero-copy { max-width: 100%; }
  h1 { font-size: clamp(38px, 12.5vw, 54px); }
  .hero-title-line:first-child {
    white-space: normal;
  }
  .hero-title-subline {
    font-size: 0.9em;
    line-height: 1.02;
  }
  .hero-lede,
  .hero-copy p,
  .hero-copy h1,
  .hero-copy .badge,
  .hero-actions,
  .hero-metrics {
    max-width: 100%;
  }
  .subpage-hero {
    min-height: auto;
    padding: 104px 0 40px;
    align-items: start;
  }
  .subpage-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.4vw, 52px);
    line-height: 1.02;
  }
  .subpage-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.56;
  }
  .subpage-card {
    padding: 18px;
  }
  .subpage-card img {
    aspect-ratio: 16 / 11;
    margin-bottom: 16px;
  }
  .hero-actions,
  .ds-button { width: 100%; }
  .hero-actions .ds-button {
    min-width: 0;
  }
  .hero-metrics,
  .benefit-grid,
  .service-grid,
  .specialty-grid,
  .content-grid,
  .included-grid,
  .article-grid,
  .about-highlights,
  .travel-steps,
  .travel-note,
  .blog-grid,
  .blog-cta,
  .faq-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .hero-video { min-height: 500px; }
  .floating-card { display: none; }
  .section { padding: 72px 0; }
  .section h2,
  .section-copy h2,
  .region-panel h2,
  .cta-panel h2 { font-size: clamp(34px, 12vw, 52px); }
  .feature-card,
  .service-card { min-height: 250px; }
  .section-copy,
  .about-copy,
  .travel-card,
  .cta-panel { padding: 24px; }
  .fold-intro,
  .about-stage,
  .region-panel-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .fold-intro-media,
  .about-portrait,
  .region-panel-head img {
    order: 1;
  }
  .fold-intro-copy,
  .about-copy,
  .region-copy {
    order: 2;
  }
  .fold-intro-copy h2,
  .about-copy h2,
  .region-copy h2 {
    margin-top: 14px;
  }
  .fold-intro-copy p,
  .about-copy p,
  .region-copy p {
    margin-top: 14px;
  }
  .about-shell { padding: 22px; }
  .image-panel,
  .image-panel img,
  .region-panel img { min-height: 320px; }
  .image-panel-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }
  .fold-intro-media,
  .fold-intro-media img { min-height: 260px; }
  .region-groups { grid-template-columns: 1fr; }
  .region-copy { justify-content: flex-start; }
  .about-ribbon { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .review-carousel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-card {
    flex-basis: calc((100% - 16px) / 2);
    min-height: auto;
  }
  .image-panel {
    max-height: none;
  }
  .trust-counter,
  .trust-rating { padding: 18px; }
  .process-step { padding: 20px 16px 16px; }
  .process-icon {
    width: 92px;
    height: 92px;
  }
  .process-step p { max-width: 100%; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 14px;
    border-radius: 18px;
  }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  .title-reveal-word {
    transform: none !important;
    opacity: 1 !important;
  }
}
