/*
Theme Name: MyGenPlan Remote Quote
Theme URI: https://mygenplan.com/
Author: TSSG Digital
Description: A customer-facing virtual generator assessment theme with editable dealer routing, open-territory lead tracking, and a dealer partnership handoff.
Version: 1.6.16
Requires at least: 6.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: mygenplan
*/

:root {
  --mgp-navy-950: #071925;
  --mgp-navy-900: #0b2535;
  --mgp-navy-800: #123b50;
  --mgp-blue-500: #2a7798;
  --mgp-orange-600: #e75b13;
  --mgp-orange-700: #cc4b0b;
  --mgp-orange-500: #f26b1d;
  --mgp-orange-100: #fff0e6;
  --mgp-teal-600: #168a7c;
  --mgp-teal-100: #e6f7f3;
  --mgp-cream: #fbf8f2;
  --mgp-white: #ffffff;
  --mgp-ink: #16232b;
  --mgp-copy: #4b5a63;
  --mgp-muted: #71808a;
  --mgp-line: #dfe6e8;
  --mgp-shadow-sm: 0 12px 30px rgba(7, 25, 37, 0.08);
  --mgp-shadow-lg: 0 28px 80px rgba(7, 25, 37, 0.18);
  --mgp-radius-sm: 12px;
  --mgp-radius-md: 20px;
  --mgp-radius-lg: 32px;
  --mgp-container: 1200px;
  --mgp-header: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--mgp-header) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--mgp-ink);
  background: var(--mgp-white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--mgp-orange-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--mgp-navy-900);
}

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

button,
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(242, 107, 29, 0.45);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--mgp-white);
  background: var(--mgp-navy-950);
}

.mgp-container {
  width: min(calc(100% - 40px), var(--mgp-container));
  margin-inline: auto;
}

.mgp-section {
  position: relative;
  padding: 108px 0;
}

.mgp-section--cream {
  background: var(--mgp-cream);
}

.mgp-section--dark {
  overflow: hidden;
  color: var(--mgp-white);
  background: var(--mgp-navy-950);
}

.mgp-section--dark::before {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 107, 29, 0.17), transparent 68%);
  content: "";
}

.mgp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--mgp-orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mgp-eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.mgp-section-title {
  max-width: 780px;
  margin: 0;
  color: var(--mgp-navy-950);
  font-family: "Manrope", "DM Sans", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mgp-section--dark .mgp-section-title {
  color: var(--mgp-white);
}

.mgp-section-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--mgp-copy);
  font-size: 1.1rem;
}

.mgp-section--dark .mgp-section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.mgp-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--mgp-white);
  background: var(--mgp-orange-600);
  box-shadow: 0 12px 25px rgba(231, 91, 19, 0.22);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.mgp-button:hover {
  color: var(--mgp-white);
  background: #cc4b0b;
  box-shadow: 0 16px 32px rgba(231, 91, 19, 0.3);
  transform: translateY(-2px);
}

.mgp-button svg {
  width: 18px;
  height: 18px;
}

.mgp-button--dark {
  background: var(--mgp-navy-950);
  box-shadow: 0 12px 25px rgba(7, 25, 37, 0.2);
}

.mgp-button--dark:hover {
  background: var(--mgp-navy-800);
}

.mgp-button--ghost {
  border-color: rgba(11, 37, 53, 0.18);
  color: var(--mgp-navy-900);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.mgp-button--ghost:hover {
  color: var(--mgp-navy-950);
  background: var(--mgp-white);
  box-shadow: var(--mgp-shadow-sm);
}

.mgp-button--light {
  color: var(--mgp-navy-950);
  background: var(--mgp-white);
  box-shadow: none;
}

.mgp-button--light:hover {
  color: var(--mgp-navy-950);
  background: var(--mgp-orange-100);
}

.mgp-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(11, 37, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.admin-bar .mgp-site-header {
  top: 32px;
}

.mgp-header-inner {
  display: flex;
  min-height: var(--mgp-header);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mgp-logo,
.mgp-logo:hover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.mgp-logo-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.mgp-logo em {
  color: var(--mgp-orange-600);
  font-style: normal;
}

.mgp-logo .custom-logo {
  width: auto;
  max-height: 50px;
}

.mgp-brand-logo {
  width: auto;
  max-width: 230px;
  max-height: 54px;
  object-fit: contain;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.custom-logo {
  width: auto;
  max-height: 50px;
}

.mgp-primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.mgp-primary-nav a {
  position: relative;
  color: var(--mgp-navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mgp-primary-nav a:not(.mgp-button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--mgp-orange-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.mgp-primary-nav a:not(.mgp-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mgp-primary-nav .mgp-button {
  min-height: 46px;
  padding: 11px 19px;
  color: var(--mgp-white);
}

.mgp-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--mgp-line);
  border-radius: 12px;
  color: var(--mgp-navy-950);
  background: var(--mgp-white);
}

.mgp-menu-toggle svg {
  width: 23px;
  height: 23px;
}

.mgp-hero {
  position: relative;
  min-height: min(780px, calc(100vh - var(--mgp-header)));
  overflow: hidden;
  background: #e8e1d4;
}

.mgp-hero__media,
.mgp-hero__media::before,
.mgp-hero__media::after {
  position: absolute;
  inset: 0;
}

.mgp-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mgp-hero__media::before {
  z-index: 1;
  background: linear-gradient(90deg, rgba(250, 247, 241, 0.98) 0%, rgba(250, 247, 241, 0.93) 29%, rgba(250, 247, 241, 0.47) 49%, rgba(250, 247, 241, 0) 70%);
  content: "";
}

.mgp-hero__media::after {
  z-index: 1;
  background: linear-gradient(0deg, rgba(7, 25, 37, 0.16), transparent 24%);
  content: "";
}

.mgp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, calc(100vh - var(--mgp-header)));
  align-items: center;
  padding: 86px 0 110px;
}

.mgp-hero__content {
  width: min(610px, 55%);
}

.mgp-hero h1 {
  margin: 0;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mgp-hero h1 span {
  color: var(--mgp-orange-600);
}

.mgp-hero__lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #344751;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.mgp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.mgp-hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: #43535c;
  font-size: 0.84rem;
  font-weight: 700;
}

.mgp-hero__note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--mgp-teal-600);
}

.mgp-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.mgp-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(11, 37, 53, 0.08);
  border-radius: var(--mgp-radius-md);
  background: var(--mgp-white);
  box-shadow: var(--mgp-shadow-lg);
}

.mgp-trust-item {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
}

.mgp-trust-item + .mgp-trust-item {
  border-left: 1px solid var(--mgp-line);
}

.mgp-icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--mgp-orange-600);
  background: var(--mgp-orange-100);
}

.mgp-icon-box svg {
  width: 23px;
  height: 23px;
}

.mgp-trust-item strong,
.mgp-trust-item span {
  display: block;
}

.mgp-trust-item strong {
  color: var(--mgp-navy-950);
  font-size: 0.98rem;
}

.mgp-trust-item span {
  margin-top: 2px;
  color: var(--mgp-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mgp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 55px;
}

.mgp-step {
  position: relative;
  min-height: 310px;
  padding: 34px;
  border: 1px solid var(--mgp-line);
  border-radius: var(--mgp-radius-md);
  background: var(--mgp-white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mgp-step:hover {
  border-color: rgba(242, 107, 29, 0.35);
  box-shadow: var(--mgp-shadow-sm);
  transform: translateY(-6px);
}

.mgp-step__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(11, 37, 53, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.mgp-step .mgp-icon-box {
  width: 58px;
  height: 58px;
  color: var(--mgp-teal-600);
  background: var(--mgp-teal-100);
}

.mgp-step h3 {
  margin: 26px 0 10px;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.mgp-step p {
  margin: 0;
  color: var(--mgp-copy);
  font-size: 0.96rem;
}

.mgp-coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.mgp-region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.mgp-region-list li {
  padding: 8px 13px;
  border: 1px solid #d9e0e2;
  border-radius: 999px;
  color: var(--mgp-navy-800);
  background: var(--mgp-white);
  font-size: 0.82rem;
  font-weight: 800;
}

.mgp-coverage-note {
  display: flex;
  gap: 11px;
  margin: 25px 0 0;
  color: var(--mgp-copy);
  font-size: 0.9rem;
}

.mgp-coverage-note svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--mgp-orange-600);
}

.mgp-route-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--mgp-radius-lg);
  color: var(--mgp-white);
  background: var(--mgp-navy-900);
  box-shadow: var(--mgp-shadow-lg);
}

.mgp-route-card::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(242, 107, 29, 0.15);
  content: "";
}

.mgp-route-card > * {
  position: relative;
  z-index: 1;
}

.mgp-route-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.mgp-route-card > p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.mgp-route-fields {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 12px;
  margin-top: 26px;
}

.mgp-field,
.mgp-form-grid label {
  display: block;
}

.mgp-field span,
.mgp-form-grid label > span {
  display: block;
  margin: 0 0 7px;
  color: inherit;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.mgp-field input,
.mgp-field select,
.mgp-form-grid input,
.mgp-form-grid select,
.mgp-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 37, 53, 0.16);
  border-radius: 10px;
  color: var(--mgp-ink);
  background: var(--mgp-white);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mgp-route-card .mgp-field input,
.mgp-route-card .mgp-field select {
  border-color: rgba(255, 255, 255, 0.24);
}

.mgp-field input:focus,
.mgp-field select:focus,
.mgp-form-grid input:focus,
.mgp-form-grid select:focus,
.mgp-form-grid textarea:focus {
  border-color: var(--mgp-orange-500);
  box-shadow: 0 0 0 4px rgba(242, 107, 29, 0.12);
}

.mgp-route-card .mgp-button {
  width: 100%;
  margin-top: 16px;
}

.mgp-route-status {
  display: none;
  margin-top: 18px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.mgp-route-status.is-visible {
  display: block;
}

.mgp-route-status.is-success {
  border-color: rgba(128, 234, 205, 0.35);
  background: rgba(22, 138, 124, 0.24);
}

.mgp-route-status.is-error {
  border-color: rgba(255, 164, 117, 0.4);
  background: rgba(231, 91, 19, 0.18);
}

.mgp-waitlist {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mgp-waitlist.is-visible {
  display: block;
  animation: mgpReveal 280ms ease both;
}

.mgp-waitlist h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
}

.mgp-waitlist > p {
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.mgp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

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

.mgp-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  color: inherit;
  font-size: 0.76rem;
  line-height: 1.5;
}

.mgp-consent input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 3px 0 0;
  accent-color: var(--mgp-orange-500);
}

.mgp-consent span {
  margin: 0 !important;
  font-size: inherit !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.mgp-consent a {
  color: inherit;
}

.mgp-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mgp-alert {
  margin-bottom: 26px;
  padding: 15px 18px;
  border-radius: 10px;
  color: #0e5d52;
  background: #e4f6f2;
  font-weight: 700;
}

.mgp-alert--error {
  color: #8c330d;
  background: #fff0e7;
}

.mgp-benefits-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.mgp-benefit-visual {
  position: relative;
  min-height: 540px;
}

.mgp-benefit-visual__image {
  position: absolute;
  inset: 0 56px 48px 0;
  overflow: hidden;
  border-radius: var(--mgp-radius-lg);
  box-shadow: var(--mgp-shadow-lg);
}

.mgp-benefit-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mgp-benefit-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 72%);
  padding: 24px;
  border: 1px solid var(--mgp-line);
  border-radius: 18px;
  background: var(--mgp-white);
  box-shadow: var(--mgp-shadow-lg);
}

.mgp-benefit-card strong {
  display: block;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
}

.mgp-benefit-card p {
  margin: 6px 0 0;
  color: var(--mgp-copy);
  font-size: 0.84rem;
}

.mgp-check-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.mgp-check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.mgp-check-list svg {
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 50%;
  color: var(--mgp-teal-600);
  background: var(--mgp-teal-100);
}

.mgp-check-list strong {
  display: block;
  color: var(--mgp-navy-950);
  font-size: 1rem;
}

.mgp-check-list span {
  display: block;
  margin-top: 3px;
  color: var(--mgp-copy);
  font-size: 0.91rem;
}

.mgp-dealer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.mgp-dealer-image {
  margin: 36px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.mgp-dealer-image img {
  width: 100%;
  aspect-ratio: 3 / 1.7;
  object-fit: cover;
}

.mgp-dealer-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mgp-dealer-points li {
  display: flex;
  gap: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.mgp-dealer-points svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #6ee0c6;
}

.mgp-dealer-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--mgp-radius-md);
  color: var(--mgp-white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.mgp-dealer-form h3 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.mgp-dealer-form > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.87rem;
}

.mgp-dealer-form .mgp-form-grid input,
.mgp-dealer-form .mgp-form-grid textarea {
  border-color: rgba(255, 255, 255, 0.2);
}

.mgp-dealer-form .mgp-button {
  width: 100%;
  margin-top: 18px;
}

.mgp-faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  border-top: 1px solid var(--mgp-line);
}

.mgp-faq-item {
  border-bottom: 1px solid var(--mgp-line);
}

.mgp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 2px;
  color: var(--mgp-navy-950);
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  list-style: none;
}

.mgp-faq-item summary::-webkit-details-marker {
  display: none;
}

.mgp-faq-item summary::after {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mgp-orange-600);
  background: var(--mgp-orange-100);
  content: "+";
  font-family: sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.mgp-faq-item[open] summary::after {
  content: "–";
}

.mgp-faq-answer {
  max-width: 760px;
  padding: 0 2px 25px;
  color: var(--mgp-copy);
  font-size: 0.95rem;
}

.mgp-final-cta {
  position: relative;
  overflow: hidden;
  padding: 68px;
  border-radius: var(--mgp-radius-lg);
  color: var(--mgp-white);
  background: linear-gradient(125deg, var(--mgp-orange-600), #ff8540);
  box-shadow: 0 24px 70px rgba(231, 91, 19, 0.25);
}

.mgp-final-cta::after {
  position: absolute;
  top: -150px;
  right: -90px;
  width: 380px;
  height: 380px;
  border: 60px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.mgp-final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.mgp-final-cta h2 {
  max-width: 690px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.mgp-final-cta p {
  max-width: 620px;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.mgp-site-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--mgp-navy-950);
}

.mgp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 70px;
}

.mgp-site-footer .mgp-logo,
.mgp-site-footer .mgp-logo:hover {
  color: var(--mgp-white);
}

.mgp-footer-about {
  max-width: 480px;
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.mgp-site-footer h3 {
  margin: 4px 0 17px;
  color: var(--mgp-white);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mgp-site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mgp-site-footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  text-decoration: none;
}

.mgp-site-footer a:hover {
  color: var(--mgp-white);
}

.mgp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.mgp-content-header {
  padding: 90px 0 70px;
  background: var(--mgp-cream);
}

.mgp-content-header h1 {
  max-width: 850px;
  margin: 0;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.mgp-content-wrap {
  width: min(calc(100% - 40px), 860px);
  margin-inline: auto;
  padding: 80px 0 110px;
}

.mgp-entry-content > *:first-child {
  margin-top: 0;
}

.mgp-entry-content h2,
.mgp-entry-content h3 {
  margin-top: 2em;
  color: var(--mgp-navy-950);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.mgp-entry-content a {
  font-weight: 700;
}

.mgp-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.mgp-post-card {
  padding: 28px;
  border: 1px solid var(--mgp-line);
  border-radius: var(--mgp-radius-md);
  background: var(--mgp-white);
}

.mgp-post-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.mgp-post-card h2 a {
  color: var(--mgp-navy-950);
  text-decoration: none;
}

.mgp-404 {
  min-height: 65vh;
  text-align: center;
}

.mgp-404 .mgp-section-title,
.mgp-404 .mgp-section-lead {
  margin-right: auto;
  margin-left: auto;
}

.mgp-404 .mgp-button {
  margin-top: 28px;
}

.mgp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.mgp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mgpReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .mgp-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --mgp-header: 74px;
  }

  .mgp-menu-toggle {
    display: inline-flex;
  }

  .mgp-primary-nav {
    position: fixed;
    inset: var(--mgp-header) 0 auto 0;
    display: grid;
    gap: 0;
    max-height: 0;
    margin: 0;
    padding: 0 20px;
    overflow: hidden;
    border-bottom: 1px solid var(--mgp-line);
    background: var(--mgp-white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease, padding 220ms ease;
  }

  .admin-bar .mgp-primary-nav {
    top: calc(var(--mgp-header) + 32px);
  }

  .mgp-primary-nav.is-open {
    max-height: calc(100vh - var(--mgp-header));
    padding: 14px 20px 24px;
    opacity: 1;
    visibility: visible;
  }

  .mgp-primary-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--mgp-line);
  }

  .mgp-primary-nav .mgp-button {
    margin-top: 13px;
  }

  .mgp-primary-nav a::after {
    display: none;
  }

  .mgp-hero,
  .mgp-hero__inner {
    min-height: 700px;
  }

  .mgp-hero__media::before {
    background: linear-gradient(90deg, rgba(250, 247, 241, 0.97) 0%, rgba(250, 247, 241, 0.88) 43%, rgba(250, 247, 241, 0.24) 72%);
  }

  .mgp-hero__content {
    width: 62%;
  }

  .mgp-coverage-layout,
  .mgp-benefits-layout,
  .mgp-dealer-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .mgp-coverage-layout {
    align-items: start;
  }

  .mgp-route-card {
    max-width: 760px;
  }

  .mgp-benefit-visual {
    max-width: 760px;
  }

  .mgp-dealer-image {
    max-width: 760px;
  }

  .mgp-dealer-form {
    max-width: 760px;
  }
}

@media (max-width: 780px) {
  .admin-bar .mgp-site-header {
    top: 46px;
  }

  .admin-bar .mgp-primary-nav {
    top: calc(var(--mgp-header) + 46px);
  }

  .mgp-section {
    padding: 78px 0;
  }

  .mgp-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    background: var(--mgp-cream);
  }

  .mgp-hero__media {
    position: relative;
    order: 2;
    aspect-ratio: 1.25 / 1;
  }

  .mgp-hero__media::before {
    display: none;
  }

  .mgp-hero__media::after {
    background: linear-gradient(0deg, rgba(7, 25, 37, 0.08), transparent 30%);
  }

  .mgp-hero__media img {
    object-position: 61% center;
  }

  .mgp-hero__inner {
    min-height: auto;
    align-items: flex-start;
    padding: 66px 0 55px;
  }

  .mgp-hero__content {
    width: 100%;
  }

  .mgp-hero h1 {
    max-width: 640px;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .mgp-trust-strip {
    margin-top: 0;
    padding: 22px 0;
    background: var(--mgp-white);
  }

  .mgp-trust-strip__inner {
    grid-template-columns: 1fr;
    box-shadow: var(--mgp-shadow-sm);
  }

  .mgp-trust-item {
    min-height: 90px;
    padding: 21px 23px;
  }

  .mgp-trust-item + .mgp-trust-item {
    border-top: 1px solid var(--mgp-line);
    border-left: 0;
  }

  .mgp-steps-grid {
    grid-template-columns: 1fr;
  }

  .mgp-step {
    min-height: 0;
  }

  .mgp-route-fields,
  .mgp-form-grid {
    grid-template-columns: 1fr;
  }

  .mgp-form-grid .mgp-field--full {
    grid-column: auto;
  }

  .mgp-benefit-visual {
    min-height: 480px;
  }

  .mgp-final-cta {
    padding: 45px 34px;
  }

  .mgp-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .mgp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .mgp-footer-brand {
    grid-column: 1 / -1;
  }

  .mgp-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .mgp-container,
  .mgp-content-wrap {
    width: min(calc(100% - 28px), var(--mgp-container));
  }

  .mgp-header-inner {
    gap: 14px;
  }

  .mgp-logo {
    font-size: 1.25rem;
  }

  .mgp-logo-mark {
    width: 34px;
    height: 34px;
  }

  .custom-logo {
    max-width: 220px;
    max-height: 44px;
  }

  .mgp-hero__actions {
    display: grid;
  }

  .mgp-hero__actions .mgp-button {
    width: 100%;
  }

  .mgp-route-card,
  .mgp-dealer-form {
    padding: 27px 21px;
    border-radius: 20px;
  }

  .mgp-benefit-visual {
    min-height: 410px;
  }

  .mgp-benefit-visual__image {
    inset: 0 20px 64px 0;
  }

  .mgp-benefit-card {
    width: 86%;
  }

  .mgp-dealer-points {
    grid-template-columns: 1fr;
  }

  .mgp-final-cta {
    padding: 38px 25px;
    border-radius: 22px;
  }

  .mgp-footer-grid {
    grid-template-columns: 1fr;
  }

  .mgp-footer-brand {
    grid-column: auto;
  }

  .mgp-post-list {
    grid-template-columns: 1fr;
  }
}
.mgp3-hero h1 {font-size:clamp(3.3rem, 4.7vw, 4.9rem) !important;}
.mgp3-hero {padding: 0 !important;}
