.mvp-widget {
  --mvp-orange: #e04e28;
  --mvp-orange-dark: #c44020;
  --mvp-amber: #f5a623;
  --mvp-blue: #3ab5e5;
  --mvp-ink: #1f2937;
  --mvp-muted: #4b5563;
  --mvp-soft: #f8fafc;
  --mvp-white: #ffffff;
  --mvp-border: #e5e7eb;
  --mvp-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  color: var(--mvp-ink);
  font-family: "Barlow", sans-serif;
  overflow: hidden;
}

.mvp-widget,
.mvp-widget * {
  box-sizing: border-box;
}

.mvp-widget a {
  color: inherit;
  text-decoration: none;
}

.mvp-section {
  padding: 100px 0;
}

.mvp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.mvp-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mvp-section-eyebrow::before {
  background: var(--mvp-amber);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 2px;
  width: 32px;
}

.mvp-section-eyebrow span {
  color: var(--mvp-amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.mvp-section-title {
  color: var(--mvp-ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 20px;
}

.mvp-section-body {
  color: var(--mvp-muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}

.mvp-button {
  align-items: center;
  display: inline-flex;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1;
  min-height: 54px;
  padding: 18px 40px;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.mvp-button-primary {
  background: var(--mvp-orange);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  color: #111827;
}

.mvp-button-primary:hover {
  background: var(--mvp-orange-dark);
  box-shadow: 0 8px 24px rgba(224, 78, 40, 0.35);
  transform: translateY(-2px);
}

.mvp-button-secondary {
  background: transparent;
  border: 1.5px solid rgba(55, 65, 81, 0.55);
  color: #111827;
  padding-left: 36px;
  padding-right: 36px;
}

.mvp-button-secondary:hover {
  border-color: var(--mvp-blue);
  color: var(--mvp-blue);
}

.mvp-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mvp-fade-in.mvp-visible,
.elementor-editor-active .mvp-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.mvp-delay-1 { transition-delay: 0.1s; }
.mvp-delay-2 { transition-delay: 0.2s; }
.mvp-delay-3 { transition-delay: 0.3s; }
.mvp-delay-4 { transition-delay: 0.4s; }

.mvp-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 12px;
}

.mvp-form-grid-one {
  grid-template-columns: 1fr;
}

.mvp-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mvp-form-field label {
  color: rgba(55, 65, 81, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mvp-form-field input,
.mvp-form-field select,
.mvp-form-field textarea,
.mvp-form-panel .wpforms-container input[type="text"],
.mvp-form-panel .wpforms-container input[type="email"],
.mvp-form-panel .wpforms-container input[type="tel"],
.mvp-form-panel .wpforms-container input[type="number"],
.mvp-form-panel .wpforms-container select,
.mvp-form-panel .wpforms-container textarea {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111827;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  outline: none;
  padding: 12px 14px;
  transition: border-color 0.2s;
  width: 100%;
}

.mvp-form-field input:focus,
.mvp-form-field select:focus,
.mvp-form-field textarea:focus,
.mvp-form-panel .wpforms-container input:focus,
.mvp-form-panel .wpforms-container select:focus,
.mvp-form-panel .wpforms-container textarea:focus {
  border-color: var(--mvp-amber);
}

.mvp-form-submit,
.mvp-form-panel .wpforms-submit-container button,
.mvp-form-panel .wpforms-submit-container input[type="submit"] {
  background: var(--mvp-orange);
  border: 0;
  color: #111827;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 16px;
  padding: 16px;
  text-transform: uppercase;
  transition: background 0.2s;
  width: 100%;
}

.mvp-form-submit:hover,
.mvp-form-panel .wpforms-submit-container button:hover,
.mvp-form-panel .wpforms-submit-container input[type="submit"]:hover {
  background: var(--mvp-orange-dark);
}

.mvp-form-disclaimer {
  color: rgba(55, 65, 81, 0.55);
  font-size: 10px;
  line-height: 1.5;
  margin: 14px 0 0;
}

.mvp-success-message {
  display: none;
  padding: 20px;
  text-align: center;
}

.mvp-success-message svg {
  fill: var(--mvp-amber);
  height: 48px;
  margin-bottom: 12px;
  width: 48px;
}

.mvp-success-message p {
  color: var(--mvp-amber);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.mvp-form-submitted .mvp-js-form {
  display: none;
}

.mvp-form-submitted .mvp-success-message {
  display: block;
}

/* Hero */
.mvp-hero {
  align-items: center;
  background: #f8fafc;
  display: flex;
  min-height: 100vh;
  position: relative;
}

.mvp-hero-bg {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2f7 100%);
  inset: 0;
  position: absolute;
}

.mvp-hero-grid-overlay {
  background-image: linear-gradient(rgba(17, 24, 39, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  inset: 0;
  opacity: 0.25;
  position: absolute;
}

.mvp-hero-accent-bar {
  background: linear-gradient(to bottom, var(--mvp-orange), var(--mvp-amber), var(--mvp-blue));
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 6px;
}

.mvp-hero-content {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) 480px;
  margin: 0 auto;
  max-width: 1400px;
  padding: 120px 80px 80px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.mvp-hero-tag {
  background: var(--mvp-orange);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
  color: #111827;
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.mvp-hero-eyebrow {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 24px;
}

.mvp-hero-eyebrow::before {
  background: var(--mvp-amber);
  content: "";
  display: block;
  height: 2px;
  width: 40px;
}

.mvp-hero-eyebrow span {
  color: var(--mvp-amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mvp-hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(64px, 8vw, 110px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 0 0 8px;
}

.mvp-hero-title-line {
  display: block;
}

.mvp-hero-subtitle {
  color: rgba(55, 65, 81, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.mvp-hero-price-block {
  margin-bottom: 40px;
}

.mvp-hero-price-from {
  color: rgba(55, 65, 81, 0.75);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.mvp-hero-price {
  color: var(--mvp-amber);
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.mvp-hero-price-note {
  color: rgba(55, 65, 81, 0.65);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin: 6px 0 0;
}

.mvp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mvp-form-panel {
  background: #ffffff;
  border: 1px solid var(--mvp-border);
  box-shadow: var(--mvp-shadow);
}

.mvp-hero-form-panel {
  padding: 40px 36px;
}

.mvp-form-panel h3 {
  color: var(--mvp-ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.mvp-form-panel h3 span,
.mvp-form-panel h3 em {
  color: var(--mvp-amber);
  font-style: normal;
}

.mvp-form-panel > p {
  color: rgba(55, 65, 81, 0.75);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 28px;
}

.mvp-scroll-badge {
  align-items: center;
  animation: mvp-bounce 2s infinite;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 3;
}

.mvp-scroll-badge span {
  color: rgba(55, 65, 81, 0.65);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mvp-scroll-badge svg {
  fill: rgba(55, 65, 81, 0.45);
}

@keyframes mvp-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Stats */
.mvp-stats {
  background: linear-gradient(90deg, var(--mvp-orange), var(--mvp-orange-dark));
}

.mvp-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}

.mvp-stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px 32px;
  text-align: center;
  transition: background 0.2s;
}

.mvp-stat-item:last-child {
  border-right: 0;
}

.mvp-stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.mvp-stat-num {
  color: #111827;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.mvp-stat-suffix {
  font-size: 22px;
}

.mvp-stat-label {
  color: rgba(31, 41, 55, 0.85);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Lifestyle */
.mvp-lifestyle {
  background: #ffffff;
}

.mvp-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mvp-lifestyle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}

.mvp-lifestyle-content .mvp-section-body + .mvp-section-body,
.mvp-value-content .mvp-section-body + .mvp-section-body {
  margin-top: 16px;
}

.mvp-lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.mvp-lifestyle-tag {
  background: rgba(224, 78, 40, 0.12);
  border: 1px solid rgba(224, 78, 40, 0.25);
  color: #4b5563;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 16px;
  text-transform: uppercase;
}

.mvp-lifestyle-image {
  background: #1a1a1a;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.mvp-lifestyle-image img,
.mvp-value-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.mvp-lifestyle-image:hover img,
.mvp-value-img:hover img {
  transform: scale(1.04);
}

.mvp-lifestyle-image-credit {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.1em;
  position: absolute;
  right: 20px;
}

/* Highlights */
.mvp-highlights {
  background: #f8fafc;
}

.mvp-highlights-header {
  margin-bottom: 64px;
  text-align: center;
}

.mvp-highlights-header .mvp-section-eyebrow {
  justify-content: center;
}

.mvp-highlights-header .mvp-section-eyebrow::before {
  display: none;
}

.mvp-highlights-header .mvp-section-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
}

.mvp-highlights-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mvp-highlight-card {
  background: #ffffff;
  overflow: hidden;
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s, transform 0.3s;
}

.mvp-highlight-card::before {
  background: transparent;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 0.3s;
}

.mvp-highlight-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.mvp-highlight-card:hover::before {
  background: var(--mvp-orange);
}

.mvp-highlight-icon {
  align-items: center;
  background: rgba(224, 78, 40, 0.1);
  border: 1px solid rgba(224, 78, 40, 0.2);
  color: var(--mvp-orange);
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  width: 52px;
}

.mvp-highlight-icon svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.mvp-highlight-icon i {
  font-size: 24px;
}

.mvp-highlight-time {
  color: var(--mvp-orange);
  font-family: "Bebas Neue", sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 4px;
}

.mvp-highlight-unit {
  color: var(--mvp-amber);
  font-size: 22px;
}

.mvp-highlight-label {
  color: #4b5563;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mvp-highlights-note {
  color: rgba(75, 85, 99, 0.7);
  font-size: 11px;
  margin: 20px 0 0;
  text-align: center;
}

/* Value Blocks */
.mvp-value-section {
  background: #ffffff;
}

.mvp-value-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.mvp-value-block.is-reverse {
  direction: rtl;
}

.mvp-value-block.is-reverse > * {
  direction: ltr;
}

.mvp-value-img {
  background: #1a1a1a;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.mvp-value-img-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent);
  inset: 0;
  position: absolute;
}

.mvp-value-content {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.mvp-value-block.is-alt .mvp-value-content {
  background: #f8fafc;
}

/* Map */
.mvp-community-map {
  background: #f8fafc;
}

.mvp-community-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
}

.mvp-location-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.mvp-location-item {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--mvp-border);
  border-left: 3px solid var(--mvp-orange);
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  transition: background 0.2s, transform 0.2s;
}

.mvp-location-item:hover {
  background: #ffffff;
  transform: translateX(2px);
}

.mvp-location-time {
  color: var(--mvp-amber);
  flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1;
  min-width: 60px;
}

.mvp-location-desc {
  color: #4b5563;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mvp-map-card {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border: 1px solid var(--mvp-border);
  box-shadow: var(--mvp-shadow);
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.mvp-map-card iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.mvp-map-placeholder {
  align-items: center;
  color: rgba(55, 65, 81, 0.55);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  min-height: 360px;
  padding: 32px;
  text-align: center;
}

.mvp-map-pin {
  align-items: center;
  background: rgba(224, 78, 40, 0.12);
  border: 1px solid rgba(224, 78, 40, 0.24);
  border-radius: 999px;
  color: var(--mvp-orange);
  display: flex;
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  height: 72px;
  justify-content: center;
  line-height: 1;
  width: 72px;
}

.mvp-map-title {
  color: rgba(55, 65, 81, 0.75);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mvp-map-subtitle {
  color: rgba(55, 65, 81, 0.55);
  font-size: 13px;
}

.mvp-map-link {
  background: rgba(224, 78, 40, 0.12);
  border: 1px solid rgba(224, 78, 40, 0.25);
  color: var(--mvp-orange);
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 4px;
  padding: 10px 24px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.mvp-map-link:hover {
  background: rgba(224, 78, 40, 0.2);
}

.mvp-map-floating-link {
  background: rgba(255, 255, 255, 0.94);
  bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  margin-top: 0;
  position: absolute;
  right: 20px;
  z-index: 2;
}

/* Builders */
.mvp-builders {
  background: #ffffff;
}

.mvp-builders-header {
  margin-bottom: 64px;
  text-align: center;
}

.mvp-builders-header .mvp-section-eyebrow {
  justify-content: center;
}

.mvp-builders-header .mvp-section-eyebrow::before {
  display: none;
}

.mvp-builders-header .mvp-section-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.mvp-builders-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mvp-builder-card {
  background: #ffffff;
  border: 1px solid var(--mvp-border);
  padding: 60px;
}

.mvp-builder-logo {
  display: block;
  height: auto;
  margin-bottom: 24px;
  max-height: 64px;
  max-width: 220px;
  object-fit: contain;
}

.mvp-builder-name {
  color: var(--mvp-blue);
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.mvp-builder-tag {
  color: var(--mvp-amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.mvp-builder-divider {
  background: var(--mvp-orange);
  height: 2px;
  margin: 20px 0;
  width: 40px;
}

.mvp-builder-body {
  color: rgba(75, 85, 99, 0.88);
  font-size: 15px;
  line-height: 1.75;
}

.mvp-builder-body p {
  margin: 0 0 16px;
}

.mvp-builder-body p:last-child {
  margin-bottom: 0;
}

/* CTA */
.mvp-cta {
  background: #111827;
  overflow: hidden;
  position: relative;
}

.mvp-cta::before,
.mvp-cta::after {
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.mvp-cta::before {
  background: radial-gradient(circle, rgba(224, 78, 40, 0.08) 0%, transparent 70%);
  height: 600px;
  right: -220px;
  top: -140px;
  width: 600px;
}

.mvp-cta::after {
  background: radial-gradient(circle, rgba(58, 181, 229, 0.07) 0%, transparent 70%);
  bottom: -160px;
  height: 500px;
  left: -120px;
  width: 500px;
}

.mvp-cta .mvp-section-title,
.mvp-cta .mvp-section-body {
  color: #ffffff;
}

.mvp-cta .mvp-section-body {
  color: rgba(255, 255, 255, 0.74);
}

.mvp-cta-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) 560px;
  position: relative;
  z-index: 2;
}

.mvp-cta .mvp-section-title {
  font-size: 60px;
}

.mvp-cta-title-highlight {
  color: var(--mvp-orange);
}

.mvp-cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 0;
}

.mvp-cta-feature {
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 15px;
  gap: 12px;
}

.mvp-cta-feature::before {
  background: var(--mvp-orange);
  content: "";
  flex-shrink: 0;
  height: 6px;
  transform: rotate(45deg);
  width: 6px;
}

.mvp-cta-form-panel {
  padding: 48px 44px;
}

/* Footer */
.mvp-footer {
  background: #f8fafc;
  border-top: 1px solid var(--mvp-border);
  padding: 48px 0;
}

.mvp-footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 80px;
}

.mvp-footer-logo img {
  display: block;
  height: 44px;
  max-width: 220px;
  object-fit: contain;
  width: auto;
}

.mvp-footer-fallback-logo {
  color: var(--mvp-orange);
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
}

.mvp-footer-info {
  color: rgba(75, 85, 99, 0.78);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.mvp-footer-info strong {
  color: rgba(31, 41, 55, 0.85);
  display: block;
  margin-bottom: 4px;
}

.mvp-footer-builders {
  color: rgba(75, 85, 99, 0.72);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.mvp-footer-builders strong {
  color: rgba(31, 41, 55, 0.86);
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .mvp-container {
    padding-left: 48px;
    padding-right: 48px;
  }

  .mvp-hero-content,
  .mvp-cta-inner {
    grid-template-columns: 1fr;
    padding-left: 48px;
    padding-right: 48px;
  }

  .mvp-hero-form-panel {
    max-width: 520px;
  }

  .mvp-stats-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mvp-highlights-grid,
  .mvp-builders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mvp-value-block,
  .mvp-community-inner {
    grid-template-columns: 1fr;
  }

  .mvp-value-block.is-reverse {
    direction: ltr;
  }

  .mvp-value-content {
    padding: 60px 48px;
  }

  .mvp-footer-inner {
    flex-direction: column;
    padding-left: 48px;
    padding-right: 48px;
    text-align: center;
  }

  .mvp-footer-builders {
    text-align: center;
  }
}

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

  .mvp-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .mvp-hero-title {
    font-size: 56px;
  }

  .mvp-hero-content {
    gap: 48px;
    padding: 100px 24px 72px;
  }

  .mvp-hero-ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .mvp-button {
    width: 100%;
  }

  .mvp-form-grid {
    grid-template-columns: 1fr;
  }

  .mvp-stats-inner,
  .mvp-highlights-grid,
  .mvp-lifestyle-grid,
  .mvp-builders-grid {
    grid-template-columns: 1fr;
  }

  .mvp-lifestyle-content,
  .mvp-value-content {
    padding: 60px 32px;
  }

  .mvp-lifestyle-image,
  .mvp-value-img {
    min-height: 360px;
  }

  .mvp-highlight-card,
  .mvp-builder-card {
    padding: 40px 32px;
  }

  .mvp-map-card {
    min-height: 320px;
  }

  .mvp-cta-inner {
    gap: 48px;
  }

  .mvp-cta-form-panel {
    padding: 32px 24px;
  }
}
