/* ==========================================================================
   VM HLE Landing – Base Layout & Structure
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* ---- Full-page takeover: hide WP chrome ---- */
.vm-hle-fullpage header,
.vm-hle-fullpage footer,
.vm-hle-fullpage .wp-block-navigation,
.vm-hle-fullpage .wp-block-template-part,
.vm-hle-fullpage .wp-block-post-title,
.vm-hle-fullpage .wp-block-spacer,
.vm-hle-fullpage .site-header,
.vm-hle-fullpage .site-footer {
  display: none !important;
}

.vm-hle-fullpage {
  overflow-x: hidden;
}

.vm-hle-fullpage .wp-site-blocks {
  padding: 0 !important;
  margin: 0 !important;
}

.vm-hle-fullpage .wp-site-blocks > * {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Reset within landing */
.hle-landing *,
.hle-landing *::before,
.hle-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hle-landing {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Break out of WP block theme constrained layout */
  width: 100%;
  max-width: none !important;
  margin-left: 0;
  margin-right: 0;
}

/* Transition for theme switching */
body[class*="theme-"] .hle-landing,
body[class*="theme-"] .hle-landing * {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* Container */
.hle-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Sections */
.hle-section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .hle-section {
    padding: 56px 0;
  }
}

/* ---- Style Switcher ---- */
.hle-switcher {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #171F32;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
}

.hle-switcher-label {
  margin-right: 4px;
  font-weight: 600;
}

.hle-style-btn {
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  padding: 5px 16px;
  border-radius: 55px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hle-style-btn:hover {
  border-color: #fff;
}

.hle-style-btn.active {
  background: #fff;
  color: #171F32;
  border-color: #fff;
}

/* ---- Typography base ---- */
.hle-landing h1,
.hle-landing h2,
.hle-landing h3 {
  line-height: 1.25;
  font-weight: 800;
}

.hle-landing h1 { font-size: 2.8rem; margin-bottom: 24px; }
.hle-landing h2 { font-size: 2rem; margin-bottom: 24px; }
.hle-landing h3 { font-size: 1.35rem; margin-bottom: 12px; }

.hle-landing p {
  margin-bottom: 16px;
}

.hle-landing p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hle-landing h1 { font-size: 2rem; }
  .hle-landing h2 { font-size: 1.6rem; }
  .hle-landing h3 { font-size: 1.15rem; }
}

/* ---- Buttons ---- */
.hle-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.hle-btn:hover {
  transform: translateY(-2px);
}

.hle-btn-lg {
  font-size: 1.15rem;
  padding: 18px 40px;
}

/* ---- Why Section ---- */
.hle-why-intro {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 40px;
}

.hle-why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .hle-why-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hle-why-point {
  padding: 32px 28px;
  border-radius: 12px;
}

.hle-why-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ---- Cards Grid ---- */
.hle-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .hle-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hle-card {
  padding: 32px 28px;
  border-radius: 12px;
}

.hle-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hle-card-role {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.hle-card blockquote {
  margin-top: 16px;
  padding-left: 16px;
  font-style: italic;
}

/* ---- Stats Grid ---- */
.hle-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}

@media (max-width: 600px) {
  .hle-stats {
    grid-template-columns: 1fr;
  }
}

.hle-stat {
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.hle-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.hle-stat-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- Plan: Intro ---- */
.hle-plan-intro {
  font-size: 1.1rem;
  max-width: 720px;
  margin-bottom: 48px;
}

/* ---- Plan: Phases ---- */
.hle-phase {
  margin-bottom: 40px;
}

.hle-phase-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

/* ---- Plan: Steps ---- */
.hle-steps {
  display: grid;
  gap: 24px;
}

.hle-steps-3 {
  grid-template-columns: repeat(3, 1fr);
}

.hle-steps-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .hle-steps-3,
  .hle-steps-2 {
    grid-template-columns: 1fr;
  }
}

.hle-step {
  padding: 28px 24px;
  border-radius: 12px;
}

.hle-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hle-step h4 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.hle-step-meta {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hle-step-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hle-step-link:hover {
  opacity: 0.8;
}

.hle-btn-plan-cta {
  margin-top: 32px;
}

/* ---- Success intro & CTA ---- */
.hle-success-intro {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hle-success-cta {
  margin-top: 48px;
  text-align: center;
}

.hle-success-cta p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  opacity: 0.85;
}

/* ---- Outcomes ---- */
.hle-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hle-outcomes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hle-outcome {
  padding: 32px 28px;
  border-radius: 12px;
  text-align: center;
}

.hle-outcome-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.hle-plan-note {
  margin-top: 48px;
  text-align: center;
}

.hle-plan-note blockquote {
  margin-top: 16px;
  font-style: italic;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Vision List ---- */
.hle-vision-list {
  list-style: none;
  margin: 24px 0;
}

.hle-vision-list li {
  padding: 10px 0 10px 28px;
  position: relative;
}

.hle-vision-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* ---- Logos ---- */
.hle-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-bottom: 48px;
}

.hle-logo-item {
  font-weight: 700;
  font-size: 1.05rem;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

/* ---- Testimonials ---- */
.hle-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .hle-testimonials {
    grid-template-columns: 1fr;
  }
}

.hle-testimonial {
  padding: 28px;
  border-radius: 12px;
}

.hle-testimonial blockquote {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hle-testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
}

/* ---- Blog Grid ---- */
.hle-blog-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hle-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .hle-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hle-blog-card {
  padding: 32px 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.hle-blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 55px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.hle-blog-card h3 {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hle-blog-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.hle-blog-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hle-blog-link:hover {
  opacity: 0.8;
}

/* ---- Highlight text ---- */
.hle-highlight {
  font-size: 1.15rem;
  margin-top: 24px;
}

/* ---- CTA Section ---- */
.hle-cta {
  text-align: center;
}

.hle-cta-intro {
  font-size: 1.15rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hle-cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}

.hle-cta-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.hle-cta-person {
  text-align: left;
}

.hle-cta-person strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.hle-cta-person span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.hle-cta-secondary {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 600px) {
  .hle-cta-secondary {
    flex-direction: column;
    align-items: center;
  }
}

/* ---- Blockquotes ---- */
.hle-landing blockquote {
  border-left: 3px solid currentColor;
  padding-left: 16px;
  font-style: italic;
  opacity: 0.9;
}

/* ---- Family Bridge ---- */
.hle-family-bridge {
  padding: 28px 32px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Tagline ---- */
.hle-tagline {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 32px;
}

/* ---- Hero Grid ---- */
.hle-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.hle-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hle-hero-logo img {
  max-width: 240px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .hle-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hle-hero-logo {
    order: -1;
  }

  .hle-hero-logo img {
    max-width: 160px;
  }
}

/* ---- Hero intro ---- */
.hle-hero-intro {
  max-width: 700px;
  margin-bottom: 32px;
}

/* ---- Hero buttons ---- */
.hle-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Guide intro ---- */
.hle-guide-intro {
  font-size: 1.1rem;
}
