.mam-site,
.mam-site * {
  box-sizing: border-box;
}

.mam-site {
  --mam-navy: #0d3458;
  --mam-blue: #164f7e;
  --mam-red: #c92032;
  --mam-cream: #f5f1e7;
  --mam-gold: #d8b35a;
  --mam-ink: #162d40;
  --mam-muted: #5d6c79;
  --mam-line: #d8dee5;
  width: 100vw;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  color: var(--mam-ink);
  background: #fff;
  font-family:
    Inter, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.mam-site h1,
.mam-site h2,
.mam-site h3,
.mam-site p,
.mam-site ul,
.mam-site ol,
.mam-site figure {
  margin-top: 0;
}

.mam-site a {
  color: inherit;
}

.mam-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(22px, 5vw, 74px);
  border-bottom: 1px solid rgba(216, 222, 229, 0.88);
  background: rgba(255, 255, 255, 0.97);
}

.mam-brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  color: var(--mam-navy);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1;
  text-decoration: none;
}

.mam-brand > span {
  margin-top: 5px;
  color: var(--mam-red);
  font-size: 11px;
  letter-spacing: 0.33em;
}

.mam-brand .custom-logo-link {
  display: block;
  line-height: 0;
}

.mam-brand img {
  width: auto;
  max-width: 155px;
  height: 52px;
  object-fit: contain;
}

.mam-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.mam-nav a,
.mam-text-link {
  color: var(--mam-navy);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.mam-nav a:hover,
.mam-text-link:hover {
  color: var(--mam-red);
}

.mam-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 4px;
  padding: 13px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.mam-button:hover {
  transform: translateY(-2px);
}

.mam-button:focus-visible,
.mam-site button:focus-visible,
.mam-site input:focus-visible,
.mam-site select:focus-visible,
.mam-site textarea:focus-visible,
.mam-site a:focus-visible {
  outline: 3px solid rgba(22, 79, 126, 0.28);
  outline-offset: 3px;
}

.mam-button:disabled {
  opacity: 0.58;
  cursor: wait;
  transform: none;
}

.mam-button-navy {
  color: #fff;
  background: var(--mam-navy);
  box-shadow: 0 8px 20px rgba(13, 52, 88, 0.17);
}

.mam-button-red {
  color: #fff;
  background: var(--mam-red);
  box-shadow: 0 11px 26px rgba(201, 32, 50, 0.22);
}

.mam-button-light {
  color: var(--mam-navy);
  background: #fff;
  box-shadow: 0 11px 28px rgba(7, 31, 52, 0.18);
}

.mam-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--mam-red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.mam-eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 3px;
  background: currentColor;
}

.mam-eyebrow-light {
  color: #f3d89d;
}

.mam-eyebrow-dark {
  color: var(--mam-red);
}

.mam-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 74% 25%, rgba(40, 97, 140, 0.78), transparent 33%),
    linear-gradient(135deg, #092c4a 0%, #0d3c65 64%, #092a48 100%);
}

.mam-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  pointer-events: none;
}

.mam-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1300px, calc(100% - 44px));
  min-height: 680px;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  margin: auto;
  padding: 66px 0 82px;
}

.mam-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(44px, 6.3vw, 86px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.mam-hero-copy h1 em {
  display: block;
  color: #f0d29a;
  font-family: Georgia, serif;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.mam-hero-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: #d8e5ef;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.mam-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.mam-hero .mam-text-link {
  color: #fff;
}

.mam-offer-line {
  display: flex;
  max-width: 690px;
  align-items: center;
  gap: 15px;
  margin-top: 31px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mam-offer-line > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mam-offer-line p {
  margin: 0;
  color: #d9e5ee;
  font-size: 13px;
}

.mam-listing-stage {
  position: relative;
  min-height: 500px;
}

.mam-listing-card,
.mam-listing-shadow {
  position: absolute;
  border-radius: 12px;
}

.mam-listing-shadow {
  inset: 65px 45px 40px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.mam-listing-shadow-one {
  transform: rotate(-5deg);
}

.mam-listing-shadow-two {
  transform: rotate(5deg);
}

.mam-listing-card {
  inset: 34px 22px 52px;
  overflow: hidden;
  padding: 28px;
  color: var(--mam-ink);
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.mam-listing-stripe {
  height: 6px;
  margin: -28px -28px 26px;
  background: linear-gradient(90deg, var(--mam-red) 0 33%, #fff 33% 66%, var(--mam-blue) 66%);
}

.mam-listing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mam-listing-logo {
  display: grid;
  width: 86px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--mam-line);
  color: var(--mam-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mam-verified {
  border-radius: 999px;
  padding: 7px 11px;
  color: #17603a;
  background: #e0f2e7;
  font-size: 11px;
  font-weight: 900;
}

.mam-listing-label {
  margin: 28px 0 7px;
  color: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mam-listing-card h2 {
  margin-bottom: 10px;
  color: var(--mam-navy);
  font-size: clamp(29px, 3.4vw, 43px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.mam-listing-card > p:not(.mam-listing-label) {
  color: var(--mam-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mam-listing-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.mam-listing-signals div {
  min-width: 0;
  padding: 13px 10px;
  border: 1px solid #e5e9ed;
  background: #fafbfc;
}

.mam-listing-signals span,
.mam-listing-signals strong,
.mam-listing-signals small {
  display: block;
}

.mam-listing-signals span {
  color: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
}

.mam-listing-signals strong {
  margin-top: 7px;
  color: var(--mam-navy);
  font-size: 11px;
}

.mam-listing-signals small {
  margin-top: 2px;
  color: var(--mam-muted);
  font-size: 9px;
}

.mam-stage-note {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  margin: 0;
  color: #d9e5ee;
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.mam-stage-note span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #64d691;
  box-shadow: 0 0 0 6px rgba(100, 214, 145, 0.13);
}

.mam-flag-band {
  height: 7px;
  background: linear-gradient(90deg, var(--mam-red) 0 33%, #fff 33% 66%, #1c5686 66%);
}

.mam-outcomes {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 4vw, 58px);
  padding: 18px 24px;
  border-bottom: 1px solid var(--mam-line);
  color: var(--mam-navy);
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mam-outcomes > span {
  color: var(--mam-red);
}

.mam-section {
  width: min(1280px, calc(100% - 44px));
  margin: auto;
  padding: clamp(78px, 9vw, 126px) 0;
}

.mam-section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}

.mam-section-intro h2,
.mam-pricing-intro h2,
.mam-steps-copy h2,
.mam-reach-copy h2,
.mam-faq-heading h2,
.mam-final-cta h2 {
  margin-bottom: 0;
  color: var(--mam-navy);
  font-size: clamp(36px, 4.9vw, 64px);
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.mam-section-intro > p:last-child,
.mam-pricing-intro > p:last-child,
.mam-steps-copy > p:not(.mam-eyebrow),
.mam-reach-copy > p:last-child {
  color: var(--mam-muted);
  line-height: 1.75;
}

.mam-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mam-line);
  border-left: 1px solid var(--mam-line);
}

.mam-benefit-card {
  min-height: 275px;
  padding: 29px;
  border-right: 1px solid var(--mam-line);
  border-bottom: 1px solid var(--mam-line);
  background: #fff;
}

.mam-benefit-card > span {
  color: var(--mam-red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.mam-benefit-card h3 {
  margin: 51px 0 12px;
  color: var(--mam-navy);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.mam-benefit-card > p {
  color: var(--mam-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mam-benefit-cta {
  color: #fff;
  background: var(--mam-red);
}

.mam-benefit-cta > p {
  color: #f8ced3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mam-benefit-cta h3 {
  margin-top: 34px;
  color: #fff;
}

.mam-benefit-cta > a {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-top: 28px;
  border-radius: 50%;
  color: var(--mam-red);
  background: #fff;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.mam-pricing {
  padding: clamp(78px, 9vw, 122px) 22px;
  color: #fff;
  background: linear-gradient(138deg, #092b49, #0d426f);
}

.mam-pricing-inner {
  width: min(1280px, 100%);
  margin: auto;
}

.mam-pricing-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 0.85fr;
  gap: 42px;
  align-items: start;
  margin-bottom: 45px;
}

.mam-pricing-intro h2 {
  color: #fff;
}

.mam-pricing-intro > p:last-child {
  color: #d3e1eb;
}

.mam-pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.mam-founders-card,
.mam-launch-card {
  border-radius: 10px;
}

.mam-founders-card {
  padding: clamp(30px, 5vw, 52px);
  color: var(--mam-ink);
  background: var(--mam-cream);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
}

.mam-pricing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mam-pricing-top > span {
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mam-pricing-top > small {
  color: var(--mam-muted);
  font-size: 11px;
  font-weight: 750;
}

.mam-plan-name {
  margin: 37px 0 8px;
  color: var(--mam-navy);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mam-price-choices {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mam-price-choices > div {
  display: flex;
  align-items: flex-start;
}

.mam-price-choices > div > span {
  margin-top: 12px;
  color: var(--mam-navy);
  font-size: 22px;
  font-weight: 900;
}

.mam-price-choices > div > strong {
  color: var(--mam-navy);
  font-size: clamp(66px, 7.4vw, 98px);
  letter-spacing: -0.08em;
  line-height: 0.94;
}

.mam-price-choices > div > small {
  align-self: flex-end;
  margin: 0 0 12px 8px;
  color: var(--mam-muted);
  font-weight: 750;
}

.mam-price-choices > em {
  color: #8a969f;
  font-family: Georgia, serif;
}

.mam-lifetime {
  margin: 21px 0;
  border-top: 1px solid #d6d2c8;
  border-bottom: 1px solid #d6d2c8;
  padding: 15px 0;
  color: #17603a;
  font-size: 13px;
  font-weight: 900;
}

.mam-founders-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.mam-founders-card li {
  font-size: 13px;
}

.mam-founders-card li::first-letter {
  color: var(--mam-red);
}

.mam-founders-card .mam-button {
  color: #fff;
  background: var(--mam-navy);
}

.mam-savings {
  display: block;
  margin-top: 12px;
  color: var(--mam-muted);
}

.mam-launch-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
}

.mam-launch-card > p {
  color: #f1d49c;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mam-launch-card h3 {
  margin-bottom: 30px;
  color: #fff;
  font-size: clamp(29px, 3.4vw, 43px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.mam-launch-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.mam-launch-prices div {
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.mam-launch-prices strong,
.mam-launch-prices span {
  display: block;
}

.mam-launch-prices strong {
  font-size: 28px;
}

.mam-launch-prices span {
  color: #b7cad9;
  font-size: 11px;
}

.mam-advantage {
  margin: 22px 0;
  padding: 17px;
  color: var(--mam-navy);
  background: #f0d29a;
}

.mam-advantage span,
.mam-advantage strong {
  display: block;
}

.mam-advantage span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mam-advantage strong {
  margin-top: 4px;
  font-size: 14px;
}

.mam-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mam-timeline li {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mam-timeline span {
  color: #f0d29a;
  font-size: 11px;
  font-weight: 900;
}

.mam-timeline p {
  margin: 0;
  color: #d3e1eb;
  font-size: 12px;
}

.mam-steps-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: var(--mam-navy);
}

.mam-steps-copy {
  padding: clamp(35px, 6vw, 72px);
  background: linear-gradient(145deg, #0b3558, #0d456f);
}

.mam-steps-copy h2 {
  color: #fff;
}

.mam-steps-copy > p:not(.mam-eyebrow) {
  margin: 22px 0 30px;
  color: #d3e1eb;
}

.mam-step-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mam-step-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 23px;
  align-items: center;
  padding: 28px clamp(28px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mam-step-list li:last-child {
  border-bottom: 0;
}

.mam-step-list > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #f0d29a;
  font-weight: 900;
}

.mam-step-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 19px;
}

.mam-step-list p {
  margin: 0;
  color: #c7d8e5;
  font-size: 13px;
}

.mam-reach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.mam-reach-copy h2 {
  margin-bottom: 20px;
}

.mam-channel-list {
  border-top: 1px solid var(--mam-line);
}

.mam-channel-list > div {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 5px;
  border-bottom: 1px solid var(--mam-line);
}

.mam-channel-list span {
  color: var(--mam-red);
  font-size: 11px;
  font-weight: 950;
}

.mam-channel-list strong {
  color: var(--mam-navy);
  font-size: 18px;
}

.mam-channel-list b {
  color: var(--mam-red);
}

.mam-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  border-top: 1px solid var(--mam-line);
}

.mam-faq-heading h2 {
  margin-bottom: 20px;
}

.mam-faq-heading a {
  color: var(--mam-red);
  font-weight: 800;
}

.mam-faq-list {
  border-top: 1px solid var(--mam-line);
}

.mam-faq-list details {
  border-bottom: 1px solid var(--mam-line);
}

.mam-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  color: var(--mam-navy);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.mam-faq-list summary::-webkit-details-marker {
  display: none;
}

.mam-faq-list summary span {
  color: var(--mam-red);
  font-size: 24px;
  transition: transform 150ms ease;
}

.mam-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.mam-faq-list details p {
  max-width: 720px;
  padding: 0 35px 22px 0;
  color: var(--mam-muted);
  line-height: 1.7;
}

.mam-final-cta {
  padding: clamp(80px, 10vw, 130px) 22px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(55, 110, 151, 0.6), transparent 32%),
    var(--mam-navy);
  text-align: center;
}

.mam-final-cta > * {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.mam-final-cta .mam-eyebrow {
  justify-content: center;
}

.mam-final-cta h2 {
  color: #fff;
}

.mam-final-cta > p:not(.mam-eyebrow) {
  margin-top: 21px;
  color: #d3e1eb;
  line-height: 1.7;
}

.mam-final-cta .mam-button {
  margin-top: 12px;
}

.mam-footer {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 25px;
  align-items: center;
  padding: 33px clamp(22px, 5vw, 74px);
  color: #81909d;
  background: #071f35;
  font-size: 11px;
}

.mam-footer p {
  margin: 0;
  text-align: center;
}

.mam-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}

.mam-footer a {
  color: #d2dde5;
  text-decoration: none;
}

.mam-footer small {
  grid-column: 1 / -1;
  text-align: center;
}

.mam-footer-brand {
  color: #fff !important;
}

.mam-mobile-claim {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff !important;
  background: var(--mam-red);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

/* Claim form */
.mam-claim-page {
  min-height: 100vh;
  background: var(--mam-cream);
}

.mam-claim-header {
  background: #fff;
}

.mam-claim-hero {
  padding: clamp(58px, 8vw, 96px) max(22px, calc((100vw - 1160px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(58, 116, 157, 0.68), transparent 31%),
    var(--mam-navy);
}

.mam-claim-hero h1 {
  max-width: 910px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(42px, 6vw, 75px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.mam-claim-hero > p:not(.mam-eyebrow) {
  max-width: 780px;
  margin-bottom: 27px;
  color: #d8e5ee;
  font-size: 18px;
  line-height: 1.7;
}

.mam-claim-offer {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 22px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid var(--mam-red);
  background: rgba(255, 255, 255, 0.07);
}

.mam-claim-offer strong {
  color: #f0d29a;
  font-size: 17px;
}

.mam-claim-offer span {
  color: #d8e5ee;
  font-size: 12px;
}

.mam-form-section {
  padding: 34px 22px 80px;
}

.mam-form-shell {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: 285px minmax(0, 1fr);
  overflow: hidden;
  margin: -64px auto 0;
  border: 1px solid var(--mam-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(13, 52, 88, 0.15);
}

.mam-form-sidebar {
  display: flex;
  flex-direction: column;
  padding: 35px 28px;
  color: #fff;
  background: linear-gradient(160deg, #0a2f50, #0d456f);
}

.mam-form-sidebar > p {
  color: #b9cad8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mam-form-progress {
  display: grid;
  gap: 0;
  margin: 12px 0 30px;
  padding: 0;
  list-style: none;
}

.mam-form-progress li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  opacity: 0.52;
}

.mam-form-progress li::after {
  position: absolute;
  top: 58px;
  bottom: -20px;
  left: 17px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.mam-form-progress li:last-child::after {
  display: none;
}

.mam-form-progress li.is-active,
.mam-form-progress li.is-complete {
  opacity: 1;
}

.mam-form-progress li > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.mam-form-progress li.is-active > span {
  border-color: var(--mam-red);
  background: var(--mam-red);
}

.mam-form-progress li.is-complete > span {
  color: var(--mam-navy);
  border-color: #f0d29a;
  background: #f0d29a;
}

.mam-form-progress strong,
.mam-form-progress small {
  display: block;
}

.mam-form-progress strong {
  color: #fff;
  font-size: 13px;
}

.mam-form-progress small {
  margin-top: 3px;
  color: #b9cad8;
  font-size: 10px;
}

.mam-form-help {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mam-form-help strong,
.mam-form-help a {
  display: block;
}

.mam-form-help strong {
  font-size: 12px;
}

.mam-form-help a {
  margin-top: 4px;
  color: #f0d29a;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.mam-form-main {
  min-width: 0;
  padding: clamp(30px, 5vw, 58px);
}

.mam-form-step[hidden],
.mam-form-success[hidden],
.mam-form-error[hidden],
.mam-form-actions [hidden] {
  display: none !important;
}

.mam-step-heading {
  max-width: 740px;
  margin-bottom: 33px;
}

.mam-step-heading > span {
  color: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mam-step-heading h2,
.mam-form-success h2 {
  margin: 8px 0 10px;
  color: var(--mam-navy);
  font-size: clamp(30px, 4.4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.mam-step-heading p,
.mam-form-success > p {
  color: var(--mam-muted);
  line-height: 1.65;
}

.mam-fields {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px 18px;
}

.mam-field {
  display: grid;
  grid-column: span 12;
  gap: 7px;
  min-width: 0;
  margin: 0;
}

.mam-field.mam-half {
  grid-column: span 6;
}

.mam-field.mam-third {
  grid-column: span 4;
}

.mam-field.mam-quarter {
  grid-column: span 3;
}

.mam-field.mam-two-thirds {
  grid-column: span 8;
}

.mam-field > span,
.mam-choice-field legend {
  color: #385066;
  font-size: 12px;
  font-weight: 850;
}

.mam-field b,
.mam-choice-field b,
.mam-confirmations b {
  color: var(--mam-red);
}

.mam-field input,
.mam-field select,
.mam-field textarea,
.mam-review-box select,
.mam-review-box textarea {
  width: 100%;
  min-height: 48px;
  margin: 0;
  border: 1px solid #cbd4dc;
  border-radius: 5px;
  outline: none;
  padding: 11px 12px;
  color: var(--mam-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  box-shadow: none;
}

.mam-field textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.55;
}

.mam-field input:focus,
.mam-field select:focus,
.mam-field textarea:focus {
  border-color: var(--mam-blue);
  box-shadow: 0 0 0 3px rgba(22, 79, 126, 0.11);
}

.mam-field > small {
  color: #7c8995;
  font-size: 10px;
  line-height: 1.4;
}

.mam-count {
  text-align: right;
}

.mam-choice-field {
  border: 0;
  padding: 0;
}

.mam-choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.mam-choice-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mam-choice-grid label {
  position: relative;
  display: grid;
  min-height: 128px;
  align-content: start;
  border: 1px solid #cbd4dc;
  border-radius: 6px;
  padding: 18px;
  cursor: pointer;
}

.mam-choice-grid label:has(input:checked),
.mam-plan-grid label:has(input:checked) {
  border-color: var(--mam-blue);
  background: #f2f7fb;
  box-shadow: inset 0 0 0 1px var(--mam-blue);
}

.mam-choice-grid input,
.mam-plan-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mam-choice-grid label > span,
.mam-plan-grid label > span {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 15px;
  border: 1px solid #93a3b0;
  border-radius: 50%;
  background: #fff;
}

.mam-choice-grid label:has(input:checked) > span,
.mam-plan-grid label:has(input:checked) > span {
  border: 5px solid var(--mam-blue);
}

.mam-choice-grid strong,
.mam-choice-grid small {
  display: block;
}

.mam-choice-grid strong {
  color: var(--mam-navy);
  font-size: 14px;
}

.mam-choice-grid small {
  margin-top: 4px;
  color: var(--mam-muted);
  font-size: 10px;
  line-height: 1.4;
}

.mam-input-suffix {
  position: relative;
}

.mam-input-suffix > span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--mam-muted);
  font-weight: 850;
  transform: translateY(-50%);
}

.mam-field-divider {
  grid-column: 1 / -1;
  padding: 13px 0 4px;
  border-bottom: 1px solid var(--mam-line);
}

.mam-field-divider span {
  color: var(--mam-navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mam-field-divider p {
  margin: 5px 0 0;
  color: var(--mam-muted);
  font-size: 11px;
}

.mam-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 8px;
}

.mam-plan-grid label {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #cbd4dc;
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
}

.mam-plan-grid label > span {
  margin: 0;
}

.mam-plan-grid label > div strong,
.mam-plan-grid label > div small,
.mam-plan-grid label > b small {
  display: block;
}

.mam-plan-grid label > div strong {
  color: var(--mam-navy);
}

.mam-plan-grid label > div small {
  margin-top: 4px;
  color: var(--mam-muted);
  font-size: 10px;
}

.mam-plan-grid label > b {
  color: var(--mam-navy);
  font-size: 20px;
  text-align: right;
}

.mam-plan-grid label > b small {
  color: var(--mam-muted);
  font-size: 9px;
}

.mam-plan-grid label > em {
  position: absolute;
  top: -9px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 7px;
  color: #fff;
  background: var(--mam-red);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mam-plan-note {
  margin: 11px 0 0;
  color: var(--mam-muted);
  font-size: 11px;
}

.mam-confirmations {
  display: grid;
  gap: 12px;
}

.mam-confirmations label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5f70;
  font-size: 11px;
  line-height: 1.5;
}

.mam-confirmations input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--mam-blue);
}

.mam-confirmations a {
  color: var(--mam-blue);
  font-weight: 800;
}

.mam-form-error {
  margin-top: 25px;
  border-left: 4px solid var(--mam-red);
  padding: 14px 16px;
  color: #8d2430;
  background: #fde8ea;
}

.mam-form-error strong {
  display: block;
}

.mam-form-error p {
  margin: 3px 0 0;
  font-size: 12px;
}

.mam-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--mam-line);
}

.mam-back {
  border: 0;
  padding: 10px 0;
  color: var(--mam-navy);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.mam-form-success {
  min-height: 580px;
  padding: 20px 10px;
}

.mam-success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 27px;
  border-radius: 50%;
  color: #fff;
  background: #258455;
  font-size: 24px;
  font-weight: 900;
}

.mam-form-success > p {
  max-width: 700px;
}

.mam-reference {
  display: inline-flex;
  min-width: min(440px, 100%);
  flex-direction: column;
  margin: 24px 0;
  border: 1px solid #d3dce4;
  border-left: 5px solid var(--mam-red);
  padding: 17px 19px;
  background: #f7fafc;
}

.mam-reference span,
.mam-reference small {
  color: var(--mam-muted);
  font-size: 10px;
}

.mam-reference strong {
  margin: 5px 0;
  color: var(--mam-navy);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.mam-form-success ol {
  display: grid;
  gap: 10px;
  max-width: 730px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mam-form-success ol li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--mam-line);
  color: var(--mam-muted);
  font-size: 12px;
}

.mam-form-success ol span {
  color: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
}

.mam-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--mam-line);
  background: #fff;
}

.mam-assurance > div {
  padding: 28px clamp(22px, 5vw, 60px);
  border-right: 1px solid var(--mam-line);
}

.mam-assurance > div:last-child {
  border-right: 0;
}

.mam-assurance span,
.mam-assurance strong {
  display: block;
}

.mam-assurance span {
  color: var(--mam-red);
  font-size: 10px;
  font-weight: 950;
}

.mam-assurance strong {
  margin-top: 10px;
  color: var(--mam-navy);
}

.mam-assurance p {
  margin: 5px 0 0;
  color: var(--mam-muted);
  font-size: 11px;
}

.mam-assurance a {
  color: var(--mam-blue);
}

@media (max-width: 1020px) {
  .mam-nav {
    display: none;
  }

  .mam-hero-grid,
  .mam-pricing-intro,
  .mam-section-intro {
    grid-template-columns: 1fr;
  }

  .mam-hero-grid {
    padding-top: 56px;
  }

  .mam-listing-stage {
    width: min(580px, 100%);
    margin: auto;
  }

  .mam-pricing-grid,
  .mam-steps-panel,
  .mam-reach,
  .mam-faq {
    grid-template-columns: 1fr;
  }

  .mam-section-intro,
  .mam-pricing-intro {
    gap: 15px;
  }

  .mam-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mam-form-shell {
    grid-template-columns: 230px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .mam-header {
    min-height: 70px;
    padding: 11px 17px;
  }

  .mam-header-cta {
    display: none;
  }

  .mam-brand {
    font-size: 14px;
  }

  .mam-hero-grid {
    width: min(100% - 30px, 1300px);
    grid-template-columns: 1fr;
    padding-bottom: 65px;
  }

  .mam-hero-copy h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .mam-offer-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .mam-listing-stage {
    min-height: 450px;
  }

  .mam-listing-card {
    inset: 30px 4px 50px;
    padding: 21px;
  }

  .mam-listing-stripe {
    margin: -21px -21px 21px;
  }

  .mam-outcomes {
    flex-wrap: wrap;
    gap: 8px 17px;
    font-size: 10px;
  }

  .mam-section {
    width: min(100% - 30px, 1280px);
  }

  .mam-benefit-grid {
    grid-template-columns: 1fr;
  }

  .mam-benefit-card {
    min-height: 235px;
  }

  .mam-pricing {
    padding-right: 15px;
    padding-left: 15px;
  }

  .mam-price-choices {
    flex-wrap: wrap;
  }

  .mam-price-choices > div > strong {
    font-size: 66px;
  }

  .mam-step-list li {
    padding: 24px;
  }

  .mam-footer {
    grid-template-columns: 1fr;
    padding-bottom: 84px;
    text-align: center;
  }

  .mam-footer p,
  .mam-footer > div {
    justify-content: center;
    text-align: center;
  }

  .mam-mobile-claim {
    display: flex;
  }

  .mam-claim-header .mam-text-link {
    font-size: 10px;
  }

  .mam-claim-hero {
    padding-bottom: 90px;
  }

  .mam-form-section {
    padding: 0 12px 55px;
  }

  .mam-form-shell {
    grid-template-columns: 1fr;
    margin-top: -52px;
  }

  .mam-form-sidebar {
    padding: 20px;
  }

  .mam-form-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 4px 0 0;
  }

  .mam-form-progress li {
    display: flex;
    min-height: auto;
    align-items: center;
    justify-content: center;
  }

  .mam-form-progress li::after,
  .mam-form-progress li > div,
  .mam-form-help,
  .mam-form-sidebar > p {
    display: none;
  }

  .mam-form-main {
    padding: 29px 20px;
  }

  .mam-field.mam-half,
  .mam-field.mam-third,
  .mam-field.mam-quarter,
  .mam-field.mam-two-thirds {
    grid-column: span 12;
  }

  .mam-choice-three,
  .mam-plan-grid {
    grid-template-columns: 1fr;
  }

  .mam-choice-grid label {
    min-height: 100px;
  }

  .mam-assurance {
    grid-template-columns: 1fr;
  }

  .mam-assurance > div {
    border-right: 0;
    border-bottom: 1px solid var(--mam-line);
  }
}

@media (max-width: 430px) {
  .mam-listing-signals {
    grid-template-columns: 1fr;
  }

  .mam-listing-stage {
    min-height: 610px;
  }

  .mam-pricing-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .mam-price-choices > em {
    display: none;
  }

  .mam-launch-prices {
    grid-template-columns: 1fr;
  }

  .mam-claim-offer {
    align-items: flex-start;
    flex-direction: column;
  }
}
