@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Space+Grotesk:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --lime: #D4E84A;
  --lime-pale: #F5FAD0;
  --lime-mid: #C8DC30;
  --cta: #ffc70a;
  --cta-hover: #f0bb00;
  --cta-text: #090909;
  --cream: #F7F5EE;
  --cream-warm: #EFEDE6;
  --white: #FFFFFF;
  --dark: #1A1E1B;
  --dark-2: #232820;
  --mid: #4A4F46;
  --muted: #757870;
  --border: #E2DDD4;
  --border-mid: #C8C3B8;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body[data-page="home"] #site-header {
  margin: 0;
  padding: 0;
}

body[data-page="home"] .fh {
  margin-top: 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes floatY2 {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-40px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.94)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0
  }
}

@keyframes dotAppear {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes dotGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 6px #ffc70a)
  }

  50% {
    filter: drop-shadow(0 0 18px #ffc70a)
  }
}

.anim-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.anim-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.anim-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity .6s ease, transform .6s ease;
}

.anim-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.anim-delay-1 {
  transition-delay: .1s;
}

.anim-delay-2 {
  transition-delay: .2s;
}

.anim-delay-3 {
  transition-delay: .3s;
}

.anim-delay-4 {
  transition-delay: .4s;
}

.float {
  animation: floatY 5s ease-in-out infinite;
}

.float2 {
  animation: floatY2 5s ease-in-out 1.8s infinite;
}

/* Trust cards hang below a full-viewport hero. */
.fh {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: visible;
  margin-bottom: 160px;
}

.fh-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero/hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.fh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(91.59deg, rgb(16, 37, 68) 26.264%, rgba(16, 37, 70, 0.30) 71.5%);
  opacity: .70;
}

.fh-deco-lines {
  position: absolute;
  left: -0.318%;
  top: 18.163%;
  width: 97.934%;
  height: 49.388%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
  background: transparent;
}

.fh-deco-img {
  position: absolute;
  inset: -3.04% -0.87% -1.88% -1.1%;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.fh-deco-path {
  stroke-dasharray: var(--path-len, 5000);
  stroke-dashoffset: var(--path-len, 5000);
  transition: stroke-dashoffset 1.8s ease;
  filter: drop-shadow(-6px 2px 6px rgba(255, 208, 0, .85)) drop-shadow(-6px 2px 14px rgba(255, 208, 0, .4));
}

.fh-deco-lines.visible .fh-deco-path {
  stroke-dashoffset: 0;
}

.fh-deco-dot {
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255, 199, 10, .7));
}

.fh-deco-lines.visible .fh-deco-dot {
  animation: dotAppear .5s 1.8s ease forwards, dotGlow 2.5s 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion:reduce) {
  .fh-deco-path {
    transition: none;
    stroke-dashoffset: 0;
  }

  .fh-deco-lines.visible .fh-deco-path {
    stroke-dashoffset: 0;
  }

  .fh-deco-dot {
    opacity: 1;
  }

  .fh-deco-lines.visible .fh-deco-dot {
    animation: none;
    opacity: 1;
  }
}

.fh-inner {
  position: absolute;
  z-index: 2;
  left: 11.55%;
  top: 26%;
  width: min(761px, 40.3%);
  max-width: 761px;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.fh-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fh-heading-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fh-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fec12a;
  margin: 0;
  animation: fadeUp .8s ease both;
}

.fh-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 3.75vw, 72px);
  line-height: 1.042;
  color: #fff;
  max-width: 800px;
  margin: 0;
  animation: fadeUp .8s .1s ease both;
}

.fh-h1 em {
  font-style: normal;
  color: #ffc70a;
}

.fh-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.611;
  color: rgba(255, 255, 255, .9);
  max-width: 761px;
  margin: 0;
  animation: fadeUp .8s .2s ease both;
}

.fh-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0;
  animation: fadeUp .8s .3s ease both;
}

.fh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  background: #ffc70a;
  color: #090909;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .18px;
  line-height: 1.11;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.fh-btn-primary:hover {
  background: #f0bb00;
  transform: translateY(-2px);
}

.fh-btn-primary img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.fh-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .18px;
  line-height: 1.11;
  border-radius: 9999px;
  border: 1.3px solid #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s;
}

.fh-btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.fh-btn-secondary img {
  width: 14px;
  height: 12px;
  flex-shrink: 0;
  transform: rotate(-90deg);
  filter: invert(1);
}

.fh-trust {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -160px;
  z-index: 3;
  pointer-events: none;
}

.fh-trust-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
  padding: 0 4%;
  pointer-events: auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-lime {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow-white {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.h2 em {
  font-style: italic;
}

.h2-white {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.h2-white em {
  font-style: italic;
}

.pad {
  padding: 96px 6%;
}

.pad-sm {
  padding: 64px 6%;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all .2s;
}

.btn-lime {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212, 232, 74, .3);
}

.btn-lime:hover {
  background: var(--lime-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 232, 74, .4);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
}

.g2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.card:hover {
  border-color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
}

.trust-bar {
  background: var(--dark);
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
}

.ti-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .07);
}

.stat-box {
  background: var(--dark);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(212, 232, 74, .04);
}

.stat-n {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-l {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border: none;
}

.step-n {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.rev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: transform .25s, box-shadow .25s;
}

.rev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.rev-card blockquote {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.rev-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.rev-by {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rev-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--mid);
  flex-shrink: 0;
}

.rev-by strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.rev-by span {
  font-size: 12px;
  color: var(--muted);
}

.chip-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 232, 74, .12);
  border: 1px solid rgba(212, 232, 74, .28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 22px;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  color: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--dark);
  background: #fff;
}

.fr2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.f-submit {
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.f-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  opacity: 0;
  transition: opacity .2s;
}

.f-submit:hover {
  background: var(--dark-2);
  transform: translateY(-1px);
}

.f-submit:hover::after {
  opacity: 1;
}

.f-submit-lime {
  background: var(--lime) !important;
  color: var(--dark) !important;
}

.f-submit-lime:hover {
  background: var(--lime-mid) !important;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
  box-shadow: 0 4px 48px rgba(0, 0, 0, .07);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--lime-pale);
  border: 1px solid rgba(212, 232, 74, .5);
  border-radius: 16px;
  margin-top: 16px;
}

.form-success.show {
  display: block;
  animation: scaleIn .4s ease both;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--mid);
}

.success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.vf-form-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, .05);
  font-family: var(--font-sans);
}

.vf-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.vf-form-header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #11234b;
  margin-bottom: 12px;
}

.vf-form-accent {
  width: 40px;
  height: 3px;
  background: #feba02;
  margin: 0 auto 14px;
}

.vf-form-sub {
  font-size: 13px;
  line-height: 1.65;
  color: #4b5563;
  max-width: 612px;
  margin: 0 auto;
}

.vf-section {
  margin-bottom: 28px;
}

.vf-section-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.vf-num {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #11234b;
}

.vf-divider {
  width: 2px;
  height: 24px;
  background: #feba02;
  margin: 0 12px;
  flex-shrink: 0;
}

.vf-section-head h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #11234b;
}

.vf-hint {
  font-size: 13px;
  line-height: 1.65;
  color: #6b7280;
  margin: -12px 0 16px;
}

.vf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.vf-field-full {
  grid-column: 1/-1;
}

.vf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vf-field label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #11234b;
}

.vf-req {
  color: #feba02;
}

.vf-field input,
.vf-field select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: #11234b;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

.vf-field select {
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.vf-field input::placeholder {
  color: #d1d5db;
}

.vf-field input:focus,
.vf-field select:focus {
  border-color: #11234b;
}

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

.vf-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.vf-check:hover {
  border-color: #d1d5db;
  background: #fafafa;
}

.vf-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.vf-check-box {
  width: 20px;
  height: 20px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: background .2s, border-color .2s;
}

.vf-check input:checked+.vf-check-box {
  background: #11234b;
  border-color: #11234b;
}

.vf-check input:checked+.vf-check-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #feba02;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.vf-check input:checked~.vf-check-text {
  color: #11234b;
}

.vf-check:has(input:checked) {
  border-color: #11234b;
  background: #f9fafb;
}

.vf-check-text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #11234b;
}

.vf-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  background: #11234b;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  position: relative;
}

.vf-submit::after {
  display: none;
}

.vf-submit:hover {
  background: #0d1a3a;
  transform: translateY(-1px);
}

.vf-submit svg {
  flex-shrink: 0;
}

.vf-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.5;
  color: #6b7280;
}

.vf-privacy svg {
  flex-shrink: 0;
  color: #6b7280;
}

.vf-consent {
  margin: 8px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.vf-consent-row input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.vf-consent-box {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1.5px solid #0f766e;
  border-radius: 3px;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
}

.vf-consent-row input:checked+.vf-consent-box {
  background: #0f766e;
  border-color: #0f766e;
}

.vf-consent-row input:checked+.vf-consent-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.vf-consent-row input:focus-visible+.vf-consent-box {
  outline: 2px solid #0f766e;
  outline-offset: 2px;
}

.vf-consent-text,
.vf-consent-note {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.55;
  color: #596475;
  margin: 0;
}

.vf-consent-note {
  padding-left: 28px;
}

.vf-consent-note a {
  color: #596475;
  text-decoration: underline;
  word-break: break-word;
}

.vf-consent-note a:hover {
  color: #ffc70a;
}

.vf-form-card .form-success {
  margin-top: 0;
  border-radius: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child {
  border: none;
}

.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-a {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, margin-top .3s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 14px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform .25s;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--lime);
  font-weight: 300;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 14px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .15);
  outline: none;
  margin: 8px 0;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--dark);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.vc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fec12a;
  margin-bottom: 16px;
}

.vc-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  color: #090909;
  margin-bottom: 14px;
}

.vc-h2-white {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 14px;
}

.vc-body-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #596475;
}

.vc-body-white {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}

.vc-trust-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, .25);
  width: 325px;
  height: 231px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  overflow: hidden;
  flex-shrink: 0;
}

.vc-trust-card:nth-child(2),
.vc-trust-card:nth-child(4) {
  width: 324px;
}

.vc-trust-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.vc-trust-card span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #111;
  text-align: center;
  letter-spacing: .22px;
  line-height: 1.3;
}

.vc-why {
  background: #fff;
  padding: 96px 6%;
  margin-top: 66px;
}

.vc-why-header {
  max-width: 724px;
  margin: 0 auto 56px;
  text-align: center;
}

.vc-why-cards {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 17px;
}

.vc-why-card {
  background: #fff;
  border: 1px solid rgba(21, 60, 103, 0.12);
  border-radius: 16px;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.vc-why-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.vc-why-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vc-why-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: #090909;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.vc-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #596475;
}

.vc-combos {
  background: #102445;
  padding: 96px 6%;
}

.vc-combos-inner {
  max-width: 1712px;
  margin: 0 auto;
}

.vc-combos-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 28px;
}

.vc-combos-top-left {
  max-width: 730px;
}

.vc-combos-top-right {
  max-width: 540px;
}

.vc-combos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.vc-combo-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.vc-combo-card--dark {
  background: var(--dark);
  border-color: var(--dark);
}

.vc-combo-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.vc-combo-card--dark .vc-combo-label {
  color: rgba(255, 255, 255, .4);
}

.vc-combo-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.vc-combo-card--dark .vc-combo-title {
  color: #fff;
}

.vc-combo-specs {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.vc-combo-card--dark .vc-combo-specs {
  color: rgba(255, 255, 255, .6);
}

.vc-combo-price-block {
  margin-bottom: 20px;
}

.vc-combo-price-label {
  font-size: 13px;
  color: var(--muted);
}

.vc-combo-card--dark .vc-combo-price-label {
  color: rgba(255, 255, 255, .45);
}

.vc-combo-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: -1.5px;
  line-height: 1;
}

.vc-combo-price--accent {
  color: var(--cta);
}

.vc-combo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--cta);
  color: var(--cta-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.vc-combo-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.vc-unlock {
  background: #fff;
  padding: 96px 6%;
}

.vc-unlock-inner {
  max-width: 1522px;
  margin: 0 auto;
}

.vc-unlock-header {
  margin-bottom: 48px;
}

.vc-unlock-split {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 42px;
  align-items: center;
}

.vc-unlock-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 487px;
}

.vc-unlock-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-unlock-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vc-unlock-tile {
  background: #fff;
  border: 1px solid rgba(21, 60, 103, 0.12);
  border-radius: 12px;
  padding: 24px 28px;
}

.vc-unlock-tile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.vc-unlock-tile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.vc-unlock-tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.vc-unlock-tile h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #090909;
  line-height: 1.3;
}

.vc-unlock-tile p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #596475;
}

.vc-rebates {
  padding: 96px 6%;
  position: relative;
  overflow: hidden;
  min-height: 816px;
}

.vc-rebates-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('/assets/hero/rebates-bg.webp') center center/cover no-repeat;
}

.vc-rebates-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 36, 69, 0.8);
  z-index: 1;
}

.vc-rebates-inner {
  position: relative;
  z-index: 2;
  max-width: 1531px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.vc-rebates-header {
  text-align: center;
  max-width: 724px;
}

.vc-rebates-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  width: 100%;
}

.vc-rebates-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 24px 28px;
  display: flex;
  flex-direction: column;
}

.vc-rebates-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 48px;
}

.vc-rebates-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vc-rebates-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #090909;
  margin-bottom: 10px;
  line-height: 1.4;
}

.vc-rebates-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #596475;
}

.vc-rebates-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #ffc70a;
  color: #090909;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.vc-rebates-btn:hover {
  background: #f0bb00;
  transform: translateY(-2px);
}

.vc-rebates-btn img {
  width: 18px;
  height: 18px;
}

.vc-install {
  background: #fff;
  padding: 96px 6%;
}

.vc-install-inner {
  max-width: 1399px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vc-install-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 774px;
  position: sticky;
  top: 100px;
}

.vc-install-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-install-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vc-install-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

.vc-install-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.vc-install-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vc-install-connector {
  width: 2px;
  height: 24px;
  background: repeating-linear-gradient(to bottom, #c0c8d8 0, #c0c8d8 4px, transparent 4px, transparent 8px);
  margin-left: 39px;
  flex-shrink: 0;
}

.vc-install-step-text {
  background: rgba(21, 60, 103, 0.06);
  border-radius: 12px;
  padding: 18px 20px;
  flex: 1;
  margin-top: 0;
}

.vc-install-step-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #090909;
  margin-bottom: 8px;
}

.vc-install-step-text p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #596475;
}

.vc-install-content {
  display: flex;
  flex-direction: column;
}

.vc-estimator {
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
  min-height: 700px;
}

.vc-estimator-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vc-estimator-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-estimator-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 36, 69, 0.8);
}

.vc-estimator-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 76px;
  align-items: flex-start;
}

.vc-estimator-left {
  flex: 1 1 749px;
  max-width: 749px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vc-estimator-left>.vc-eyebrow,
.vc-estimator-left>.vc-h2-white,
.vc-estimator-left>.vc-body-white {
  max-width: 724px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vc-eyebrow-gold {
  color: #fec12a;
}

.vc-est-card {
  background: #fff;
  border-radius: 24px;
  padding: 41px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  width: 100%;
}

.vc-est-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vc-est-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vc-est-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #090909;
}

.vc-est-bill {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #102445;
  line-height: 1;
}

.vc-est-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, #ffc70a 0%, #ffc70a 63.6%, #3a3d3a 63.6%, #3a3d3a 100%);
  outline: none;
  cursor: pointer;
  margin: 20px 0 0;
}

.vc-est-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffc70a;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212, 237, 93, .4);
}

.vc-est-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffc70a;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(212, 237, 93, .4);
}

.vc-est-limits {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
}

.vc-est-results {
  display: flex;
  gap: 16px;
}

.vc-est-result {
  flex: 1;
  background: #102445;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vc-est-result-val {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffc70a;
  text-align: center;
  line-height: 1.1;
}

.vc-est-result-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

.vc-est-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #596475;
  text-align: center;
}

.vc-estimator-form-card {
  flex: 1 1 724px;
  max-width: 724px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}

.vc-est-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: #090909;
  line-height: 1.2;
  margin: 0;
}

.vc-est-form-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #596475;
  margin: 10px 0 0;
}

.vc-estimator-form-card .vf-form {
  padding-top: 22px;
  margin: 0;
}

.vc-estimator-form-card .vf-section {
  margin-bottom: 24px;
}

.vc-estimator-form-card .vf-section:last-of-type {
  margin-bottom: 8px;
}

.vc-estimator-form-card .vf-submit-gold {
  background: #ffc70a;
  color: #090909;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
}

.vc-estimator-form-card .vf-submit-gold:hover {
  background: #f0bb00;
}

.vc-estimator-form-card .vf-submit-gold:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.vc-estimator-form-card:has(.form-success.show) .vc-est-form-intro,
.vc-estimator-form-card:has(.form-success.show) .vf-form {
  display: none;
}

.vc-estimator-form-card .form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 4px;
}

.vc-estimator-form-card .form-success.show {
  display: flex;
}

.vc-estimator-form-card .form-success .success-icon {
  margin-bottom: 16px;
}

.vc-estimator-form-card .form-success h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #102445;
  margin: 0 0 10px;
}

.vc-estimator-form-card .form-success p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #596475;
  margin: 0;
  max-width: 320px;
}

.vc-brands {
  background: #fff;
  padding: 72px 6%;
}

.vc-brands-inner {
  max-width: 1594px;
  margin: 0 auto;
}

.vc-brands-header {
  text-align: center;
  margin-bottom: 56px;
}

.vc-brands-logos {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.vc-brand-card {
  background: rgba(16, 37, 68, 0.1);
  border-radius: 16px;
  width: 232px;
  height: 111px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  overflow: hidden;
}

.vc-brand-card img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.vc-reviews {
  background: rgba(16, 36, 69, 0.08);
  padding: 96px 6%;
  position: relative;
  overflow: hidden;
}

.vc-reviews-inner {
  max-width: 1293px;
  margin: 0 auto;
}

.vc-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 29px;
  margin-top: 56px;
}

.vc-review-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 2px 10px rgba(0, 0, 0, .1);
  padding: 38px;
}

.vc-review-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.vc-review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.vc-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vc-review-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #090909;
  margin-bottom: 6px;
}

.vc-review-stars {
  color: #ffc70a;
  font-size: 20px;
  letter-spacing: 1px;
}

.vc-review-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #596475;
}

.vc-reviews-deco {
  position: absolute;
  left: -30px;
  top: 0;
  width: 352px;
  height: 263px;
  opacity: 0.5;
  pointer-events: none;
  object-fit: contain;
}

.vc-where {
  background: #102445;
  padding: 80px 6%;
}

.vc-where-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.vc-where-header {
  text-align: center;
  margin-bottom: 56px;
}

.vc-where-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.vc-where-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  min-width: 0;
}

.vc-where-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.vc-where-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vc-where-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #090909;
  margin-bottom: 8px;
}

.vc-where-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #596475;
}

.vc-faq {
  background: #f5f6f8;
  padding: 96px 6%;
}

.vc-faq-inner {
  max-width: 1452px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vc-faq-left {
  max-width: 695px;
}

.vc-faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vc-faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.vc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #090909;
  transition: background .15s;
}

.vc-faq-q:hover {
  background: rgba(0, 0, 0, .02);
}

.vc-faq-num {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fec12a;
  flex-shrink: 0;
  margin-right: 4px;
}

.vc-faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #090909;
  transition: all .2s;
  line-height: 1;
}

.vc-faq-item.open .vc-faq-toggle {
  background: #102445;
  border-color: #102445;
  color: #fff;
}

.vc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}

.vc-faq-item.open .vc-faq-a {
  max-height: 300px;
}

.vc-faq-a-inner {
  padding: 0 32px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #596475;
}

.vc-cta {
  padding: 80px 6%;
}

.vc-cta-inner {
  max-width: 1785px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 537px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-cta-bg {
  position: absolute;
  inset: 0;
}

.vc-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 41, 76, 0.8);
}

.vc-cta-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.vc-cta-deco--desktop {
  left: 4.48%;
  top: 0;
  width: 80.62%;
  height: 96.65%;
}

.vc-cta-deco--mobile {
  display: none;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vc-cta-deco-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vc-cta-path {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  transition: stroke-dashoffset 1.6s ease;
  filter: drop-shadow(0 0 6px rgba(255, 208, 0, .7)) drop-shadow(0 0 14px rgba(255, 208, 0, .4));
}

.vc-cta-path--mobile {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}

.vc-cta-deco.visible .vc-cta-path {
  stroke-dashoffset: 0;
}

.vc-cta-dot {
  position: absolute;
  width: 23px;
  height: 23px;
  left: 85.13%;
  top: 96.37%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  animation: dotGlow 2.5s ease-in-out infinite;
}

.vc-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 724px;
  padding: 60px 24px;
}

.vc-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.vc-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #ffc70a;
  color: #090909;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.vc-cta-btn-primary:hover {
  background: #f0bb00;
  transform: translateY(-2px);
}

.vc-cta-btn-primary img {
  width: 18px;
  height: 18px;
  filter: none;
}

.vc-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  border-radius: 9999px;
  border: 1.3px solid #fff;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.vc-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px);
}

.vc-cta-btn-secondary img {
  width: 16px;
  height: 16px;
  filter: invert(1);
}

@media(max-width:1200px) {
  .vc-combos-grid {
    gap: 20px;
  }

  .vc-unlock-split {
    grid-template-columns: 1fr;
  }

  .vc-unlock-photo {
    height: 380px;
  }

  .vc-install-inner {
    grid-template-columns: 1fr;
  }

  .vc-install-photo {
    height: 420px;
    position: relative;
    top: 0;
  }

  .vc-faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vc-estimator-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .vc-estimator-left {
    flex: none;
    max-width: none;
  }

  .vc-estimator-form-card {
    flex: none;
    max-width: none;
  }
}

@media(max-width:960px) {

  .g2,
  .g3,
  .g4 {
    grid-template-columns: 1fr;
  }

  .g2 {
    gap: 32px;
  }

  .g3,
  .g4 {
    gap: 20px;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fr2 {
    grid-template-columns: 1fr;
  }

  .pad {
    padding: 60px 5%;
  }

  .pad-sm {
    padding: 40px 5%;
  }

  .form-card {
    padding: 28px 22px;
  }

  .vf-form-card {
    padding: 24px 18px;
  }

  .vf-grid,
  .vf-check-grid {
    grid-template-columns: 1fr;
  }

  .vf-form-header {
    margin-bottom: 22px;
  }

  .vf-section {
    margin-bottom: 22px;
  }

  .stat-n {
    font-size: 38px;
  }

  .vc-where-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .fh {
    height: auto;
    margin-bottom: 0;
    padding-top: 88px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .fh-inner {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    padding: 28px 5% 20px;
    gap: 28px;
  }

  .fh-trust {
    position: relative;
    bottom: auto;
    padding: 0 5% 32px;
    margin-top: 8px;
  }

  .fh-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
    max-width: 100%;
  }

  .vc-trust-card {
    width: 100% !important;
    height: auto;
    min-height: 0;
    padding: 18px 14px;
  }

  .vc-trust-card:nth-child(2),
  .vc-trust-card:nth-child(4) {
    width: 100% !important;
  }

  .vc-trust-card span {
    font-size: 15px;
  }

  .fh-deco-lines {
    left: -3%;
    top: 22%;
    width: 106%;
    height: auto;
    aspect-ratio: 1885.55/507.825;
    max-height: min(24vw, 160px);
  }

  .fh-deco-img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .fh-deco-path {
    stroke-width: 5;
  }

  .vc-why {
    margin-top: 0;
  }

  .vc-why {
    padding: 64px 5%;
  }

  .vc-combos {
    padding: 64px 5%;
  }

  .vc-combos-top {
    flex-direction: column;
    gap: 20px;
  }

  .vc-unlock {
    padding: 64px 5%;
  }

  .vc-rebates {
    padding: 64px 5%;
  }

  .vc-install {
    padding: 64px 5%;
  }

  .vc-estimator {
    padding: 80px 5%;
  }

  .vc-estimator-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
  }

  .vc-estimator-left {
    flex: none;
  }

  .vc-estimator-form-card {
    flex: none;
  }

  .vc-brands {
    padding: 48px 5%;
  }

  .vc-reviews {
    padding: 64px 5%;
  }

  .vc-where {
    padding: 56px 5%;
  }

  .vc-faq {
    padding: 64px 5%;
  }

  .vc-cta {
    padding: 48px 5%;
  }

  .vc-install-inner {
    gap: 40px;
  }
}

@media(max-width:768px) {
  .fh {
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    padding-top: 82px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .fh-bg,
  .fh-overlay {
    inset: 0;
  }

  .fh-inner {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    padding: 24px 5% 20px;
    gap: 24px;
    flex-shrink: 0;
  }

  .fh-deco-lines {
    left: -4%;
    top: 24%;
    width: 108%;
    height: auto;
    aspect-ratio: 1885.55/507.825;
    max-height: min(28vw, 140px);
  }

  .fh-deco-img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .fh-deco-path {
    stroke-width: 5;
    filter: drop-shadow(-3px 1px 5px rgba(255, 208, 0, .75)) drop-shadow(-3px 1px 10px rgba(255, 208, 0, .35));
  }

  .fh-body {
    font-size: 16px;
  }

  .fh-btns {
    flex-direction: column;
  }

  .fh-btn-primary,
  .fh-btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .fh-trust {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 4px;
    padding: 0 4% 28px;
    z-index: 2;
  }

  .fh-trust-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    max-width: 100%;
  }

  .vc-trust-card {
    width: 100% !important;
    height: auto;
    min-height: 0;
    padding: 16px 12px;
    gap: 10px;
    border-radius: 16px;
  }

  .vc-trust-card:nth-child(2),
  .vc-trust-card:nth-child(4) {
    width: 100% !important;
  }

  .vc-trust-card img {
    width: 52px;
    height: 52px;
  }

  .vc-trust-card span {
    font-size: 13px;
    line-height: 1.3;
  }

  .vc-why {
    margin-top: 0;
  }

  .vc-why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-combos-grid {
    grid-template-columns: 1fr;
  }

  .vc-unlock-tiles {
    grid-template-columns: 1fr;
  }

  .vc-reviews-grid {
    grid-template-columns: 1fr;
  }

  .vc-estimator {
    padding: 60px 4%;
  }

  .vc-est-card {
    padding: 28px;
  }

  .vc-estimator-form-card {
    padding: 28px 18px;
    max-width: none;
    flex: none;
    width: 100%;
  }

  .vc-est-form-title {
    font-size: 22px;
  }

  .vc-estimator-form-card .vf-grid,
  .vc-estimator-form-card .vf-check-grid {
    grid-template-columns: 1fr;
  }

  .vc-est-result-val {
    font-size: 28px;
  }

  .vc-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .vc-cta-deco--desktop {
    display: none;
  }

  .vc-cta-deco--mobile {
    display: block;
  }

  .vc-cta-inner {
    min-height: 480px;
  }

  .vc-cta-content {
    padding: 80px 20px;
  }

  .vc-cta-dot {
    left: auto;
    right: 5.5%;
    top: auto;
    bottom: 4.5%;
    width: 20px;
    height: 20px;
  }

  .vc-cta-path--mobile {
    stroke-width: 4;
  }

  .vc-brands-logos {
    gap: 16px;
  }

  .vc-brand-card {
    width: calc(33.333% - 12px);
  }

  .vc-rebates-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:480px) {
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .g4 {
    grid-template-columns: 1fr;
  }

  .pad {
    padding: 48px 4%;
  }

  .btn {
    padding: 14px 20px;
    font-size: 14px;
  }

  .card {
    padding: 22px;
  }

  .rev-card {
    padding: 24px;
  }

  .form-card {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .vf-form-card {
    padding: 20px 14px;
    border-radius: 10px;
  }

  .trust-bar {
    padding: 14px 4%;
    gap: 10px;
  }

  .ti {
    font-size: 12px;
  }

  .chip-dark {
    font-size: 12px;
    padding: 5px 12px;
  }

  .fh {
    padding-top: 76px;
  }

  .fh-inner {
    padding: 20px 4% 16px;
    gap: 20px;
  }

  .fh-deco-lines {
    top: 20%;
    left: -6%;
    width: 112%;
    max-height: 120px;
  }

  .fh-deco-path {
    stroke-width: 4;
  }

  .fh-deco-dot {
    opacity: 0 !important;
    animation: none !important;
  }

  .fh-trust {
    padding: 0 4% 24px;
  }

  .fh-trust-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vc-trust-card {
    padding: 14px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
  }

  .vc-trust-card img {
    width: 44px;
    height: 44px;
  }

  .vc-trust-card span {
    font-size: 14px;
    text-align: left;
    flex: 1;
  }

  .vc-why {
    margin-top: 0;
  }

  .vc-why {
    padding: 48px 4%;
  }

  .vc-why-cards {
    grid-template-columns: 1fr;
  }

  .vc-combos {
    padding: 48px 4%;
  }

  .vc-combos-grid {
    grid-template-columns: 1fr;
  }

  .vc-unlock {
    padding: 48px 4%;
  }

  .vc-rebates {
    padding: 48px 4%;
  }

  .vc-install {
    padding: 48px 4%;
  }

  .vc-brands {
    padding: 36px 4%;
  }

  .vc-brand-card {
    width: calc(50% - 8px);
  }

  .vc-reviews {
    padding: 48px 4%;
  }

  .vc-review-card {
    padding: 24px 20px;
  }

  .vc-where {
    padding: 48px 4%;
  }

  .vc-where-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vc-faq {
    padding: 48px 4%;
  }

  .vc-faq-q {
    padding: 20px 20px;
    font-size: 15px;
  }

  .vc-faq-a-inner {
    padding: 0 20px 20px;
  }

  .vc-cta {
    padding: 32px 4%;
  }

  .vc-cta-inner {
    border-radius: 18px;
    min-height: 440px;
  }

  .vc-cta-content {
    padding: 80px 16px;
  }

  .vc-cta-dot {
    width: 16px;
    height: 16px;
    right: -7px;
    bottom: 1%;
  }

  .vc-cta-path--mobile {
    stroke-width: 3.5;
  }

  .vc-install-photo {
    height: 300px;
  }

  .vc-rebates-cards {
    grid-template-columns: 1fr;
  }

  .vc-rebates-card-icon {
    margin-bottom: 24px;
  }

  .fh-h1 {
    font-size: clamp(34px, 8vw, 48px);
  }

  .vc-install-step-text {
    padding: 14px 16px;
  }

  .vc-install-step-text h4 {
    font-size: 16px;
  }

  .vc-install-step-icon {
    width: 60px;
    height: 60px;
  }

  .vc-install-connector {
    margin-left: 29px;
  }
}

@media(min-width:769px) and (max-width:1100px) {

  .vf-form-card .vf-grid,
  .vf-form-card .vf-check-grid {
    grid-template-columns: 1fr;
  }
}

/* Crisp icon rendering */
.vc-why-card-icon img,
.vc-unlock-tile-icon img,
.vc-rebates-card-icon img,
.vc-install-step-icon img,
.vc-brand-card img,
.vc-where-card-icon img,
.vc-trust-card img,
.why-choose-item-icon,
.unlock-potential-card-icon img,
.benefit-icon img,
.battery-rebate-icon img,
.fh-trust-item img {
  object-fit: contain;
  image-rendering: auto;
}