:root {
  --vc-blue: #04122D;
  --vc-blue-soft: #0a1f4d;
  --vc-yellow: #FFCE00;
  --vc-yellow-hover: #e6b800;
  --vc-light: #EBF1FE;
  --vc-grey-1: #424D61;
  --vc-grey-2: #808795;
  --vc-grey-3: #BFC2C9;
  --vc-grey-4: #E4E6E8;
  --vc-wa: #25D366;
  --vc-wa-hover: #1ebe5d;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vc-page {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--vc-blue);
  background: var(--vc-light);
  line-height: 1.5;
}

a { color: inherit; }

/* HEADER */
.sb-header {
  background: #fff;
  border-bottom: 1px solid var(--vc-grey-4);
  padding: 12px clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.sb-header--dark {
  background: var(--vc-blue);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.sb-header-logo { display: flex; align-items: center; flex-shrink: 0; }
.sb-header-logo img {
  height: clamp(32px, 5vw, 44px);
  width: auto;
  display: block;
}
.sb-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vc-yellow);
  color: var(--vc-blue);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .12s;
  white-space: nowrap;
}
.sb-header-cta:hover { background: var(--vc-yellow-hover); transform: translateY(-1px); }
.sb-header-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.sb-cta-label { letter-spacing: .04em; font-size: 12px; }
.sb-cta-num { font-weight: 800; }
@media (max-width: 480px) {
  .sb-cta-label { display: none; }
  .sb-header-cta { padding: 10px 14px; }
}

/* CONFIGURATOR */
.vc-config {
  background: var(--vc-light);
  padding: clamp(32px, 5vw, 64px) 20px;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-config-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.vc-config-intro {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.vc-config-intro h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--vc-blue);
}
.vc-config-intro p {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.55;
  color: var(--vc-grey-1);
  margin: 0 auto;
  max-width: 560px;
}
.vc-config-inner {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 10px 40px rgba(4, 18, 45, .08);
}

.vc-stepbar { margin-bottom: 28px; }
.vc-step-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vc-blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.vc-progress {
  height: 5px;
  background: var(--vc-grey-4);
  border-radius: 999px;
  overflow: hidden;
}
.vc-progress-bar {
  height: 100%;
  background: var(--vc-yellow);
  width: 33.33%;
  transition: width .4s ease;
}

.vc-step { display: none; }
.vc-step.is-active { display: block; }

.vc-step h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--vc-blue);
}

.vc-step-hint {
  font-size: 14px;
  color: var(--vc-grey-2);
  margin: -16px 0 24px;
  line-height: 1.5;
}

/* CARDS (icon + label) */
.vc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 600px) {
  .vc-cards { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.vc-card {
  background: #fff;
  border: 2px solid var(--vc-grey-4);
  border-radius: 12px;
  padding: 22px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--vc-blue);
  text-align: center;
  transition: border-color .2s, background .2s, color .2s, transform .12s;
}
.vc-card:hover { border-color: var(--vc-yellow); transform: translateY(-1px); }
.vc-card:focus-visible { outline: 2px solid var(--vc-yellow); outline-offset: 2px; }
.vc-card.is-selected {
  border-color: var(--vc-blue);
  background: var(--vc-blue);
  color: #fff;
}
.vc-card-icon { width: 32px; height: 32px; flex-shrink: 0; }

/* PACKAGE CARDS */
.vc-cards--packages {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 720px) {
  .vc-cards--packages { grid-template-columns: 1fr; }
}
.vc-pkg {
  background: #fff;
  border: 2px solid var(--vc-grey-4);
  border-radius: 14px;
  padding: 24px 20px;
  cursor: pointer;
  text-align: left;
  font-family: 'Figtree', sans-serif;
  color: var(--vc-blue);
  transition: border-color .2s, background .2s, color .2s, transform .12s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vc-pkg:hover { border-color: var(--vc-yellow); transform: translateY(-1px); }
.vc-pkg:focus-visible { outline: 2px solid var(--vc-yellow); outline-offset: 2px; }
.vc-pkg.is-selected {
  border-color: var(--vc-blue);
  background: var(--vc-blue);
  color: #fff;
}
.vc-pkg-tier {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
}
.vc-pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.vc-pkg-features li {
  position: relative;
  padding-left: 22px;
}
.vc-pkg-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--vc-yellow);
  border-bottom: 2px solid var(--vc-yellow);
  transform: rotate(-45deg);
}

/* INPUTS */
.vc-input-wrap {
  margin-top: 20px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.vc-input-wrap.is-visible { display: flex; }
.vc-input-wrap label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--vc-blue);
}
.vc-req { color: #e74c3c; }
.vc-input-wrap input {
  width: 100%;
  border: 2px solid var(--vc-grey-4);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: var(--vc-blue);
  background: #fff;
  transition: border-color .2s;
}
.vc-input-wrap input:focus {
  outline: none;
  border-color: var(--vc-yellow);
}
.vc-input-wrap input::placeholder { color: var(--vc-grey-3); }

/* NAV */
.vc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--vc-grey-4);
}
.vc-nav-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

.vc-btn-back {
  background: transparent;
  border: 0;
  color: var(--vc-grey-2);
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}
.vc-btn-back:hover { color: var(--vc-blue); }
.vc-btn-back:disabled { opacity: 0; pointer-events: none; }

.vc-btn-next {
  background: var(--vc-yellow);
  color: var(--vc-blue);
  border: 0;
  border-radius: 10px;
  padding: 14px 24px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .12s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vc-btn-next:hover { background: var(--vc-yellow-hover); transform: translateY(-1px); }
.vc-btn-next:disabled {
  background: var(--vc-grey-4);
  color: var(--vc-grey-2);
  cursor: not-allowed;
  transform: none;
}
.vc-btn-next.is-wa {
  background: var(--vc-wa);
  color: #fff;
}
.vc-btn-next.is-wa:hover { background: var(--vc-wa-hover); }
.vc-btn-arrow { font-size: 16px; line-height: 1; }
.vc-btn-sub {
  font-size: 12px;
  color: var(--vc-grey-2);
  font-family: 'Figtree', sans-serif;
}

/* REVIEWS */
.vc-reviews {
  background: var(--vc-blue);
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
}
.vc-reviews-inner { max-width: 1400px; margin: 0 auto; }

.vc-reviews-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto clamp(32px, 4vw, 48px);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
}
.vc-g-logo { width: 20px; height: 20px; flex-shrink: 0; }
.vc-reviews-rating { font-weight: 800; font-size: 16px; }
.vc-reviews-stars-badge { color: var(--vc-yellow); letter-spacing: 1px; font-size: 14px; }
.vc-reviews-count { color: rgba(255, 255, 255, .85); }

.vc-reviews-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.vc-reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: vc-marquee 90s linear infinite;
  padding: 4px 0;
  will-change: transform;
}
@keyframes vc-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.vc-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-review-head { display: flex; align-items: center; gap: 12px; }
.vc-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.vc-review-avatar--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vc-review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vc-review-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--vc-blue);
  font-size: 15px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vc-review-stars { color: var(--vc-yellow); letter-spacing: 1px; font-size: 14px; line-height: 1; }
.vc-review-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--vc-grey-1);
  margin: 0;
}

@media (max-width: 520px) {
  .vc-review-card { width: 280px; padding: 20px; }
  .vc-reviews-track { animation-duration: 70s; }
}

@media (prefers-reduced-motion: reduce) {
  .vc-reviews-track { animation: none; transform: none; }
  .vc-reviews-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* FOOTER */
.sb-footer {
  background: var(--vc-blue);
  color: rgba(255, 255, 255, .85);
  font-family: 'Figtree', sans-serif;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 3vw, 32px) 0;
}
.sb-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.sb-footer-brand img {
  height: clamp(40px, 5vw, 56px);
  width: auto;
  display: block;
}
.sb-footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: .01em;
}
.sb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sb-footer-col a,
.sb-footer-link {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 15px;
  transition: color .15s;
}
.sb-footer-col a:hover,
.sb-footer-link:hover { color: var(--vc-yellow); }
.sb-footer-col address {
  font-style: normal;
  color: rgba(255, 255, 255, .75);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.sb-footer-col .sb-footer-link {
  display: block;
  margin-bottom: 8px;
}
.sb-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.sb-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}
@media (max-width: 880px) {
  .sb-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .sb-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .sb-footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
