/* ==========================================================================
   WVP Landing Page Sections (appended below existing homepage)
   ========================================================================== */

:root {
  --hp-red: #cd2c2a;
  --hp-red-dark: #A82523;
  --hp-navy: #1f2f3f;
  --hp-white: #FFFFFF;
  --hp-gray: #666666;
  --hp-gray-light: #F8F8F8;
  --hp-gray-border: #E0E0E0;
  --hp-gold: #FFBA15;
  --hp-font: 'Source Sans 3', 'Roboto', sans-serif;
  --hp-radius-pill: 50px;
  --hp-radius-card: 8px;
  --hp-container: 1200px;
  --hp-section-py: 60px;
  --hp-section-px: 24px;
}


/* Global overflow fix */
html {
  overflow-x: hidden !important;
}


/* Hide reCAPTCHA badge */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Header — match global fixed style */
body.home header.site-header {
  opacity: 1 !important;
}

/* Landing page sections wrapper */
.hp-landing {
  font-family: var(--hp-font);
  color: var(--hp-navy);
  line-height: 1.6;
}

.hp-landing *,
.hp-landing *::before,
.hp-landing *::after {
  box-sizing: border-box;
}

.hp-container {
  max-width: var(--hp-container);
  margin: 0 auto;
  padding: 0 var(--hp-section-px);
  width: 100%;
}

/* Admin bar offset for homepage */
body.home.admin-bar header.site-header {
  top: 32px !important;
}

/* ==========================================================================
   VIDEOS WRAPPER — moved above testimonials
   ========================================================================== */

.hp-videos-section {
  background: url('../images/footer-bg.jpg') no-repeat center top var(--hp-red);
  background-size: cover;
  padding: var(--hp-section-py) 0;
  color: var(--hp-white);
}

.hp-videos-title {
  color: var(--hp-white);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 44px;
  text-align: center;
}

.hp-videos-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.hp-video-card {
  max-width: 340px;
  flex: 1;
  background: rgba(255,255,255,0.1);
  border-radius: var(--hp-radius-card);
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s;
}

.hp-video-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.hp-video-card {
  cursor: pointer;
}

.hp-video-card__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  overflow: hidden;
}

.hp-video-card__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.hp-video-card:hover .hp-video-card__thumb img {
  transform: scale(1.05);
}

.hp-video-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
  z-index: 1;
}

.hp-video-card:hover .hp-video-card__overlay {
  background: rgba(0,0,0,0.15);
}

.hp-video-card__overlay::after {
  content: '\25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  color: #cd2c2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  box-sizing: border-box;
}

.hp-video-card:hover .hp-video-card__overlay::after {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video popup modal */
.hp-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.hp-video-modal.is-open {
  display: flex;
}

.hp-video-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
}

.hp-video-modal__content {
  position: relative;
  width: 90vw;
  max-width: 900px;
  z-index: 1;
}

.hp-video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  outline: none;
  padding: 0;
}

.hp-video-modal__close:hover {
  background: var(--hp-red);
  border-color: var(--hp-red);
}

.hp-video-modal__iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.hp-video-modal__iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hp-video-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 12px 0 0;
  text-align: center;
  color: var(--hp-white);
}

@media (max-width: 768px) {
  .hp-videos-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hp-video-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ==========================================================================
   HERO — Full-width bg image, boxed content overlay
   ========================================================================== */

.hp-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-color: #1f2f3f;
  background-image: var(--hero-bg-url);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 47, 63, 0.88) 0%, rgba(31, 47, 63, 0.65) 50%, rgba(205, 44, 42, 0.3) 100%);
  z-index: 0;
}

.hp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
  margin: 0;
  margin-left: max(var(--hp-section-px), calc((100vw - var(--hp-container)) / 2));
  padding: 160px var(--hp-section-px) var(--hp-section-py);
  text-align: left;
  background: rgba(31, 47, 63, 0.85);
  border-radius: var(--hp-radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 48px;
  margin-top: 160px;
  margin-bottom: 40px;
}

.hp-hero__title {
  color: var(--hp-white);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hp-hero__subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 36px;
}

.hp-hero__cta {
  display: inline-block;
  background: var(--hp-red);
  color: var(--hp-white) !important;
  border: none;
  border-radius: var(--hp-radius-pill);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

.hp-hero__cta:hover {
  background: var(--hp-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(205,44,42,0.4);
}

/* ==========================================================================
   OBJECTIONS — "Зошто сé уште не сте почнале?"
   ========================================================================== */

.hp-objections {
  background: var(--hp-white);
  padding: var(--hp-section-py) 0 0;
}

.hp-objections__title {
  color: var(--hp-red);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
  text-align: left;
}

.hp-objections__subtitle {
  color: var(--hp-gray);
  font-size: 16px;
  margin: 0 0 36px;
  line-height: 1.6;
  text-align: left;
}

.hp-objections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hp-objection-card {
  background: var(--hp-red);
  color: var(--hp-white);
  border-radius: 0;
  padding: 32px 28px 28px;
  text-align: left;
}

.hp-objection-card__icon {
  display: none;
}

.hp-objection-card__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.25;
}

.hp-objection-card__text {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0;
}

/* ==========================================================================
   WHY WVP
   ========================================================================== */

.hp-why {
  padding: var(--hp-section-py) 0;
  background: var(--hp-white);
}

.hp-why__title {
  color: var(--hp-red);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 44px;
}

.hp-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-bottom: 56px;
}

.hp-why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.hp-why-item__icon {
  flex-shrink: 0;
  width: 100px;
  height: auto;
  object-fit: contain;
}

.hp-why-item__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--hp-red);
}

.hp-why-item__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hp-gray);
  margin: 0;
}

/* Philosophy section */
.hp-philosophy-section {
  padding: var(--hp-section-py) 0 0;
  background: var(--hp-white);
}

.hp-philosophy {
  display: flex;
}

.hp-philosophy__image {
  flex: 0 0 50%;
}

.hp-philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-philosophy__content {
  flex: 0 0 50%;
  background: var(--hp-navy);
  color: var(--hp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.hp-philosophy__title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--hp-white);
  line-height: 1.25;
}

.hp-philosophy__text {
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.85;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS — Custom slider
   ========================================================================== */

.hp-testimonials {
  background: var(--hp-white);
  padding: var(--hp-section-py) 0;
}

.hp-testimonials__title {
  color: var(--hp-red);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 44px;
}

/* Slider wrapper */
.hp-slider {
  position: relative;
}

.hp-slider__track {
  overflow: hidden;
}

/* Each slide */
.hp-slider__slide {
  display: none;
  gap: 24px;
}

.hp-slider__slide.is-active {
  display: flex;
  animation: hpFadeIn 0.4s ease;
}

@keyframes hpFadeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Photo — left 40% */
.hp-slider__photo {
  flex: 0 0 40%;
  overflow: hidden;
  border-radius: var(--hp-radius-card);
}

.hp-slider__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
}

/* Card — right 60% with red border and radius */
.hp-slider__card {
  flex: 1;
  border: 3px solid var(--hp-red);
  border-radius: var(--hp-radius-card);
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-slider__card--full {
  border-radius: var(--hp-radius-card);
}

.hp-slider__quote {
  font-size: 24px;
  font-weight: 700;
  color: var(--hp-navy);
  line-height: 1.3;
  margin: 0 0 14px;
}

.hp-slider__body,
.hp-slider__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hp-gray);
  margin: 0 0 16px;
}

.hp-slider__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hp-slider__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hp-red);
}

.hp-slider__stars {
  color: var(--hp-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

/* Arrows */
.hp-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--hp-white);
  border: 2px solid var(--hp-gray-border);
  color: var(--hp-navy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
  line-height: 1;
  padding: 0;
}

.hp-slider__arrow:hover {
  background: var(--hp-red);
  border-color: var(--hp-red);
  color: var(--hp-white);
}

.hp-slider__arrow--prev {
  left: -22px;
}

.hp-slider__arrow--next {
  right: -22px;
}

/* ==========================================================================
   TRUST / PROCESS SECTION
   ========================================================================== */

.hp-trust {
  background: var(--hp-white, #fff);
  padding: var(--hp-section-py) 0;
}

.hp-trust__title {
  color: var(--hp-navy, #1f2f3f);
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 12px;
}

.hp-trust__subtitle {
  color: var(--hp-gray, #666);
  font-size: 18px;
  text-align: center;
  margin: 0 0 48px;
}

.hp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hp-trust__step {
  position: relative;
  background: var(--hp-gray-light, #f8f8f8);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.hp-trust__step:hover {
  border-color: var(--hp-red, #cd2c2a);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.hp-trust__icon {
  width: 52px;
  height: 52px;
  background: var(--hp-red, #cd2c2a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hp-trust__icon i {
  color: var(--hp-white, #fff);
  font-size: 26px;
}

.hp-trust__num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(31, 47, 63, 0.06);
  line-height: 1;
}

.hp-trust__step h3 {
  color: var(--hp-navy, #1f2f3f);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.hp-trust__step p {
  color: var(--hp-gray, #666);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .hp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hp-trust__title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hp-trust__grid {
    grid-template-columns: 1fr;
  }
  .hp-trust__title {
    font-size: 26px;
  }
  .hp-trust__subtitle {
    font-size: 16px;
  }
}

/* ==========================================================================
   LEAD FORM
   ========================================================================== */

.hp-lead {
  background: url('../images/footer-bg.jpg') no-repeat center top var(--hp-red);
  background-size: cover;
  padding: var(--hp-section-py) 0;
}

.hp-lead__inner {
  max-width: var(--hp-container);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
}

.hp-lead__form-side {
  flex: 0 0 55%;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 40px 36px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hp-lead__info-side {
  flex: 1;
  color: var(--hp-white);
}

.hp-lead__title {
  color: var(--hp-white);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
}

.hp-lead__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.6;
  font-style: italic;
}

.hp-lead__form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-lead__field {
  width: 100%;
  padding: 14px 0 !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.35) !important;
  border-radius: 0 !important;
  font-size: 16px;
  font-family: var(--hp-font);
  background: transparent !important;
  color: var(--hp-white) !important;
  transition: border-color 0.25s;
  box-shadow: none !important;
}

.hp-lead__field::placeholder {
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hp-lead__field:hover {
  border-bottom-color: rgba(255,255,255,0.6);
}

.hp-lead__field:focus {
  outline: none;
  border-bottom-color: var(--hp-white);
}

.hp-lead__field--textarea {
  resize: vertical;
  min-height: 44px;
  max-height: 120px;
}

.hp-lead__field-row {
  display: flex;
  gap: 16px;
}

.hp-lead__submit {
  display: inline-block;
  background: transparent;
  color: var(--hp-white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: var(--hp-radius-pill);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--hp-font);
  transition: all 0.2s;
  margin-top: 16px;
  letter-spacing: 0.3px;
}

.hp-lead__submit:hover {
  background: var(--hp-white);
  color: var(--hp-red);
  border-color: var(--hp-white);
}

.hp-lead__submit:active {
  transform: translateY(0);
}

.hp-lead__message {
  color: var(--hp-white);
  font-size: 15px;
  font-weight: 600;
  margin-top: 12px;
  display: none;
}

.hp-lead__message.is-visible {
  display: block;
}

.hp-lead__message.is-error {
  color: #FFE0E0;
}

/* Right side info */
.hp-lead__info-side {
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
}

.hp-lead__info-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--hp-white);
  margin: 0 0 28px;
  line-height: 1.3;
}

.hp-lead__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hp-lead__info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.hp-lead__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hp-lead__info-item:hover .hp-lead__info-icon {
  background: rgba(255,255,255,0.2);
}

.hp-lead__info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--hp-white);
}

.hp-lead__info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-white);
  margin: 0 0 4px;
}

.hp-lead__info-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   FAQ — 2-column table layout (question left, answer right)
   ========================================================================== */

.hp-faq {
  background: var(--hp-white);
  padding: var(--hp-section-py) 0;
}

.hp-faq__title {
  color: var(--hp-navy);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 36px;
}

.hp-faq__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hp-faq-item {
  display: flex;
  gap: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--hp-gray-border);
}

.hp-faq-item:last-child {
  border-bottom: 1px solid var(--hp-gray-border);
}

.hp-faq-item__question {
  flex: 0 0 30%;
  font-size: 16px;
  font-weight: 700;
  color: var(--hp-red);
  margin: 0;
  line-height: 1.4;
}

.hp-faq-item__question::after {
  display: none;
}

.hp-faq-item__answer {
  flex: 1;
  font-size: 16px;
  line-height: 1.65;
  color: var(--hp-gray);
  max-height: none;
  overflow: visible;
  padding: 0;
}

/* ==========================================================================
   FOOTER CTA
   ========================================================================== */

.hp-footer-cta {
  padding: 64px 0 48px;
  text-align: center;
}

.hp-footer-cta__title {
  color: var(--hp-white);
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 28px;
  font-family: var(--hp-font);
  line-height: 1.2;
}

.hp-footer-cta__btn {
  display: inline-block;
  color: var(--hp-white);
  border: 2px solid var(--hp-white);
  border-radius: var(--hp-radius-pill);
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--hp-font);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.hp-footer-cta__btn:visited {
  color: var(--hp-white);
}

.hp-footer-cta__btn:hover,
.hp-footer-cta__btn:focus {
  background: var(--hp-white);
  color: var(--hp-red);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer.site-footer {
  background: url('../images/footer-bg.jpg') no-repeat center top var(--hp-red);
  background-size: cover;
  color: var(--hp-white);
  font-family: var(--hp-font);
}

.hp-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 56px 0 0;
}

/* Brand / logo row */
.hp-footer__top {
  margin-bottom: 48px;
}

.hp-footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hp-footer__brand .custom-logo-link {
  display: inline-block;
  flex-shrink: 0;
}

.hp-footer__brand .custom-logo-link img {
  max-width: 200px;
  height: auto;
  opacity: 0.95;
  transition: opacity 0.2s;
}

.hp-footer__brand .custom-logo-link:hover img {
  opacity: 1;
}

.hp-footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.2);
  line-height: 1.5;
  max-width: 280px;
}

/* 4-column grid */
.hp-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

/* Column headings */
.hp-footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--hp-white);
  margin: 0 0 20px;
}

/* Link lists — reset WP menu output */
.hp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hp-footer__links li {
  list-style: none;
  margin-bottom: 10px;
  padding: 0;
}

.hp-footer__links li:last-child {
  margin-bottom: 0;
}

.hp-footer__links a,
.hp-footer__links a:visited {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
  line-height: 1.4;
}

.hp-footer__links a:hover {
  color: var(--hp-white);
  padding-left: 4px;
}

/* Contact address */
.hp-footer__address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.hp-footer__address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.hp-footer__address p:last-child {
  margin-bottom: 0;
}

.hp-footer__address .material-icons {
  font-size: 18px;
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 1px;
}

.hp-footer__address a,
.hp-footer__address a:visited {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.hp-footer__address a:hover {
  color: var(--hp-white);
}

/* Social icons */
.hp-footer__social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hp-footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hp-footer__social-links a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.hp-footer__social-links svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.75);
  transition: fill 0.2s;
}

.hp-footer__social-links a:hover svg {
  fill: var(--hp-white);
}

/* Investor portal button */
.hp-footer__portal-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--hp-radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.hp-footer__portal-btn:visited {
  color: rgba(255,255,255,0.8);
}

.hp-footer__portal-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--hp-white);
  border-color: rgba(255,255,255,0.5);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Regulatory disclaimer */
.hp-footer__regulatory {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.hp-footer__regulatory p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
  max-width: 900px;
}

/* Bottom bar */
.hp-footer__bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hp-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hp-footer__copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  font-weight: 300;
}

.hp-footer__legal {
  display: flex;
  gap: 24px;
}

.hp-footer__legal a,
.hp-footer__legal a:visited {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.3px;
  font-weight: 300;
  transition: color 0.3s;
}

.hp-footer__legal a:hover {
  color: var(--hp-white);
}

.hp-footer__powered-by {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  font-weight: 300;
  position: relative;
  padding: 4px 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  transition: border-color 0.3s, color 0.3s;
}

.hp-footer__powered-by:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6);
}

.hp-footer__powered-by a,
.hp-footer__powered-by a:visited {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.hp-footer__powered-by:hover a {
  color: var(--hp-white);
}

/* ==========================================================================
   RESPONSIVE — Tablet (992px)
   ========================================================================== */

@media (max-width: 992px) {
  /* Hero */
  .hp-hero { min-height: 380px; }
  .hp-hero__title { font-size: 36px; max-width: 55%; }
  .hp-hero__subtitle { font-size: 16px; max-width: 50%; }

  /* Section titles */
  .hp-objections__title,
  .hp-why__title,
  .hp-testimonials__title,
  .hp-videos-title,
  .hp-lead__title,
  .hp-faq__title,
  .hp-philosophy__title,
  .hp-footer-cta__title {
    font-size: 30px;
  }

  /* Sub-headings */
  .hp-objection-card__title,
  .hp-why-item__title,
  .hp-slider__quote,
  .hp-lead__info-title {
    font-size: 22px;
  }

  /* Objections */
  .hp-objection-card { padding: 24px 20px; }

  /* Why WVP */
  .hp-why__grid { gap: 32px 40px; }
  .hp-why-item__icon { width: 80px; }

  /* Philosophy */
  .hp-philosophy { flex-direction: column; }
  .hp-philosophy__image { flex: none; }
  .hp-philosophy__image img { max-height: 320px; }
  .hp-philosophy__content { flex: none; padding: 40px var(--hp-section-px); }

  /* Slider arrows */
  .hp-slider__arrow--prev { left: -16px; }
  .hp-slider__arrow--next { right: -16px; }

  /* Lead form */
  .hp-lead__inner { gap: 40px; }

  /* FAQ */
  .hp-faq-item { flex-direction: column; gap: 8px; }
  .hp-faq-item__question { flex: none; }

  /* Footer */
  .hp-footer__columns { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
  .hp-footer__brand { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hp-footer__tagline { border-left: none; padding-left: 0; max-width: none; }
  .hp-footer__brand .custom-logo-link img { max-width: 140px; }
}

/* ==========================================================================
   RESPONSIVE — Mobile (768px)
   ========================================================================== */

@media (max-width: 768px) {
  :root {
    --hp-section-py: 52px;
  }

  /* Prevent horizontal overflow */
  .hp-landing { overflow-x: hidden; }

  /* All section titles */
  .hp-objections__title,
  .hp-why__title,
  .hp-testimonials__title,
  .hp-videos-title,
  .hp-lead__title,
  .hp-faq__title,
  .hp-philosophy__title,
  .hp-footer-cta__title {
    font-size: 26px;
  }

  /* Sub-headings */
  .hp-objection-card__title,
  .hp-why-item__title,
  .hp-slider__quote,
  .hp-lead__info-title {
    font-size: 20px;
  }

  /* Body text */
  .hp-objection-card__text,
  .hp-why-item__text,
  .hp-philosophy__text,
  .hp-slider__body,
  .hp-slider__body p,
  .hp-faq-item__question,
  .hp-faq-item__answer,
  .hp-lead__subtitle,
  .hp-objections__subtitle {
    font-size: 15px;
  }

  /* Hero — full width text on mobile, image as faded bg */
  .hp-hero {
    min-height: auto;
    background-position: right center;
    background-size: cover;
    padding: 0;
  }
  .hp-hero__content {
    padding: 40px 24px;
    margin-top: 100px;
    margin-left: var(--hp-section-px);
    margin-right: var(--hp-section-px);
    width: auto;
  }
  .hp-hero__title { font-size: 28px; max-width: 100%; }
  .hp-hero__subtitle { font-size: 16px; max-width: 100%; margin-bottom: 24px; }
  .hp-hero__cta { font-size: 15px; padding: 14px 32px; }

  /* Objections — single column */
  .hp-objections__grid { grid-template-columns: 1fr; }

  /* Why WVP — single column */
  .hp-why__grid { grid-template-columns: 1fr; gap: 28px; }
  .hp-why-item__icon { width: 64px; }

  /* Philosophy */
  .hp-philosophy__image img { max-height: 240px; }
  .hp-philosophy__content { padding: 32px var(--hp-section-px); }

  /* Testimonials slider — stack vertically */
  .hp-slider__slide.is-active { flex-direction: column; }
  .hp-slider__photo { flex: none; max-height: 260px; }
  .hp-slider__photo img { min-height: auto; max-height: 260px; }
  .hp-slider__card { padding: 24px; border: 3px solid var(--hp-red); }
  .hp-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .hp-slider__arrow--prev { left: 8px; }
  .hp-slider__arrow--next { right: 8px; }

  /* Lead form — stack form + info */
  .hp-lead__inner { flex-direction: column; gap: 36px; }
  .hp-lead__form-side { flex: none; width: 100%; }
  .hp-lead__info-side { width: 100%; }
  .hp-lead__field { font-size: 15px; }
  .hp-lead__submit { font-size: 15px; }
  .hp-lead__info-text h4 { font-size: 15px; }
  .hp-lead__info-text p { font-size: 13px; }

  /* Footer */
  .hp-footer-cta { padding: 40px 0 32px; }
  .hp-footer-cta__title { font-size: 26px; margin-bottom: 20px; }
  .hp-footer-cta__btn { padding: 14px 36px; font-size: 15px; }
  .hp-footer { padding: 36px 0 0; }
  .hp-footer__top { margin-bottom: 28px; text-align: center; }
  .hp-footer__brand {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
  .hp-footer__brand .custom-logo-link img { max-width: 150px; }
  .hp-footer__tagline {
    border-left: none;
    padding-left: 0;
    text-align: center;
    max-width: 260px;
    font-size: 13px;
    line-height: 1.4;
  }
  .hp-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    text-align: center;
    padding-bottom: 32px;
  }
  .hp-footer__col {
    min-width: 0;
    padding: 20px 0;
  }
  .hp-footer__col--nav,
  .hp-footer__col--funds {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hp-footer__col--contact,
  .hp-footer__col--social {
    text-align: center;
  }
  .hp-footer__heading { font-size: 12px; margin-bottom: 14px; }
  .hp-footer__links a:hover { padding-left: 0; }
  .hp-footer__links a,
  .hp-footer__links a:visited { font-size: 13px; }
  .hp-footer__links li { margin-bottom: 8px; }
  .hp-footer__address { font-size: 13px; }
  .hp-footer__address p {
    justify-content: center;
    text-align: left;
    display: inline-flex;
    gap: 8px;
    margin-bottom: 10px;
  }
  .hp-footer__address .material-icons { font-size: 16px; }
  .hp-footer__social-links { justify-content: center; gap: 8px; }
  .hp-footer__social-links a { width: 38px; height: 38px; }
  .hp-footer__social-links svg { width: 15px; height: 15px; }
  .hp-footer__portal-btn { font-size: 12px; padding: 8px 20px; }
  .hp-footer__regulatory { padding: 18px 0; }
  .hp-footer__regulatory p { font-size: 11px; text-align: center; max-width: none; line-height: 1.6; }
  .hp-footer__bottom { padding: 16px 0; }
  .hp-footer__bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .hp-footer__legal { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hp-footer__legal a,
  .hp-footer__legal a:visited { font-size: 12px; }
  .hp-footer__copyright { font-size: 12px; }
  .hp-footer__powered-by { font-size: 11px; }
}

/* ==========================================================================
   RESPONSIVE — Small Mobile (576px)
   ========================================================================== */

@media (max-width: 576px) {
  :root {
    --hp-section-px: 16px;
    --hp-section-py: 40px;
  }

  /* All section titles */
  .hp-objections__title,
  .hp-why__title,
  .hp-testimonials__title,
  .hp-videos-title,
  .hp-lead__title,
  .hp-faq__title,
  .hp-philosophy__title,
  .hp-footer-cta__title {
    font-size: 22px;
  }

  /* Sub-headings */
  .hp-objection-card__title,
  .hp-why-item__title,
  .hp-slider__quote,
  .hp-lead__info-title {
    font-size: 18px;
  }

  /* Body text */
  .hp-objection-card__text,
  .hp-why-item__text,
  .hp-philosophy__text,
  .hp-slider__body,
  .hp-slider__body p,
  .hp-faq-item__question,
  .hp-faq-item__answer,
  .hp-lead__subtitle,
  .hp-objections__subtitle {
    font-size: 14px;
  }

  /* Hero */
  .hp-hero__title { font-size: 24px; }
  .hp-hero__subtitle { font-size: 14px; }
  .hp-hero__cta { padding: 12px 28px; font-size: 14px; }

  /* Objections */
  .hp-objection-card { padding: 20px 16px; }

  /* Why WVP */
  .hp-why-item__icon { width: 52px; }
  .hp-why-item { gap: 16px; }
  .hp-why__grid { margin-bottom: 32px; }

  /* Philosophy */
  .hp-philosophy__image img { max-height: 200px; }
  .hp-philosophy__content { padding: 24px 16px; }

  /* Testimonials */
  .hp-slider__photo { max-height: 200px; }
  .hp-slider__photo img { max-height: 200px; }
  .hp-slider__card { padding: 20px 16px; }
  .hp-slider__name { font-size: 12px; }
  .hp-slider__stars { font-size: 14px; }

  /* Lead form */
  .hp-lead__field { font-size: 14px; }
  .hp-lead__submit { font-size: 14px; padding: 14px 24px; }
  .hp-lead__info-icon { width: 32px; height: 32px; }
  .hp-lead__info-icon svg { width: 16px; height: 16px; }
  .hp-lead__info-text h4 { font-size: 14px; }
  .hp-lead__info-text p { font-size: 12px; }

  /* FAQ */
  .hp-faq-item { padding: 16px 0; }

  /* Video cards */
  .hp-video-card__title { font-size: 14px; }

  /* Footer */
  .hp-footer-cta { padding: 28px 0 20px; }
  .hp-footer-cta__title { font-size: 20px; margin-bottom: 14px; }
  .hp-footer-cta__btn { padding: 11px 24px; font-size: 13px; }
  .hp-footer { padding: 24px 0 0; }
  .hp-footer__top { margin-bottom: 20px; }
  .hp-footer__brand .custom-logo-link img { max-width: 150px; }
  .hp-footer__tagline { font-size: 11px; max-width: 220px; }
  .hp-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    padding-bottom: 20px;
  }
  .hp-footer__heading { font-size: 11px; margin-bottom: 10px; letter-spacing: 1px; }
  .hp-footer__links a,
  .hp-footer__links a:visited { font-size: 12px; }
  .hp-footer__links li { margin-bottom: 6px; }
  .hp-footer__address { font-size: 12px; }
  .hp-footer__address p { margin-bottom: 8px; gap: 6px; }
  .hp-footer__address .material-icons { font-size: 14px; }
  .hp-footer__social-links a { width: 34px; height: 34px; }
  .hp-footer__social-links svg { width: 13px; height: 13px; }
  .hp-footer__social-links { gap: 6px; }
  .hp-footer__portal-btn { font-size: 11px; padding: 7px 16px; }
  .hp-footer__regulatory { padding: 14px 0; }
  .hp-footer__regulatory p { font-size: 10px; line-height: 1.5; }
  .hp-footer__bottom { padding: 10px 0; }
  .hp-footer__copyright { font-size: 11px; }
  .hp-footer__legal { gap: 10px; }
  .hp-footer__legal a,
  .hp-footer__legal a:visited { font-size: 11px; }
  .hp-footer__powered-by { font-size: 10px; padding: 3px 10px; }
}
