/* MVA Leads 2026 Page Styles - SCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-body);
  color: #2a2f35;
  line-height: 1.4;
}

img,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

:root {
  --font-heading: "Lexend Deca", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --cta-bg: #bdd0c9;
  --cta-bg-hover: #a8bfb8;
  --cta-color: #2a2f35;
  --cta-radius: 0px;
  --cta-font: "Lexend Deca", sans-serif;
  --cta-weight: 600;
  --bg-primary: #ffffff;
  --bg-secondary: #2a2f35;
  --bg-secondary-text: #ffffff;
}

.lander-variant-2 {
  --font-heading: "Lexend Deca", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --cta-bg: #f97316;
  --cta-bg-hover: #ea6c0a;
  --cta-color: #fff;
  --cta-radius: 50px;
  --cta-font: "Source Sans 3", sans-serif;
  --cta-weight: 700;
  --bg-primary: #ffffff;
  --bg-secondary: #f4f4f4;
  --bg-secondary-text: #2a2f35;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: #2a2f35;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}
.skip-to-content:focus {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  outline: 3px solid #ae9975;
  outline-offset: 2px;
}

.wa-lander-header--v1 {
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.wa-lander-header--v1 .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .wa-lander-header--v1 .inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.wa-lander-header--v1 .wa-logo-v3 {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 4px;
}
.wa-lander-header--v1 .wa-logo-v3:focus {
  outline: 3px solid #ae9975;
  outline-offset: 4px;
}
.wa-lander-header--v1 .wa-logo-v3 img {
  height: 40px;
  width: auto;
}
@media (max-width: 600px) {
  .wa-lander-header--v1 .wa-logo-v3 {
    justify-content: center;
    margin-top: 10px;
  }
  .wa-lander-header--v1 .wa-logo-v3 img {
    height: 34px;
  }
}
.wa-lander-header--v1 .partner-btn {
  background: #2a2f35;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}
.wa-lander-header--v1 .partner-btn:hover {
  background: #1a1f25;
  color: #ffffff;
}
.wa-lander-header--v1 .partner-btn:focus {
  outline: 3px solid #ae9975;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .wa-lander-header--v1 .partner-btn {
    padding: 8px 18px 6px;
    font-size: 16px;
  }
}

.wa-lander-header--v2 {
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}
.wa-lander-header--v2 .wa-logo-v3 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  margin: 0 auto;
}
.wa-lander-header--v2 .wa-logo-v3:focus {
  outline: 3px solid #ae9975;
  outline-offset: 4px;
}
.wa-lander-header--v2 .wa-logo-v3 img {
  height: 40px;
  width: auto;
}
@media (max-width: 600px) {
  .wa-lander-header--v2 .wa-logo-v3 img {
    height: 34px;
  }
}

.mva-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .mva-container {
    padding: 0 16px;
  }
}

.btn {
  display: inline-block;
  background: var(--cta-bg);
  color: var(--cta-color);
  padding: 0.5em 1em;
  font-family: var(--cta-font);
  font-size: 20px;
  font-weight: var(--cta-weight);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: var(--cta-radius);
  margin-top: 10px;
  text-transform: uppercase;
  border: none;
}
.btn:hover {
  background: var(--cta-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .btn {
    font-size: 18px;
  }
}

.btn.dark {
  background: #2a2f35;
  color: #ffffff;
}
.btn.dark:hover {
  background: #1a1f25;
}

.hero-accent-line {
  width: 240px;
  height: 5px;
  background: #ae9975;
  margin: 0 auto;
}

.accent-line {
  width: 160px;
  height: 5px;
  background: #ae9975;
  margin-top: 10px;
}

.accent-line-small {
  width: 100px;
  height: 5px;
  background: #eaeaea;
  margin: 15px auto;
}

.mva-hero {
  background: #2a2f35;
  color: #ffffff;
  padding: 130px 0;
  text-align: center;
}
@media (max-width: 1000px) {
  .mva-hero {
    padding: 80px 0;
  }
}
@media (max-width: 630px) {
  .mva-hero {
    padding: 30px 0;
  }
}

.mva-hero-v2 {
  background-color: #2a2f35;
  background-size: cover;
  background-position: center 10%;
  text-align: left;
  position: relative;
}
@media (max-width: 630px) {
  .mva-hero-v2 {
    background-position: 100% 10%;
  }
}
.mva-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(86, 86, 86, 0.15) 26.92%, rgba(52, 52, 52, 0.25) 53.23%, rgba(21, 21, 21, 0.25) 80.73%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}
.mva-hero-v2 .mva-container {
  position: relative;
  z-index: 1;
}
.mva-hero-v2 .hero-v2-text .text-wrapper {
  width: 550px;
}
@media (max-width: 1000px) {
  .mva-hero-v2 .hero-v2-text .text-wrapper {
    width: 350px;
  }
}
@media (max-width: 630px) {
  .mva-hero-v2 .hero-v2-text .text-wrapper {
    width: 50%;
    min-width: 169px;
  }
}
.mva-hero-v2 .hero-v2-text h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  margin: 0 0 12px;
  max-width: 550px;
}
@media (max-width: 1000px) {
  .mva-hero-v2 .hero-v2-text h1 {
    font-size: 34px;
  }
}
@media (max-width: 630px) {
  .mva-hero-v2 .hero-v2-text h1 {
    font-size: 22px;
  }
}
.mva-hero-v2 .hero-v2-text .hero-subline-v2 {
  font-size: 30px;
  color: #ffffff;
  margin: 0;
  font-style: italic;
  max-width: 400px;
  margin-bottom: 3em;
}
@media (max-width: 1000px) {
  .mva-hero-v2 .hero-v2-text .hero-subline-v2 {
    font-size: 22px;
  }
}
@media (max-width: 630px) {
  .mva-hero-v2 .hero-v2-text .hero-subline-v2 {
    font-size: 14px;
  }
}
.mva-hero-v2 .hero-v2-text .btn {
  font-size: 30px;
}
@media (max-width: 1000px) {
  .mva-hero-v2 .hero-v2-text .btn {
    font-size: 24px;
  }
}
@media (max-width: 630px) {
  .mva-hero-v2 .hero-v2-text .btn {
    font-size: 18px;
  }
}

.mva-section h2 {
  font-size: 35px;
  line-height: 1.3;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .mva-section h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .mva-section h2 {
    font-size: 28px;
  }
}
.mva-section h3 {
  line-height: 1.5;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .mva-section h3 {
    font-size: 18px;
  }
}
.mva-section p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .mva-section p {
    font-size: 18px;
  }
}

.mva-detailed-benefits {
  background: var(--bg-secondary);
  padding: 90px 0 100px;
  text-align: center;
}
.mva-detailed-benefits h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25em;
  font-family: var(--font-body);
  margin: 0 0 30px 0;
  max-width: 965px;
  margin-left: auto;
  margin-right: auto;
  color: var(--bg-secondary-text);
}
@media (max-width: 1000px) {
  .mva-detailed-benefits h1 {
    font-size: 40px;
    max-width: 430px;
  }
}
@media (max-width: 480px) {
  .mva-detailed-benefits h1 {
    font-size: 36px;
  }
}
.mva-detailed-benefits h2 {
  font-size: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--bg-secondary-text);
}
@media (max-width: 1000px) {
  .mva-detailed-benefits h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .mva-detailed-benefits h2 {
    font-size: 20px;
  }
}
.mva-detailed-benefits .hero-accent-line {
  width: 240px;
  height: 5px;
  background: #ae9975;
  margin: 0 auto 30px;
}
.mva-detailed-benefits .hero-subline {
  font-size: 36px;
  line-height: 1.4em;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1000px) {
  .mva-detailed-benefits .hero-subline {
    font-size: 26px;
    max-width: 430px;
  }
}
@media (max-width: 480px) {
  .mva-detailed-benefits .hero-subline {
    font-size: 22px;
    margin: 10px 0 0;
  }
}

.benefits-intro {
  font-size: 18px;
  color: var(--bg-secondary-text);
  max-width: 860px;
  margin: 0 auto 50px auto;
  padding: 0 30px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .benefits-intro {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.detailed-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  max-width: 900px;
  margin: 60px auto;
}
@media (max-width: 768px) {
  .detailed-benefits-grid {
    gap: 20px;
    margin: 40px auto;
    max-width: 100%;
  }
}

.detailed-benefit-card {
  max-width: 200px;
  text-align: center;
  color: var(--bg-secondary-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .detailed-benefit-card {
    max-width: 160px;
  }
}
.detailed-benefit-card .benefit-icon {
  margin: 0px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.detailed-benefit-card .benefit-icon img {
  max-height: 60px;
  max-width: 80px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}
.lander-variant-2 .detailed-benefit-card .benefit-icon img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(10%) saturate(479%) hue-rotate(169deg) brightness(95%) contrast(91%);
}
@media (max-width: 768px) {
  .detailed-benefit-card .benefit-icon::before {
    width: 100px;
    height: 100px;
  }
  .detailed-benefit-card .benefit-icon img {
    max-width: 60px;
    max-height: 60px;
  }
}
.detailed-benefit-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 6px 0 8px 0;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .detailed-benefit-card h3 {
    min-height: auto;
    font-size: 16px;
    margin: 0 0 8px 0;
    text-align: center;
  }
}
.detailed-benefit-card p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .detailed-benefit-card p {
    font-size: 15px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.benefits-cta-center {
  text-align: center;
  margin-top: 40px;
}
.benefits-cta-center .btn {
  font-size: 26px;
  font-weight: 700;
  padding: 16px 40px;
}

.lander-wrapper {
  width: 100%;
}

.mva-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .mva-section {
    padding: 60px 0;
  }
}

.mva-inverted {
  background: var(--bg-secondary);
  color: var(--bg-secondary-text);
}
.mva-inverted h2,
.mva-inverted h3,
.mva-inverted p {
  color: var(--bg-secondary-text);
}
.mva-inverted .accent-line {
  background: #ae9975;
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.intake-logo {
  text-align: center;
  margin-bottom: 60px;
}
.intake-logo img {
  max-width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .intake-logo {
    margin-bottom: 40px;
  }
  .intake-logo img {
    max-width: 150px;
  }
}

.mva-experience {
  background: #ffffff;
  text-align: center;
}
.mva-experience h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.experience-item {
  text-align: center;
}
.experience-item h3 {
  font-size: 24px;
  color: #826d4d;
  margin: 0 0 10px 0;
}
@media (max-width: 480px) {
  .experience-item h3 {
    font-size: 20px;
  }
}
.experience-item p {
  font-size: 20px;
  line-height: 1.4;
}

.exp-icon {
  margin-bottom: 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-icon img {
  width: 70px;
  height: auto;
  max-height: 70px;
}

.mva-difference {
  background: #ffffff;
}
.mva-difference .accent-line {
  background: #826d4d;
}

.difference-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}
.difference-banner img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.mva-roi {
  background: #ffffff;
}
.mva-roi .accent-line {
  background: #826d4d;
}

.mva-leads-available {
  background: #ffffff;
  text-align: center;
}
.mva-leads-available h2 {
  text-align: center;
  margin-bottom: 60px;
}

.leads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .leads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .leads-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
}

.lead-type {
  text-align: center;
}
.lead-type h3 {
  font-size: 24px;
  font-weight: 600;
  color: #826d4d;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  .lead-type h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
  }
}
.lead-type p {
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .lead-type p {
    font-size: 18px;
    line-height: 1.5;
  }
}

.lead-icon {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.lead-icon img {
  height: 70px;
  max-width: 160px;
}
@media (max-width: 768px) {
  .lead-icon {
    margin-bottom: 0;
  }
  .lead-icon img {
    height: 70px;
    max-width: 160px;
    max-height: unset;
    width: auto;
  }
}

.mva-stats {
  background: #ffffff;
  padding: 40px 0 120px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-item {
  text-align: center;
  color: #ffffff;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}
.stat-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.stat-overlay {
  position: relative;
  z-index: 2;
  padding: 20px 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 0px;
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}
@media (max-width: 480px) {
  .stat-label {
    font-size: 18px;
  }
}

.stats-cta-center {
  text-align: center;
  margin-top: 40px;
}

.mva-testimonials {
  background: var(--bg-secondary);
  padding: 80px 0;
  text-align: center;
}
.mva-testimonials h2 {
  font-size: 35px;
  font-weight: 400;
  color: var(--bg-secondary-text);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
}
.testimonial-card {
  text-align: center;
  max-width: 290px;
}

.testimonial-image {
  margin-bottom: 20px;
  background: #2a2f35;
}
.testimonial-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonial-content h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--bg-secondary-text);
  margin: 0 0 10px 0;
}
.testimonial-content .firm-name {
  font-size: 20px;
  font-weight: 600;
  color: #ae9975;
  margin: 0;
}

.mva-cta {
  background: #2a2f35;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
.mva-cta h2 {
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
@media (max-width: 768px) {
  .mva-cta h2 {
    font-size: 28px;
  }
}
.mva-cta p {
  font-size: 20px;
  margin: 0 0 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .mva-cta p {
    font-size: 18px;
  }
}

.mva-footer {
  background: #2a2f35;
  color: #ffffff;
  padding: 0;
}
.mva-footer .footer-contact-section {
  background: #2a2f35;
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mva-footer .footer-contact-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}
.mva-footer .footer-contact-section p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.mva-footer .footer-contact-section .accent-line {
  width: 300px;
  height: 4px;
  background: #ae9975;
  margin: 0 auto 60px auto;
}
.mva-footer .footer-contact-section .mva-contact-form {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mva-footer .footer-contact-section .mva-contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mva-footer .footer-contact-section .mva-contact-form .form-row {
    flex-direction: column;
    gap: 15px;
  }
}
.mva-footer .footer-contact-section .mva-contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mva-footer .footer-contact-section .mva-contact-form .form-group label {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
  text-align: left;
}
.mva-footer .footer-contact-section .mva-contact-form .form-group input,
.mva-footer .footer-contact-section .mva-contact-form .form-group select {
  text-align: left;
  height: 50px;
  padding: 0 15px;
  font-size: 16px;
  border: none;
  border-radius: 0;
  width: 100%;
  outline: none;
  background: #ffffff;
  color: #333;
  font-family: var(--font-body);
}
.mva-footer .footer-contact-section .mva-contact-form .form-group input:focus,
.mva-footer .footer-contact-section .mva-contact-form .form-group select:focus {
  outline: 2px solid #bdd0c9;
  outline-offset: 2px;
}
.mva-footer .footer-contact-section .mva-contact-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23333' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.mva-footer .footer-contact-section .form-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 20px auto 0;
  text-align: center;
  padding: 0 20px;
}
.mva-footer .footer-contact-section .form-disclaimer a {
  color: #ae9975;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mva-footer .footer-contact-section .form-disclaimer a:hover {
  color: #bdd0c9;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .mva-footer .footer-contact-section .form-disclaimer {
    font-size: 11px;
  }
}
.mva-footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .mva-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.mva-footer .footer-logo {
  flex-shrink: 0;
}
.mva-footer .footer-logo img {
  width: 240px;
  filter: brightness(0) invert(1);
}
.mva-footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
@media (max-width: 768px) {
  .mva-footer .footer-right {
    align-items: center;
    text-align: center;
  }
}
.mva-footer .footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.mva-footer .footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
.mva-footer .footer-links a:hover {
  color: #ae9975;
}
@media (max-width: 480px) {
  .mva-footer .footer-links {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.mva-footer .footer-copyright p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

html {
  margin-top: 0 !important;
}

#wpadminbar {
  opacity: 0.3;
}

/*# sourceMappingURL=mva-leads-2026.css.map */
