/* ==========================================================================
   How It Works — Vision Court
   Modern blue luxury page template
   ========================================================================== */

/* ── Variables ─────────────────────────────────────────────────────────── */
.vc-hiw {
  --hiw-blue: #2563eb;
  --hiw-blue-dk: #1d4ed8;
  --hiw-blue-lt: #60a5fa;
  --hiw-navy: #0f172a;
  --hiw-navy-mid: #1e293b;
  --hiw-sky: #f0f7ff;
  --hiw-sky-mid: #dbeafe;
  --hiw-white: #ffffff;
  --hiw-text: #0f172a;
  --hiw-body: #334155;
  --hiw-muted: #64748b;
  --hiw-border: #e2e8f0;
  --hiw-green: #25d366;
  --hiw-radius: 18px;
  --hiw-radius-sm: 10px;
  --hiw-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --hiw-shadow-blue: 0 10px 40px rgba(37, 99, 235, 0.2);
  --hiw-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --hiw-dur: 0.28s;
  scroll-behavior: smooth;
}

/* ── Shared utilities ──────────────────────────────────────────────────── */
.vc-hiw-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.vc-hiw-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hiw-blue);
  margin-bottom: 12px;
}
.vc-hiw-label--light {
  color: var(--hiw-blue-lt);
}

.vc-hiw-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.vc-hiw-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--hiw-text);
  margin: 0 0 16px;
  line-height: 1.2;
}
.vc-hiw-intro p {
  font-size: 1.05rem;
  color: var(--hiw-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.vc-hiw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--hiw-dur) var(--hiw-ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.vc-hiw-btn--solid {
  background: var(--hiw-blue);
  color: #fff;
  border-color: var(--hiw-blue);
}
.vc-hiw-btn--solid:hover {
  background: var(--hiw-blue-dk);
  border-color: var(--hiw-blue-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  text-decoration: none;
}
.vc-hiw-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.vc-hiw-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}
.vc-hiw-btn--white-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.vc-hiw-btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.vc-hiw-hero {
  position: relative;
  background-color: #04091e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* Overlay: topographic texture + directional gradient (same pattern as estate/contact) */
.vc-hiw-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Ccircle cx='45' cy='45' r='42' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='28' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='0.8'/%3E%3Ccircle cx='45' cy='45' r='14' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='0.8'/%3E%3C/svg%3E"),
    linear-gradient(
      100deg,
      rgba(4, 10, 28, 0.97) 0%,
      rgba(5, 13, 40, 0.9) 40%,
      rgba(7, 18, 54, 0.58) 65%,
      rgba(8, 22, 62, 0.24) 100%
    );
  background-size:
    90px 90px,
    cover;
  z-index: 1;
  pointer-events: none;
}
/* dot-grid overlay */
.vc-hiw-hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
.vc-hiw-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.vc-hiw-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: vc-hiw-fade-in 0.9s ease forwards;
}
.vc-hiw-hero__orb--a {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.35) 0%,
    transparent 70%
  );
  top: -180px;
  left: -120px;
  animation-delay: 0.1s;
}
.vc-hiw-hero__orb--b {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(96, 165, 250, 0.2) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -80px;
  animation-delay: 0.25s;
}
.vc-hiw-hero__orb--c {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(29, 78, 216, 0.25) 0%,
    transparent 70%
  );
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  animation-delay: 0.4s;
}
@keyframes vc-hiw-fade-in {
  to {
    opacity: 1;
  }
}

/* 2-column grid */
.vc-hiw-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 60px;
  align-items: center;
  padding: 120px 24px 80px;
}

/* Left column */
.vc-hiw-hero__content {
  text-align: left;
}
.vc-hiw-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.vc-hiw-hero__accent {
  background: linear-gradient(135deg, var(--hiw-blue-lt) 0%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vc-hiw-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.68);
  max-width: 500px;
  margin: 0 0 36px;
  line-height: 1.75;
}
.vc-hiw-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
/* Stats row */
.vc-hiw-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  max-width: 520px;
}
.vc-hiw-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.vc-hiw-hero__stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}
.vc-hiw-hero__stat small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
.vc-hiw-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Right column — visual */
.vc-hiw-hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  filter: drop-shadow(0 0 60px rgba(37, 99, 235, 0.35));
  animation: vc-hiw-card-entrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes vc-hiw-card-entrance {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (hover: hover) {
  .vc-hiw-hero__visual {
    animation:
      vc-hiw-card-entrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both,
      vc-hiw-float 5s ease-in-out 1.2s infinite;
  }
}
@keyframes vc-hiw-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Process tracker card */
.vc-hiw-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}
.vc-hiw-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dde0e8;
  padding: 12px 20px;
  border-bottom: 1px solid #c8ccd5;
  flex-shrink: 0;
}
.vc-hiw-card__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.vc-hiw-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}
.vc-hiw-card__dot--r {
  background: #ff5f57;
}
.vc-hiw-card__dot--y {
  background: #febc2e;
}
.vc-hiw-card__dot--g {
  background: #28c840;
}
.vc-hiw-card__title {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  flex: 1;
  text-align: center;
  padding-right: 36px; /* balance the dots */
}
.vc-hiw-card__body {
  background: #f0f2fa;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
/* Individual step rows */
.vc-hiw-card__step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
  position: relative;
  overflow: hidden;
}
/* Active row highlight sweep */
.vc-hiw-card__step--active {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.18);
  transform: scale(1.01);
  background: #f5f8ff;
}
.vc-hiw-card__step--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #2563eb;
  border-radius: 0 2px 2px 0;
}
/* Icon circle */
.vc-hiw-card__step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e5e7eb;
  color: #9ca3af;
  transition: background 0.35s ease;
}
.vc-hiw-card__step--done .vc-hiw-card__step-icon {
  background: #16a34a;
}
.vc-hiw-card__step--active .vc-hiw-card__step-icon {
  background: #2563eb;
}
.vc-hiw-card__step--pending .vc-hiw-card__step-icon {
  background: #e5e7eb;
  color: #9ca3af;
}
/* Multi-state icons — only show the relevant one */
.vc-hiw-icon {
  display: none;
  align-items: center;
  justify-content: center;
}
.vc-hiw-card__step--done .vc-hiw-icon--done {
  display: flex;
}
.vc-hiw-card__step--active .vc-hiw-icon--active {
  display: flex;
}
.vc-hiw-card__step--pending .vc-hiw-icon--pending {
  display: flex;
}
/* Step body text */
.vc-hiw-card__step-body {
  flex: 1;
  min-width: 0;
}
.vc-hiw-card__step-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2b5a;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.vc-hiw-card__step--pending .vc-hiw-card__step-name {
  color: #9ca3af;
}
.vc-hiw-card__step-desc {
  font-size: 11.5px;
  color: #6b7280;
  margin-top: 3px;
  line-height: 1.3;
}
.vc-hiw-card__step--pending .vc-hiw-card__step-desc {
  color: #c4cad6;
}
/* Badge */
.vc-hiw-card__step-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  background: #f3f4f6;
  color: #9ca3af;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.vc-hiw-card__step--done .vc-hiw-card__step-badge {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}
.vc-hiw-card__step--active .vc-hiw-card__step-badge {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}
/* Progress bar */
.vc-hiw-card__progress {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.vc-hiw-card__progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.vc-hiw-card__progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.vc-hiw-card__progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  border-radius: 4px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Float badge */
.vc-hiw-hero__float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .vc-hiw-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
  }
  .vc-hiw-hero__content {
    text-align: center;
  }
  .vc-hiw-hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .vc-hiw-hero__actions {
    justify-content: center;
  }
  .vc-hiw-hero__stats {
    margin-left: auto;
    margin-right: auto;
  }
  .vc-hiw-hero__visual {
    display: none;
  }
  .vc-hiw-hero__float-badge {
    display: none;
  }
}
@media (max-width: 767px) {
  .vc-hiw-hero__inner {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .vc-hiw-hero__stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  .vc-hiw-hero__stat-sep {
    display: none;
  }
}

/* ==========================================================================
   PROCESS STEPS — STEPPER WITH ANIMATED MOCKUPS
   ========================================================================== */
.vc-hiw-process {
  background: var(--hiw-sky);
  padding: 100px 0;
}

/* ── Stepper wrapper ── */
.vc-hiw-stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--hiw-white);
  border-radius: var(--hiw-radius);
  box-shadow: var(--hiw-shadow);
  border: 1px solid var(--hiw-border);
  overflow: hidden;
}

/* ── Tab navigation ── */
.vc-hiw-stepper__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--hiw-border);
}

.vc-hiw-stepper__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--hiw-border);
  cursor: pointer;
  position: relative;
  transition: background var(--hiw-dur) var(--hiw-ease);
  text-align: center;
}
.vc-hiw-stepper__tab:last-child {
  border-right: none;
}
.vc-hiw-stepper__tab:hover {
  background: var(--hiw-sky);
}
.vc-hiw-stepper__tab.is-active {
  background: var(--hiw-sky);
}

/* Active bottom accent */
.vc-hiw-stepper__tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hiw-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--hiw-ease);
  border-radius: 3px 3px 0 0;
}
.vc-hiw-stepper__tab.is-active::after {
  transform: scaleX(1);
}

.vc-hiw-stepper__tab-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hiw-blue);
  opacity: 0.6;
  line-height: 1;
  transition: opacity var(--hiw-dur) var(--hiw-ease);
}
.vc-hiw-stepper__tab.is-active .vc-hiw-stepper__tab-num {
  opacity: 1;
}

.vc-hiw-stepper__tab-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hiw-muted);
  line-height: 1.3;
  transition: color var(--hiw-dur) var(--hiw-ease);
}
.vc-hiw-stepper__tab.is-active .vc-hiw-stepper__tab-label {
  color: var(--hiw-text);
}

/* ── Panels ── */
.vc-hiw-stepper__panels {
  padding: 0;
}

.vc-hiw-stepper__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 52px 48px;
  animation: hiw-panel-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.vc-hiw-stepper__panel.is-active {
  display: grid;
}

@keyframes hiw-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Info column */
.vc-hiw-stepper__step-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hiw-blue);
  margin: 0 0 10px;
}
.vc-hiw-stepper__info h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--hiw-text);
  margin: 0 0 14px;
  line-height: 1.25;
}
.vc-hiw-stepper__info > p {
  font-size: 0.9rem;
  color: var(--hiw-muted);
  line-height: 1.7;
  margin: 0 0 24px;
}
.vc-hiw-stepper__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vc-hiw-stepper__bullets li {
  font-size: 0.85rem;
  color: var(--hiw-body);
  padding: 8px 0 8px 26px;
  position: relative;
  border-top: 1px solid var(--hiw-border);
  line-height: 1.5;
}
.vc-hiw-stepper__bullets li:first-child {
  border-top: none;
}
.vc-hiw-stepper__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
      center / 10px no-repeat,
    rgba(37, 99, 235, 0.08);
}

/* Mockup column */
.vc-hiw-stepper__mockup {
  position: relative;
  filter: drop-shadow(0 16px 40px rgba(15, 23, 42, 0.12));
}

/* ── Browser chrome shared ── */
.vc-hiw-mock {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hiw-border);
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.08);
}
.vc-hiw-mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #e8eaf0;
  border-bottom: 1px solid #d0d4de;
}
.vc-hiw-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}
.vc-hiw-mock__dot--r {
  background: #ff5f57;
}
.vc-hiw-mock__dot--y {
  background: #febc2e;
}
.vc-hiw-mock__dot--g {
  background: #28c840;
}
.vc-hiw-mock__url {
  flex: 1;
  font-size: 10px;
  color: #6b7280;
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid #d1d5db;
}
.vc-hiw-mock__body {
  padding: 18px;
  background: #f7f9fc;
  min-height: 280px;
}

/* Floating tooltip */
.vc-hiw-mock__tooltip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--hiw-navy);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
  white-space: nowrap;
  animation: hiw-tooltip-bounce 3s ease-in-out infinite;
  z-index: 2;
}
.vc-hiw-mock__tooltip--right {
  bottom: -18px;
  right: -16px;
}
.vc-hiw-mock__tooltip--left {
  bottom: -18px;
  left: -16px;
}
@keyframes hiw-tooltip-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ── STEP 1 — Property listing ── */
.vc-hiw-m1__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--hiw-border);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 14px;
  color: #9ca3af;
}
.vc-hiw-m1__search-icon {
  flex-shrink: 0;
  color: #9ca3af;
  display: flex;
}
.vc-hiw-m1__search-text {
  font-size: 11px;
  color: #9ca3af;
}
.vc-hiw-m1__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.vc-hiw-m1__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
}
.vc-hiw-m1__card--active {
  border-color: var(--hiw-blue);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
}
.vc-hiw-m1__card-img {
  height: 64px;
}
.vc-hiw-m1__card-img--a {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}
.vc-hiw-m1__card-img--b {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}
.vc-hiw-m1__card-img--c {
  background: linear-gradient(135deg, #9f1239 0%, #f43f5e 100%);
}
.vc-hiw-m1__card-body {
  padding: 8px 10px;
}
.vc-hiw-m1__card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 4px;
  padding: 2px 6px;
  display: inline-block;
  margin-bottom: 4px;
}
.vc-hiw-m1__card-tag--sold {
  color: #dc2626;
  background: #fee2e2;
}
.vc-hiw-m1__card-tag--unavail {
  color: #6b7280;
  background: #f3f4f6;
}
.vc-hiw-m1__card-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--hiw-text);
  margin-bottom: 3px;
}
.vc-hiw-m1__card-price {
  font-size: 10px;
  color: var(--hiw-muted);
}

/* ── STEP 2 — Zone selector ── */
.vc-hiw-m2__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--hiw-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.vc-hiw-m2__zones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.vc-hiw-m2__zone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s;
  color: var(--hiw-muted);
}
.vc-hiw-m2__zone--active {
  border-color: var(--hiw-blue);
  background: #f0f5ff;
  color: var(--hiw-blue);
}
.vc-hiw-m2__zone-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.vc-hiw-m2__zone-info {
  flex: 1;
}
.vc-hiw-m2__zone-info strong {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--hiw-text);
}
.vc-hiw-m2__zone-info span {
  font-size: 10px;
  color: var(--hiw-muted);
}
/* Mini map */
.vc-hiw-m2__map {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--hiw-border);
}
.vc-hiw-m2__map-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  border-radius: 4px;
}
.vc-hiw-m2__map-zone--a {
  background: rgba(37, 99, 235, 0.75);
  grid-row: 1 / 3;
}
.vc-hiw-m2__map-zone--b {
  background: rgba(245, 158, 11, 0.75);
}
.vc-hiw-m2__map-zone--c {
  background: rgba(16, 185, 129, 0.75);
}

/* ── STEP 3 — Plot grid ── */
.vc-hiw-m3__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.vc-hiw-m3__title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--hiw-text);
}
.vc-hiw-m3__legend {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-hiw-m3__legend span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  color: var(--hiw-muted);
}
.vc-hiw-m3__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}
.vc-hiw-m3__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}
.vc-hiw-m3__cell {
  height: 28px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.vc-hiw-m3__cell--a {
  background: #dcfce7;
  border: 1.5px solid #86efac;
}
.vc-hiw-m3__cell--s {
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  cursor: not-allowed;
}
.vc-hiw-m3__cell--r {
  background: #fef3c7;
  border: 1.5px solid #fcd34d;
  cursor: not-allowed;
}
.vc-hiw-m3__cell--selected {
  background: var(--hiw-blue) !important;
  border-color: var(--hiw-blue-dk) !important;
  transform: scale(1.18);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.4);
}
.vc-hiw-m3__detail {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--hiw-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--hiw-muted);
  min-height: 34px;
  transition: color 0.3s;
}
.vc-hiw-m3__detail strong {
  color: var(--hiw-blue);
  font-weight: 700;
}

/* ── STEP 4 — Size picker ── */
.vc-hiw-m4__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--hiw-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.vc-hiw-m4__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.vc-hiw-m4__option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--hiw-border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}
.vc-hiw-m4__option--active {
  border-color: var(--hiw-blue);
  background: #f0f5ff;
  transform: translateX(3px);
}
.vc-hiw-m4__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.vc-hiw-m4__option--active .vc-hiw-m4__radio {
  border-color: var(--hiw-blue);
}
.vc-hiw-m4__radio span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hiw-blue);
  display: none;
}
.vc-hiw-m4__option--active .vc-hiw-m4__radio span {
  display: block;
}
.vc-hiw-m4__info {
  flex: 1;
}
.vc-hiw-m4__info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--hiw-text);
}
.vc-hiw-m4__info span {
  font-size: 10px;
  color: var(--hiw-muted);
}
.vc-hiw-m4__price {
  font-size: 12px;
  font-weight: 800;
  color: var(--hiw-blue);
}
.vc-hiw-m4__summary {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid var(--hiw-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.vc-hiw-m4__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--hiw-muted);
}
.vc-hiw-m4__summary-row strong {
  color: var(--hiw-text);
  font-weight: 700;
}
.vc-hiw-m4__cta {
  margin-top: 4px;
  background: var(--hiw-blue);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
}

/* ── Progress bar ── */
.vc-hiw-stepper__progress {
  height: 3px;
  background: var(--hiw-sky-mid);
}
.vc-hiw-stepper__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hiw-blue), var(--hiw-blue-lt));
  transition: width 0.5s var(--hiw-ease);
  border-radius: 0 3px 3px 0;
}

/* ==========================================================================
   PAYMENT PLANS
   ========================================================================== */
.vc-hiw-plans {
  background: var(--hiw-white);
  padding: 100px 0;
}
.vc-hiw-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Plan card */
.vc-hiw-plan {
  background: var(--hiw-sky);
  border: 1px solid var(--hiw-border);
  border-radius: var(--hiw-radius);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform var(--hiw-dur) var(--hiw-ease),
    box-shadow var(--hiw-dur) var(--hiw-ease);
}
.vc-hiw-plan:hover {
  transform: translateY(-5px);
  box-shadow: var(--hiw-shadow-blue);
}

/* Featured plan */
.vc-hiw-plan--featured {
  background: linear-gradient(160deg, #1a3dbd 0%, #2563eb 55%, #3b82f6 100%);
  border-color: transparent;
  box-shadow: var(--hiw-shadow-blue);
  transform: scale(1.04);
  padding-top: 56px;
}
.vc-hiw-plan--featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 16px 56px rgba(37, 99, 235, 0.35);
}

.vc-hiw-plan__badge-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vc-hiw-plan__badge {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}
.vc-hiw-plan__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--hiw-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.vc-hiw-plan--featured .vc-hiw-plan__icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.vc-hiw-plan__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hiw-blue);
  margin-bottom: 8px;
}
.vc-hiw-plan--featured .vc-hiw-plan__tag {
  color: rgba(255, 255, 255, 0.65);
}

.vc-hiw-plan__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hiw-text);
  margin: 0 0 12px;
  line-height: 1.2;
}
.vc-hiw-plan--featured .vc-hiw-plan__name {
  color: #fff;
}

.vc-hiw-plan__desc {
  font-size: 0.875rem;
  color: var(--hiw-muted);
  line-height: 1.65;
  margin: 0 0 24px;
}
.vc-hiw-plan--featured .vc-hiw-plan__desc {
  color: rgba(255, 255, 255, 0.78);
}

.vc-hiw-plan__features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.vc-hiw-plan__features li {
  font-size: 0.85rem;
  color: var(--hiw-body);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.vc-hiw-plan__features li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.vc-hiw-plan--featured .vc-hiw-plan__features li {
  color: rgba(255, 255, 255, 0.88);
}
.vc-hiw-plan--featured .vc-hiw-plan__features li::before {
  background-color: rgba(255, 255, 255, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.vc-hiw-plan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--hiw-dur) var(--hiw-ease);
  background: var(--hiw-blue);
  color: #fff;
  border: 2px solid var(--hiw-blue);
  margin-top: auto;
}
.vc-hiw-plan__btn:hover {
  background: var(--hiw-blue-dk);
  border-color: var(--hiw-blue-dk);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.vc-hiw-plan--featured .vc-hiw-plan__btn {
  background: #fff;
  color: var(--hiw-blue);
  border-color: #fff;
}
.vc-hiw-plan--featured .vc-hiw-plan__btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--hiw-blue-dk);
}
/* Outline variant used on the advisory card */
.vc-hiw-plan__btn--outline {
  background: transparent;
  color: var(--hiw-blue);
  border-color: var(--hiw-blue);
}
.vc-hiw-plan__btn--outline:hover {
  background: var(--hiw-blue);
  color: #fff;
}
/* Advisory card subtle style (no coloured gradient) */
.vc-hiw-plan--advisory {
  border: 2px dashed var(--hiw-sky-mid);
  background: var(--hiw-sky);
}
.vc-hiw-plan--advisory .vc-hiw-plan__icon {
  background: rgba(37, 99, 235, 0.08);
  color: var(--hiw-blue);
}
.vc-hiw-plan--advisory .vc-hiw-plan__tag {
  color: var(--hiw-blue);
  background: rgba(37, 99, 235, 0.08);
}

.vc-hiw-plans__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--hiw-sky);
  border: 1px solid var(--hiw-sky-mid);
  border-radius: var(--hiw-radius-sm);
  padding: 16px 20px;
  margin-top: 40px;
}
.vc-hiw-plans__note svg {
  flex-shrink: 0;
  color: var(--hiw-blue);
  margin-top: 2px;
}
.vc-hiw-plans__note p {
  font-size: 0.83rem;
  line-height: 1.6;
  margin: 0;
  color: var(--hiw-muted);
}

/* ==========================================================================
   VIRTUAL TOUR
   ========================================================================== */
.vc-hiw-tour {
  background: linear-gradient(135deg, #09111f 0%, #121e35 55%, #0f1d40 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.vc-hiw-tour__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.vc-hiw-tour__left h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.vc-hiw-tour__lead {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0 0 44px;
  max-width: 480px;
}
.vc-hiw-tour__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vc-hiw-tour__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.vc-hiw-tour__step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hiw-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}
.vc-hiw-tour__step-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.vc-hiw-tour__step-text p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.65;
}

/* Tour booking card */
.vc-hiw-tour__card {
  background: var(--hiw-white);
  border-radius: var(--hiw-radius);
  padding: 36px 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}
.vc-hiw-tour__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--hiw-blue);
}
.vc-hiw-tour__card-head h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hiw-text);
  margin: 0;
}
.vc-hiw-tour__card-sub {
  font-size: 0.875rem;
  color: var(--hiw-muted);
  line-height: 1.6;
  margin: 0 0 28px;
}
.vc-hiw-tour__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.vc-hiw-tour__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: var(--hiw-radius-sm);
  border: 1px solid var(--hiw-border);
  text-decoration: none;
  transition: all var(--hiw-dur) var(--hiw-ease);
  background: var(--hiw-white);
}
.vc-hiw-tour__contact:hover {
  border-color: var(--hiw-blue);
  background: var(--hiw-sky);
  transform: translateX(4px);
  text-decoration: none;
}
.vc-hiw-tour__contact--wa {
  border-color: rgba(37, 211, 102, 0.3);
  background: rgba(37, 211, 102, 0.04);
}
.vc-hiw-tour__contact--wa:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  transform: translateX(4px);
}
.vc-hiw-tour__contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: var(--hiw-sky);
  color: var(--hiw-blue);
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.vc-hiw-tour__contact-icon svg {
  display: block;
  flex-shrink: 0;
}
.vc-hiw-tour__contact--wa .vc-hiw-tour__contact-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.vc-hiw-tour__contact > div {
  flex-grow: 1;
  min-width: 0;
}
.vc-hiw-tour__contact strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--hiw-text);
}
.vc-hiw-tour__contact span {
  font-size: 0.8rem;
  color: var(--hiw-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.vc-hiw-tour__contact-arrow {
  color: var(--hiw-muted);
  flex-shrink: 0;
  transition:
    transform var(--hiw-dur) var(--hiw-ease),
    color var(--hiw-dur) var(--hiw-ease);
}
.vc-hiw-tour__contact:hover .vc-hiw-tour__contact-arrow {
  transform: translateX(3px);
  color: var(--hiw-blue);
}
.vc-hiw-tour__footnote {
  font-size: 0.78rem;
  color: var(--hiw-muted);
  text-align: center;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--hiw-border);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.vc-hiw-cta {
  background: linear-gradient(
    135deg,
    var(--hiw-blue) 0%,
    var(--hiw-blue-dk) 50%,
    #163aa0 100%
  );
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vc-hiw-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.28;
  pointer-events: none;
}
.vc-hiw-cta__orb--a {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    transparent 70%
  );
  top: -150px;
  left: -80px;
}
.vc-hiw-cta__orb--b {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: 10%;
}
.vc-hiw-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.vc-hiw-cta__title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.vc-hiw-cta__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0 0 40px;
}
.vc-hiw-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* 1200px */
@media (max-width: 1200px) {
  .vc-hiw-tour__inner {
    grid-template-columns: 1fr 380px;
    gap: 52px;
  }
}

/* 992px */
@media (max-width: 992px) {
  .vc-hiw-stepper__nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .vc-hiw-stepper__tab:nth-child(2) {
    border-right: none;
  }
  .vc-hiw-stepper__tab:nth-child(3) {
    border-top: 1px solid var(--hiw-border);
  }
  .vc-hiw-stepper__panel {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }
  .vc-hiw-stepper__mockup {
    order: -1;
  }

  .vc-hiw-plans__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .vc-hiw-plan--featured {
    transform: none;
  }
  .vc-hiw-plan--featured:hover {
    transform: translateY(-5px);
  }

  .vc-hiw-tour__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .vc-hiw-tour__lead {
    max-width: 100%;
  }
}

/* 768px */
@media (max-width: 768px) {
  .vc-hiw-hero {
    padding: 80px 0 68px;
  }

  .vc-hiw-hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 0;
  }
  .vc-hiw-hero__stat-sep {
    display: none;
  }
  .vc-hiw-hero__stat {
    flex: 1 1 calc(50% - 2px);
    padding: 0 16px;
  }

  .vc-hiw-process,
  .vc-hiw-plans,
  .vc-hiw-tour,
  .vc-hiw-cta {
    padding: 72px 0;
  }

  .vc-hiw-intro {
    margin-bottom: 48px;
  }
}

/* 576px */
@media (max-width: 576px) {
  .vc-hiw-stepper__nav {
    grid-template-columns: 1fr 1fr;
  }
  .vc-hiw-stepper__tab-label {
    font-size: 0.72rem;
  }
  .vc-hiw-stepper__panel {
    padding: 24px 18px;
    gap: 28px;
  }
  .vc-hiw-m1__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vc-hiw-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-hiw-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vc-hiw-tour__card {
    padding: 24px 18px;
  }

  .vc-hiw-process,
  .vc-hiw-plans,
  .vc-hiw-tour,
  .vc-hiw-cta {
    padding: 56px 0;
  }
}

/* ==========================================================================
   HERO ENTRANCE ANIMATIONS (CSS-only, no JS required)
   ========================================================================== */

@keyframes vc-hiw-hero-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered entrance for each hero content element */
.vc-hiw-hero__content .vc-hiw-pill {
  animation: vc-hiw-hero-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.vc-hiw-hero__title {
  animation: vc-hiw-hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
.vc-hiw-hero__lead {
  animation: vc-hiw-hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}
.vc-hiw-hero__actions {
  animation: vc-hiw-hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.vc-hiw-hero__stats {
  animation: vc-hiw-hero-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.78s both;
}

/* ==========================================================================
   SCROLL-REVEAL SYSTEM
   Elements begin hidden; JS adds .is-visible when they enter the viewport.
   ========================================================================== */

/* Initial hidden state per animation type */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(42px);
  will-change: transform, opacity;
}
[data-animate="fade-down"] {
  opacity: 0;
  transform: translateY(-30px);
  will-change: transform, opacity;
}
[data-animate="fade-right"] {
  opacity: 0;
  transform: translateX(-52px);
  will-change: transform, opacity;
}
[data-animate="fade-left"] {
  opacity: 0;
  transform: translateX(52px);
  will-change: transform, opacity;
}

/* Visible state — transition to natural position */
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 0.7s var(--hiw-ease),
    transform 0.7s var(--hiw-ease);
  transition-delay: var(--anim-delay, 0ms);
}

/* ==========================================================================
   STEP ICON POP (fires after parent card becomes visible)
   ========================================================================== */

@keyframes vc-hiw-icon-pop {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }
  65% {
    transform: scale(1.18);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================================
   CONNECTOR LINE DRAW — removed (replaced by stepper progress bar)
   ========================================================================== */

/* ==========================================================================
   TOUR STEPS — stagger in when left column becomes visible
   ========================================================================== */

.vc-hiw-tour__step {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--hiw-ease),
    transform 0.55s var(--hiw-ease);
}
.vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.46s;
}
.vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

/* ==========================================================================
   TOUR CONTACT ROWS — stagger in when card becomes visible
   ========================================================================== */

.vc-hiw-tour__contact {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s var(--hiw-ease),
    transform 0.45s var(--hiw-ease),
    border-color var(--hiw-dur) var(--hiw-ease),
    background var(--hiw-dur) var(--hiw-ease);
}
.vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.65s;
}

/* ==========================================================================
   PLAN CARD — featured card gets a subtle extra rise on entry
   ========================================================================== */

.vc-hiw-plan--featured[data-animate].is-visible {
  /* Override base delay to ensure featured enters slightly after siblings */
  transition-delay: calc(var(--anim-delay, 0ms) + 60ms) !important;
}

/* ==========================================================================
   CTA ORB PULSE
   ========================================================================== */

@keyframes vc-hiw-orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.28;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.4;
  }
}

.vc-hiw-cta__orb--a {
  animation: vc-hiw-orb-pulse 7s ease-in-out infinite;
}
.vc-hiw-cta__orb--b {
  animation: vc-hiw-orb-pulse 9s ease-in-out 1.4s infinite;
}

/* ==========================================================================
   REDUCED MOTION — disable all animations & transitions
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .vc-hiw-hero__content .vc-hiw-pill,
  .vc-hiw-hero__title,
  .vc-hiw-hero__lead,
  .vc-hiw-hero__actions,
  .vc-hiw-hero__stats {
    animation: none !important;
  }

  [data-animate],
  [data-animate].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .vc-hiw-step.is-visible .vc-hiw-step__icon-wrap,
  .vc-hiw-step.is-visible .vc-hiw-step__label {
    animation: none !important;
  }

  .vc-hiw-steps::before,
  .vc-hiw-steps.connector-drawn::before {
    transform: scaleX(1) !important;
    transition: none !important;
  }

  .vc-hiw-tour__step,
  .vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(1),
  .vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(2),
  .vc-hiw-tour__left.is-visible .vc-hiw-tour__step:nth-child(3) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .vc-hiw-tour__contact,
  .vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(1),
  .vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(2),
  .vc-hiw-tour__card.is-visible .vc-hiw-tour__contact:nth-child(3) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .vc-hiw-cta__orb--a,
  .vc-hiw-cta__orb--b {
    animation: none !important;
  }
}
