#system360-mutuus-public {
  --navy: #1e2e5f;
  --navy-deep: #141e44;
  --navy-soft: #3c4b78;
  --green: #97bd3d;
  --green-deep: #78982d;
  --green-pale: #eef6dc;
  --ink: #253354;
  --muted: #72809d;
  --line: #dfe5ef;
  --line-soft: #edf1f7;
  --page: #f4f7fb;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

body.system360-mutuus-public-standalone {
  margin: 0;
  background: #f4f7fb;
}

#system360-mutuus-public * {
  box-sizing: border-box;
}

#system360-mutuus-public button,
#system360-mutuus-public input,
#system360-mutuus-public select {
  font: inherit;
}

#system360-mutuus-public button {
  cursor: pointer;
}

.s360m-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2, .72, .18, 1);
  will-change: opacity, transform;
}

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

.s360m-quote-flow,
.s360m-quote-result,
.s360m-learn-compare,
.s360m-learn-deductible,
.s360m-learn-market,
.s360m-learn-metlife,
.s360m-learn-includes,
.s360m-learn-day,
.s360m-learn-event,
.s360m-learn-app,
.s360m-learn-conditions,
.s360m-learn-sum,
.s360m-learn-press,
.s360m-learn-videos,
.s360m-learn-payment,
.s360m-learn-faq,
.s360m-learn-next {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.s360m-event-step.s360m-reveal,
.s360m-learn-benefits span.s360m-reveal,
.s360m-include-card.s360m-reveal,
.s360m-day-card.s360m-reveal,
.s360m-pay-card.s360m-reveal,
.s360m-invoice-card.s360m-reveal {
  transform: translateY(20px) scale(.985);
}

.s360m-event-step.s360m-reveal.is-visible,
.s360m-learn-benefits span.s360m-reveal.is-visible,
.s360m-include-card.s360m-reveal.is-visible,
.s360m-day-card.s360m-reveal.is-visible,
.s360m-pay-card.s360m-reveal.is-visible,
.s360m-invoice-card.s360m-reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .s360m-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.s360m-stripe {
  display: grid;
  grid-template-columns: 1fr 180px;
  height: 6px;
}

.s360m-stripe span:first-child { background: var(--navy); }
.s360m-stripe span:last-child { background: var(--green); }

.s360m-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.s360m-header-inner,
.s360m-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.s360m-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.s360m-logo {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.s360m-logo-img {
  display: block;
  width: 204px;
  max-width: min(52vw, 204px);
  height: auto;
  object-fit: contain;
}

.s360m-header.is-quote-result .s360m-header-inner {
  width: min(1280px, calc(100% - 32px));
  gap: 16px;
  min-height: 72px;
  justify-content: flex-start;
}

.s360m-header.is-quote-result .s360m-logo {
  flex: 0 0 196px;
  justify-content: flex-start;
  margin-left: 0;
  overflow: visible;
}

.s360m-header.is-quote-result .s360m-logo-img {
  width: 186px;
  max-width: none;
}

.s360m-header.is-quote-result .s360m-proof {
  flex: 1 1 auto;
  justify-content: flex-start;
  gap: 14px;
}

.s360m-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s360m-proof {
  flex: 1;
  justify-content: flex-end;
  gap: 18px;
  min-width: 0;
}

.s360m-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 0;
  flex: 0 0 auto;
}

.s360m-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 31px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 9px;
  font-weight: 900 !important;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.s360m-header-btn[data-action="render-quote"] {
  font-size: 8.5px;
}

.s360m-header-btn strong {
  font: inherit;
  font-weight: 900 !important;
}

.s360m-header-btn.is-green {
  border-color: var(--green);
  color: var(--green-deep);
}

.s360m-header-btn[data-action="render-quote"]:hover,
.s360m-header-btn[data-action="render-quote"]:focus-visible,
.s360m-header-actions .s360m-header-btn:not(.is-green):hover,
.s360m-header-actions .s360m-header-btn:not(.is-green):focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 46, 95, .18);
  transform: translateY(-1px);
}

.s360m-header-btn.is-green:hover,
.s360m-header-btn.is-green:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(151, 189, 61, .2);
  transform: translateY(-1px);
}

.s360m-header-btn svg {
  width: 14px;
  height: 14px;
}

.s360m-header.is-quote-result .s360m-official-title {
  min-height: 36px;
  padding-left: 12px;
  font-size: 16px;
}

.s360m-header.is-quote-result .s360m-check {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  font-size: 12px;
}

.s360m-header.is-quote-result .s360m-proof-pill {
  min-height: 30px;
  gap: 6px;
  padding: 0 9px;
  font-size: 10px;
}

.s360m-official-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding-left: 22px;
  border-left: 1px solid #d8deea;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.s360m-official-title strong {
  font-weight: 900;
}

.s360m-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  background: #2387f5;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.s360m-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #dcebb8;
  border-radius: 999px;
  background: #f8fcec;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.s360m-proof-pill strong {
  color: var(--green-deep);
  font-weight: 900;
}

.s360m-proof-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #9bd31f;
}

.s360m-proof-sep {
  width: 1px;
  height: 18px;
  background: #cfd8e7;
}

.s360m-nav a,
.s360m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.s360m-nav a {
  min-height: 38px;
  font-size: 12px;
  text-transform: uppercase;
}

.s360m-header.is-quote-result .s360m-header-btn,
.s360m-header.is-quote-result .s360m-nav a.s360m-header-btn {
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 9px;
  font-weight: 900 !important;
  line-height: 1;
}

.s360m-header.is-quote-result .s360m-header-btn[data-action="render-quote"] {
  font-size: 8.5px;
}

.s360m-header.is-quote-result .s360m-header-btn.is-green,
.s360m-header.is-quote-result .s360m-nav a.s360m-header-btn.is-green {
  border-color: var(--green);
  color: var(--green-deep);
}

.s360m-header.is-quote-result .s360m-header-btn[data-action="render-quote"]:hover,
.s360m-header.is-quote-result .s360m-header-btn[data-action="render-quote"]:focus-visible {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(30, 46, 95, .18);
  transform: translateY(-1px);
}

.s360m-header.is-quote-result .s360m-header-btn.is-green:hover,
.s360m-header.is-quote-result .s360m-nav a.s360m-header-btn.is-green:hover,
.s360m-header.is-quote-result .s360m-header-btn.is-green:focus-visible,
.s360m-header.is-quote-result .s360m-nav a.s360m-header-btn.is-green:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(151, 189, 61, .2);
  transform: translateY(-1px);
}

.s360m-nav .is-primary,
.s360m-btn-primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--navy-deep);
}

.s360m-btn-primary[data-action="modal-next"],
.s360m-btn-primary[data-action="show-quote-result"],
.s360m-btn-primary[data-action="open-contract-modal"] {
  font-weight: 900 !important;
  transition: color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.s360m-floating-quote[data-action="open-quote-modal"] strong,
.s360m-floating-quote strong,
.s360m-start-quote strong,
.s360m-btn-primary[data-main-learn-button] strong,
.s360m-btn-primary[data-action="modal-next"] strong,
.s360m-btn-primary[data-action="show-quote-result"] strong,
.s360m-btn-primary[data-action="open-contract-modal"] strong {
  font: inherit;
  font-weight: 900 !important;
}

.s360m-btn-primary[data-action="modal-next"]:hover,
.s360m-btn-primary[data-action="modal-next"]:focus-visible,
.s360m-btn-primary[data-action="show-quote-result"]:hover,
.s360m-btn-primary[data-action="show-quote-result"]:focus-visible,
.s360m-btn-primary[data-action="open-contract-modal"]:hover,
.s360m-btn-primary[data-action="open-contract-modal"]:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.s360m-btn-primary[data-main-learn-button] {
  font-weight: 900 !important;
  transition: color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.s360m-btn-primary[data-main-learn-button]:hover,
.s360m-btn-primary[data-main-learn-button]:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.s360m-btn-navy {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.s360m-btn svg {
  width: 18px;
  height: 18px;
}

#system360-mutuus-public .s360m-btn strong {
  font: inherit;
  font-weight: 900 !important;
}

.s360m-btn-wide {
  grid-column: 1 / -1;
}

@media (max-width: 1320px) {
  .s360m-header.is-quote-result .s360m-header-inner {
    width: min(100% - 24px, 1280px);
    gap: 10px;
  }

  .s360m-header.is-quote-result .s360m-logo {
    flex-basis: 186px;
    margin-left: 0;
  }

  .s360m-header.is-quote-result .s360m-logo-img {
    width: 176px;
  }

  .s360m-header.is-quote-result .s360m-proof {
    gap: 8px;
  }

  .s360m-header.is-quote-result .s360m-header-actions {
    gap: 7px;
  }

  .s360m-header.is-quote-result .s360m-header-btn,
  .s360m-header.is-quote-result .s360m-nav a.s360m-header-btn {
    min-height: 30px;
    padding: 0 10px;
    font-size: 8.75px;
  }

  .s360m-header.is-quote-result .s360m-header-btn[data-action="render-quote"] {
    font-size: 8.25px;
  }

  .s360m-header.is-quote-result .s360m-official-title {
    min-height: 34px;
    padding-left: 10px;
    font-size: 15px;
    gap: 7px;
  }

  .s360m-header.is-quote-result .s360m-proof-pill {
    min-height: 29px;
    padding: 0 8px;
    font-size: 9.5px;
  }

  .s360m-header.is-quote-result .s360m-proof-sep {
    height: 14px;
  }
}

.s360m-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 46, 95, .96), rgba(20, 30, 68, .96));
  color: #fff;
}

.s360m-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: 36px;
  align-items: center;
  min-height: 520px;
  padding: 56px 0 42px;
}

.s360m-eyebrow,
.s360m-section-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-left: 4px solid var(--green);
  background: rgba(151, 189, 61, .12);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.s360m-hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  font-weight: 900;
}

.s360m-hero h1 em {
  color: var(--green);
  font-style: normal;
}

.s360m-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.s360m-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.s360m-quote-page {
  background: #f4f7fb;
}

.s360m-quote-hero {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  background:
    radial-gradient(circle at 48% 12%, rgba(151, 189, 61, .1), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, #eef2f8 100%);
}

.s360m-quote-hero-inner {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 530px;
  padding: 34px 0 52px;
  text-align: center;
}

.s360m-hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 22px;
  border-radius: 999px;
  background: #eef7d8;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-quote-hero h1 {
  display: grid;
  justify-items: center;
  gap: 3px;
  max-width: 1180px;
  margin: 26px auto 42px;
  color: var(--navy);
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

.s360m-quote-hero h1 span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.s360m-quote-hero h1 strong {
  color: var(--green-deep);
  font-weight: 900;
}

.s360m-underlined {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.s360m-underlined::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  z-index: -1;
  height: 9px;
  background: rgba(151, 189, 61, .28);
}

.s360m-issuer-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 26px;
  border-left: 3px solid var(--green);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(31, 48, 91, .07);
  white-space: nowrap;
}

.s360m-issuer-dot {
  color: var(--navy);
}

.s360m-issuer-box strong {
  color: var(--green-deep);
}

.s360m-quote-hero p {
  margin: 22px 0 0;
  color: var(--navy-soft);
  font-size: 20px;
  font-weight: 600;
}

.s360m-quote-hero p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-hex {
  position: absolute;
  width: 128px;
  height: 112px;
  opacity: .72;
  pointer-events: none;
}

.s360m-hex::before,
.s360m-hex::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.s360m-hex::before {
  border: 0;
  background: #d9e0eb;
}

.s360m-hex::after {
  inset: 2px;
  background: #f4f7fb;
}

.s360m-hex-left {
  left: -34px;
  top: 250px;
}

.s360m-hex-right {
  right: 46px;
  top: 70px;
  width: 150px;
  height: 130px;
}

.s360m-hex-right::before {
  background: #d5e7aa;
}

.s360m-hex-right::after {
  inset: 3px;
  background: #f4f7fb;
}

.s360m-floating-quote {
  position: fixed;
  left: 28px;
  bottom: 102px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900 !important;
  box-shadow: 0 18px 34px rgba(151, 189, 61, .28);
  animation: s360m-floating-quote-drift 3.2s ease-in-out infinite;
  transition: color .18s ease, opacity .22s ease, transform .22s ease, visibility .22s ease;
}

@keyframes s360m-floating-quote-drift {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

.s360m-floating-quote[data-action="open-quote-modal"]:hover,
.s360m-floating-quote[data-action="open-quote-modal"]:focus-visible,
.s360m-floating-learn:hover,
.s360m-floating-learn:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.s360m-floating-quote.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transform: translateY(10px);
}

.s360m-floating-quote svg {
  width: 16px;
  height: 16px;
}

.s360m-floating-learn {
  min-width: 182px;
}

.s360m-quote-flow {
  padding: 54px 0 132px;
  background: #f4f7fb;
}

.s360m-flow-head {
  text-align: center;
  margin-bottom: 50px;
}

.s360m-flow-head span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-flow-head h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 900;
}

.s360m-stepper {
  display: grid;
  gap: 0;
  width: min(720px, 100%);
  margin: 0 auto;
}

.s360m-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 46px;
  padding-bottom: 38px;
}

.s360m-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 64px;
  bottom: -18px;
  width: 2px;
  background: var(--green);
}

.s360m-step-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 3px solid var(--green);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
}

.s360m-step-body {
  min-width: 0;
  padding-top: 13px;
}

.s360m-step-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 900;
}

.s360m-step-body p {
  margin: 0 0 13px;
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-step-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 600;
}

.s360m-step-body li {
  display: flex;
  gap: 10px;
}

.s360m-step-body li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--green);
}

.s360m-step-body .s360m-step-input-list {
  gap: 18px;
}

.s360m-step-body .s360m-step-input-list li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  gap: 10px;
}

.s360m-step-body .s360m-step-input-list li::before {
  grid-column: 1;
  grid-row: 1;
}

.s360m-step-body .s360m-step-input-list li > span {
  display: block;
  grid-column: 2;
  min-width: 0;
}

.s360m-step-inline-fields {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(440px, 100%);
  margin-left: 17px;
}

.s360m-step-inline-fields-name {
  grid-template-columns: minmax(0, 1fr);
}

.s360m-step-inline-fields label {
  display: grid;
  gap: 6px;
}

.s360m-step-inline-fields small {
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.s360m-step-inline-fields input,
.s360m-step-inline-fields select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
  font-size: 13px;
  font-weight: 700;
}

.s360m-step-inline-fields input:focus,
.s360m-step-inline-fields select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(151, 189, 61, .18);
}

.s360m-form.s360m-step-form {
  padding: 0;
  max-width: 720px;
}

.s360m-start-area {
  display: grid;
  justify-items: center;
  margin-top: 54px;
}

.s360m-down-arrows {
  display: grid;
  justify-items: center;
  gap: 2px;
  margin-bottom: 14px;
}

.s360m-down-arrows span {
  display: block;
  width: 11px;
  height: 11px;
  border-right: 2px solid rgba(151, 189, 61, .7);
  border-bottom: 2px solid rgba(151, 189, 61, .7);
  transform: rotate(45deg);
  animation: s360m-arrow-bounce 1.35s ease-in-out infinite;
}

.s360m-down-arrows span:nth-child(2) {
  border-color: rgba(151, 189, 61, .9);
  animation-delay: .12s;
}

.s360m-down-arrows span:nth-child(3) {
  border-color: var(--green-deep);
  animation-delay: .24s;
}

@keyframes s360m-arrow-bounce {
  0%, 100% {
    opacity: .35;
    transform: translateY(-3px) rotate(45deg);
  }
  45% {
    opacity: 1;
    transform: translateY(4px) rotate(45deg);
  }
}

.s360m-start-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 224px;
  min-height: 66px;
  border-radius: 5px;
  background: var(--green);
  border: 0;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900 !important;
  box-shadow: 0 18px 34px rgba(151, 189, 61, .34);
  transition: color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.s360m-start-quote:hover,
.s360m-start-quote:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.s360m-start-quote svg {
  width: 20px;
  height: 20px;
}

.s360m-trust-notes {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin-top: 30px;
  text-align: center;
}

.s360m-trust-notes p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #68759a;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-trust-notes svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--green-deep);
  margin-top: 1px;
}

.s360m-trust-notes strong {
  color: #5a6689;
  font-weight: 900;
}

.s360m-quote-form-panel {
  width: min(820px, 100%);
  margin: 68px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(31, 48, 91, .1);
  scroll-margin-top: 110px;
}

.s360m-quote-result {
  display: none;
  padding: 64px 0 132px;
  background: #f4f7fb;
}

.s360m-quote-result.is-visible {
  display: block;
  animation: s360m-result-in .42s ease both;
}

@keyframes s360m-result-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.s360m-quote-result-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.s360m-success-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(151, 189, 61, .3);
}

.s360m-quote-result h2 {
  margin: 24px 0 12px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.s360m-quote-result h2 strong {
  color: var(--green-deep);
}

.s360m-quote-result > .s360m-container > p,
.s360m-quote-result-inner > p {
  max-width: 620px;
  margin: 0;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}

.s360m-quote-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 34px;
}

.s360m-quote-result-actions .s360m-btn {
  min-width: 220px;
  text-transform: uppercase;
  font-weight: 900 !important;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.s360m-quote-result-actions .s360m-btn strong {
  font: inherit;
  font-weight: 900 !important;
}

.s360m-quote-result-actions .s360m-btn[data-action="quote-email"]:hover,
.s360m-quote-result-actions .s360m-btn[data-action="quote-email"]:focus-visible,
.s360m-quote-result-actions .s360m-btn[data-action="quote-whatsapp"]:hover,
.s360m-quote-result-actions .s360m-btn[data-action="quote-whatsapp"]:focus-visible {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green-deep);
  box-shadow: 0 10px 22px rgba(151, 189, 61, .14);
  transform: translateY(-1px);
}

.s360m-quote-result-actions .s360m-btn[data-action="pdf"]:hover,
.s360m-quote-result-actions .s360m-btn[data-action="pdf"]:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--navy-deep);
  box-shadow: 0 10px 22px rgba(151, 189, 61, .24);
  transform: translateY(-1px);
}

.s360m-quote-preview {
  width: min(820px, 100%);
  margin-top: 26px;
  border: 1px solid var(--line-soft);
  background: #fff;
  text-align: left;
  box-shadow: 0 28px 80px rgba(31, 48, 91, .11);
}

.s360m-quote-preview-stripe {
  display: grid;
  grid-template-columns: 1fr 180px;
  height: 6px;
}

.s360m-quote-preview-stripe span:first-child {
  background: var(--navy);
}

.s360m-quote-preview-stripe span:last-child {
  background: var(--green);
}

.s360m-quote-preview-head,
.s360m-quote-preview-title,
.s360m-quote-preview-grid {
  padding-left: 48px;
  padding-right: 48px;
}

.s360m-quote-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 44px;
}

.s360m-quote-preview-head img {
  width: 142px;
  height: auto;
}

.s360m-quote-preview-head div {
  text-align: right;
  color: var(--navy);
}

.s360m-quote-preview small {
  display: block;
  color: #7782a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.s360m-quote-preview-head strong {
  display: block;
  margin: 3px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.s360m-quote-preview-head span {
  color: #7782a0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.s360m-quote-preview-title {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 3px solid var(--navy);
}

.s360m-quote-preview-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
}

.s360m-quote-preview-title h3 strong {
  color: var(--green-deep);
}

.s360m-quote-preview-title p {
  margin: 8px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 800;
}

.s360m-quote-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 48px;
}

.s360m-quote-preview-grid > div {
  border-left: 3px solid var(--green);
  background: #f8fafc;
  padding: 14px 18px;
}

.s360m-quote-preview-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.s360m-formal-quote {
  width: min(820px, 100%);
  margin-top: 26px;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--navy);
  text-align: left;
  box-shadow: 0 28px 80px rgba(31, 48, 91, .11);
  overflow: hidden;
}

.s360m-fq-stripe {
  display: grid;
  grid-template-columns: 1fr 180px;
  height: 6px;
}

.s360m-fq-stripe span:first-child { background: var(--navy); }
.s360m-fq-stripe span:last-child { background: var(--green); }

.s360m-fq-head,
.s360m-fq-title,
.s360m-fq-client,
.s360m-fq-section {
  padding-left: 46px;
  padding-right: 46px;
}

.s360m-fq-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 46px;
  padding-bottom: 26px;
}

.s360m-fq-head::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 8px;
  width: 118px;
  height: 118px;
  border: 2px solid rgba(151, 189, 61, .28);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0 50%);
}

.s360m-fq-head img {
  width: 132px;
  height: auto;
}

.s360m-fq-head > div {
  position: relative;
  z-index: 1;
  text-align: right;
}

.s360m-formal-quote small,
.s360m-fq-section h4 {
  color: #72809d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-fq-head strong {
  display: block;
  margin: 4px 0 3px;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .02em;
}

.s360m-fq-head span {
  color: #7d87a2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.s360m-fq-title {
  padding-top: 26px;
  border-top: 3px solid var(--navy);
}

.s360m-fq-title::before {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: -29px;
  margin-bottom: 29px;
  background: var(--green);
}

.s360m-fq-title h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.s360m-fq-title h3 strong {
  color: var(--green-deep);
}

.s360m-fq-title p {
  margin: 8px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 800;
}

.s360m-fq-client {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.s360m-fq-client > div:first-child {
  border-left: 3px solid var(--green);
  background: #fbfcff;
  padding: 20px 24px;
}

.s360m-fq-client > div:last-child {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 8px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy);
  padding: 12px 14px;
}

.s360m-fq-client > div:last-child span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: var(--navy);
  color: #fff;
}

.s360m-fq-client > div:last-child small {
  white-space: nowrap;
}

.s360m-fq-client svg {
  width: 17px;
  height: 17px;
}

.s360m-fq-client strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
}

.s360m-fq-section {
  padding-top: 6px;
  padding-bottom: 28px;
}

.s360m-fq-section h4 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--navy);
}

.s360m-fq-section h4 span {
  width: 22px;
  height: 2px;
  background: var(--green);
}

.s360m-fq-green {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: var(--green);
  color: #fff;
  overflow: hidden;
}

.s360m-fq-green::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 180px;
  background: rgba(84, 112, 26, .15);
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 0 100%);
}

.s360m-fq-green > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.s360m-fq-green svg {
  width: 24px;
  height: 24px;
}

.s360m-fq-green small {
  color: #fff;
}

.s360m-fq-green strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  white-space: nowrap;
}

.s360m-fq-green b {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
}

.s360m-fq-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
}

.s360m-fq-benefits > div {
  min-height: 84px;
  padding: 15px 18px;
  border-top: 2px solid var(--green);
}

.s360m-fq-benefits > div + div {
  border-left: 1px solid var(--line-soft);
}

.s360m-fq-benefits strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.28;
  font-weight: 900;
}

.s360m-fq-benefits b {
  color: var(--green-deep);
}

.s360m-fq-plans > p {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--navy-soft);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.s360m-fq-plans > p strong {
  color: var(--green-deep);
}

.s360m-fq-plan {
  margin-top: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.s360m-fq-plan-head {
  padding: 20px 26px 18px;
  background: var(--navy);
  color: #fff;
}

.s360m-fq-plan-head h4 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.s360m-fq-plan-head p {
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.s360m-fq-plan-head > div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  font-style: italic;
}

.s360m-fq-plan-head > div p {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.s360m-fq-plan-head > div strong {
  display: inline;
  color: #fff;
  font-weight: 900;
}

.s360m-fq-plan-head > div span {
  display: grid;
  place-items: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(151, 189, 61, .22);
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}

.s360m-fq-for {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 22px;
  background: var(--green-pale);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.s360m-fq-for svg {
  width: 22px;
  height: 22px;
  color: var(--green-deep);
}

.s360m-fq-for span {
  color: var(--green-deep);
}

.s360m-fq-table-head,
.s360m-fq-row {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) .55fr .7fr .8fr;
  gap: 16px;
  align-items: center;
}

.s360m-fq-table-head {
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
  color: #72809d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-fq-row {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--navy);
}

.s360m-fq-row strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.s360m-fq-row strong span {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 10px;
}

.s360m-fq-row small {
  margin-top: 4px;
  color: var(--navy-soft);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.s360m-fq-row b {
  text-align: right;
  font-size: 13px;
  font-weight: 900;
}

.s360m-fq-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
}

.s360m-fq-subtotal span,
.s360m-fq-payments small {
  color: #72809d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-fq-subtotal strong {
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.s360m-fq-payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.s360m-fq-payments > div {
  min-height: 154px;
  padding: 24px 28px;
}

.s360m-fq-payments > div + div {
  border-left: 1px solid var(--line);
}

.s360m-fq-payment-annual {
  border-left: 3px solid var(--green);
  background: #fbfff2;
}

.s360m-fq-payment-annual small {
  color: var(--green-deep);
}

.s360m-fq-payments strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.s360m-fq-payment-annual > strong {
  color: var(--green-deep);
}

.s360m-fq-payments strong span {
  font-size: 13px;
  color: #72809d;
}

.s360m-fq-payments p {
  margin: 8px 0 0;
  color: var(--navy-soft);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.s360m-fq-save {
  display: inline-block;
  margin-top: 12px !important;
  padding: 7px 12px;
  background: var(--green);
  color: var(--navy) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.s360m-fq-bonus {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px !important;
  max-width: 360px;
  padding: 11px 14px;
  border-radius: 3px;
  background: var(--navy);
  color: #fff !important;
  font-size: 10px !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
}

.s360m-fq-bonus b {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .08em;
}

.s360m-fq-bonus span {
  display: block;
}

.s360m-fq-bonus strong {
  display: inline;
  margin: 0;
  color: var(--green);
  font-size: inherit;
  line-height: inherit;
}

.s360m-fq-footer-note {
  margin: 0 46px 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 11px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.45;
}

.s360m-quote-learn-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  width: min(820px, 100%);
  margin: 82px auto 8px;
  text-align: center;
}

.s360m-quote-learn-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 900;
}

.s360m-quote-learn-cta em {
  font-style: italic;
}

.s360m-quote-learn-cta .s360m-btn {
  min-width: 304px;
  min-height: 67px;
  box-shadow: 0 18px 34px rgba(151, 189, 61, .28);
  text-transform: uppercase;
}

.s360m-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(25, 36, 70, .68);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.s360m-quote-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.s360m-quote-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-top: 5px solid var(--green);
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 19, 43, .32);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.s360m-quote-modal.is-open .s360m-quote-modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.s360m-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #f1f4fa;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.s360m-modal-close:hover,
.s360m-modal-close:focus-visible {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(30, 46, 95, .2);
}

.s360m-modal-head {
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--line-soft);
}

.s360m-modal-head h2 {
  margin: 0 44px 6px 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 900;
}

.s360m-modal-head p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-modal-body {
  padding: 28px 36px 32px;
}

.s360m-modal-progress {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 24px;
}

.s360m-modal-progress span {
  height: 3px;
  border-radius: 999px;
  background: #dfe4ee;
}

.s360m-modal-progress span:first-child,
.s360m-quote-modal[data-step="2"] .s360m-modal-progress span {
  background: var(--green);
}

.s360m-modal-steps {
  display: grid;
  overflow: hidden;
}

.s360m-modal-step {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .24s ease, transform .28s ease;
}

.s360m-modal-step.is-active {
  opacity: 1;
  transform: translateX(0);
}

.s360m-modal-step.is-exiting {
  opacity: 0;
  transform: translateX(-18px);
}

.s360m-quote-modal[data-step-direction="back"] .s360m-modal-step {
  transform: translateX(-18px);
}

.s360m-quote-modal[data-step-direction="back"] .s360m-modal-step.is-active {
  transform: translateX(0);
}

.s360m-quote-modal[data-step-direction="back"] .s360m-modal-step.is-exiting {
  transform: translateX(18px);
}

.s360m-modal-step[hidden] {
  display: none;
}

.s360m-modal-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-modal-body h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}

.s360m-modal-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-modal-note strong {
  color: var(--green-deep);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-modal-help {
  margin: 16px 0 24px;
}

.s360m-modal-help > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 5px;
  cursor: pointer;
}

.s360m-modal-help > button span {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
}

.s360m-modal-help-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition: grid-template-rows .32s ease, margin-top .32s ease, opacity .24s ease, transform .32s ease;
  margin-top: 0;
}

.s360m-modal-help.is-open .s360m-modal-help-panel {
  grid-template-rows: 1fr;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.s360m-modal-help-panel > div {
  min-height: 0;
  overflow: hidden;
  padding: 14px 16px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
  color: var(--navy);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.s360m-modal-help-panel strong {
  color: var(--green-deep);
  font-weight: 900;
}

.s360m-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

.s360m-modal-actions .s360m-btn,
.s360m-modal-form .s360m-actions .s360m-btn {
  min-width: 146px;
}

.s360m-modal-form {
  padding: 0;
}

.s360m-share-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(25, 36, 70, .68);
  backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.s360m-share-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.s360m-share-dialog {
  position: relative;
  width: min(430px, 100%);
  padding: 30px;
  border-top: 5px solid var(--green);
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 19, 43, .32);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.s360m-share-modal.is-open .s360m-share-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.s360m-contract-modal {
  position: fixed;
  inset: 0;
  z-index: 84;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(25, 36, 70, .76);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.s360m-online-contract-modal {
  position: fixed;
  inset: 0;
  z-index: 86;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(25, 36, 70, .76);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.s360m-advisor-phone-modal {
  position: fixed;
  inset: 0;
  z-index: 86;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(25, 36, 70, .76);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.s360m-contract-modal.is-open,
.s360m-online-contract-modal.is-open,
.s360m-advisor-phone-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.s360m-contract-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 36px 22px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 19, 43, .35);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.s360m-online-contract-dialog {
  position: relative;
  width: min(500px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 34px 30px 28px;
  border-top: 5px solid var(--green);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(11, 19, 43, .35);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.s360m-advisor-phone-dialog {
  position: relative;
  width: min(430px, 100%);
  padding: 34px 30px 28px;
  border-top: 5px solid var(--green);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 80px rgba(11, 19, 43, .35);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .24s ease, transform .24s ease;
}

.s360m-contract-modal.is-open .s360m-contract-dialog,
.s360m-online-contract-modal.is-open .s360m-online-contract-dialog,
.s360m-advisor-phone-modal.is-open .s360m-advisor-phone-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.s360m-contract-head {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 28px 26px;
}

.s360m-contract-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-contract-head i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  font-style: normal;
}

.s360m-contract-head h2 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.05;
  font-weight: 900;
}

.s360m-contract-head h2 strong {
  color: var(--green-deep);
}

.s360m-contract-head p {
  max-width: 430px;
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-contract-head b {
  color: var(--navy);
}

.s360m-contract-options {
  display: grid;
  gap: 10px;
}

.s360m-contract-option {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.s360m-contract-option:hover,
.s360m-contract-option:focus-visible {
  border-color: rgba(151, 189, 61, .75);
  box-shadow: 0 16px 32px rgba(31, 48, 91, .10);
  transform: translateY(-1px);
}

.s360m-contract-icon,
.s360m-contract-arrow {
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.s360m-contract-icon {
  width: 52px;
  height: 52px;
  background: #f1f3f7;
  color: var(--navy);
}

.s360m-contract-option:nth-child(3) .s360m-contract-icon {
  background: var(--green-pale);
  color: var(--green-deep);
}

.s360m-contract-icon svg {
  width: 24px;
  height: 24px;
}

.s360m-contract-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.s360m-contract-copy strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.s360m-contract-copy > span {
  color: var(--navy-soft);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.s360m-contract-copy small {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #72809d;
  font-size: 11px;
  font-weight: 900;
}

.s360m-contract-copy em {
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-style: normal;
  text-transform: uppercase;
}

.s360m-contract-arrow {
  width: 34px;
  height: 34px;
  background: #f1f3f7;
  color: var(--navy-soft);
}

.s360m-contract-arrow svg {
  width: 17px;
  height: 17px;
}

.s360m-contract-foot {
  margin: 20px 0 0;
  color: var(--navy-soft);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.s360m-contract-foot strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-online-contract-head {
  margin: 0 42px 24px 0;
}

.s360m-online-contract-head > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.s360m-online-contract-head i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.s360m-online-contract-head h2 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
}

.s360m-online-contract-head p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.s360m-online-contract-form {
  display: grid;
  gap: 14px;
}

.s360m-online-note {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 14px;
  border-left: 3px solid var(--green);
  background: var(--green-pale);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.s360m-online-note svg {
  width: 20px;
  height: 20px;
  color: var(--green-deep);
}

.s360m-online-link-box {
  display: none;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fbfcff;
}

.s360m-online-link-box.is-visible {
  display: grid;
}

.s360m-online-link-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
}

.s360m-online-link-box > div,
.s360m-online-contract-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.s360m-online-contract-actions {
  align-items: center;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.s360m-advisor-phone-dialog > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.s360m-advisor-phone-dialog i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.s360m-advisor-phone-dialog h2 {
  margin: 12px 36px 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
}

.s360m-advisor-phone-dialog p {
  margin: 0 0 18px;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.s360m-advisor-phone-dialog > strong {
  display: block;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}

.s360m-advisor-phone-dialog > div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.s360m-share-dialog h2 {
  margin: 0 42px 8px 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.12;
}

.s360m-share-dialog p {
  margin: 0 0 22px;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 700;
}

.s360m-share-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.s360m-modal-hidden-fields,
.s360m-modal-quote-result {
  display: none;
}

.s360m-modal-final-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.s360m-modal-back {
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.s360m-modal-final-actions .s360m-btn-primary {
  min-width: 220px;
  min-height: 44px;
}

.s360m-bottom.s360m-quote-bottom {
  border-top: 0;
  background: linear-gradient(180deg, #303b63 0%, #202b52 100%);
  color: #fff;
  backdrop-filter: none;
}

.s360m-quote-bottom .s360m-bottom-inner {
  width: min(680px, calc(100% - 32px));
  justify-content: center;
  gap: 22px;
  min-height: 64px;
}

.s360m-quote-bottom .s360m-bottom-inner > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.s360m-quote-bottom strong,
.s360m-quote-bottom span {
  display: inline;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.s360m-bottom.s360m-quote-bottom strong {
  color: #fff;
}

.s360m-bottom.s360m-quote-bottom span {
  color: var(--green);
}

.s360m-bottom.s360m-quote-bottom span::before {
  content: "\00b7";
  margin-right: 13px;
  color: rgba(255, 255, 255, .45);
}

.s360m-quote-bottom .s360m-btn-primary {
  border-color: #fff;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  min-height: 38px;
  min-width: 236px;
  padding: 0 20px 0 24px;
  font-size: 13px;
  text-transform: none;
  box-shadow: none;
  transition: border-color .22s ease, color .22s ease, background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.s360m-quote-bottom .s360m-btn-primary strong {
  color: inherit;
}

.s360m-quote-bottom .s360m-btn-primary[data-action="open-contract-modal"]:hover,
.s360m-quote-bottom .s360m-btn-primary[data-action="open-contract-modal"]:focus-visible {
  border-color: var(--navy);
  background: #fff;
  color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 46, 95, .72), 0 10px 22px rgba(11, 19, 43, .16);
  transform: translateY(-1px);
}

.s360m-quote-bottom .s360m-btn-primary svg {
  width: 15px;
  height: 15px;
}

.s360m-quote-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(5, 12, 32, .25);
  overflow: hidden;
}

.s360m-panel-head {
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.s360m-panel-head h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.s360m-panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.s360m-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.s360m-grid-2,
.s360m-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.s360m-field {
  display: grid;
  gap: 7px;
}

.s360m-field label {
  color: var(--navy-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.s360m-field input,
.s360m-field select,
.s360m-link-box input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  outline: none;
}

.s360m-field input:focus,
.s360m-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(151, 189, 61, .18);
}

.s360m-summary {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfe;
}

.s360m-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.s360m-summary small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.s360m-price {
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
}

.s360m-status {
  display: none;
  padding: 12px;
  border-radius: 8px;
  background: var(--green-pale);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.s360m-status.is-visible {
  display: block;
}

.s360m-status.is-error {
  background: #fff1f1;
  color: #9b1c1c;
}

.s360m-section {
  padding: 54px 0;
  background: #fff;
}

.s360m-section.is-soft {
  background: var(--page);
}

.s360m-section h2 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.s360m-section > .s360m-container > p,
.s360m-learn-copy {
  max-width: 780px;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.s360m-cards,
.s360m-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.s360m-card,
.s360m-plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.s360m-card {
  min-height: 164px;
}

.s360m-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--green-pale);
  color: var(--green-deep);
  margin-bottom: 14px;
}

.s360m-card-icon svg {
  width: 22px;
  height: 22px;
}

.s360m-card h3,
.s360m-plan h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.s360m-plan h3 {
  font-size: 22px;
}

.s360m-card p,
.s360m-plan p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.s360m-plan.is-featured {
  border-color: var(--green);
  box-shadow: inset 0 4px 0 var(--green);
}

.s360m-plan strong {
  color: var(--navy);
}

.s360m-plan ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 700;
}

.s360m-plan li {
  display: flex;
  gap: 8px;
}

.s360m-plan li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--green);
}

.s360m-link-box {
  display: none;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green-pale);
}

.s360m-link-box.is-visible {
  display: grid;
}

.s360m-bottom {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  border-top: 1px solid rgba(223, 229, 239, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.s360m-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
}

.s360m-bottom strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.s360m-bottom span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.s360m-learn-page {
  background: #fff;
}

.s360m-learn-hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 196px);
  padding: 76px 0 78px;
  background: linear-gradient(112deg, #1f2f68 0%, #17244f 58%, #24364f 100%);
  color: #fff;
}

.s360m-learn-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.s360m-learn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.s360m-learn-hero h1 {
  display: grid;
  justify-items: center;
  max-width: 940px;
  margin: 26px auto 22px;
  color: #fff;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-learn-hero h1 span {
  display: block;
  white-space: nowrap;
}

.s360m-learn-hero h1 em {
  display: inline-block;
  color: var(--green);
  font-style: normal;
  transform-origin: 50% 55%;
  animation: s360m-headline-flip 5.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes s360m-headline-flip {
  0%,
  18% {
    transform: rotate(0deg);
  }

  38%,
  58% {
    transform: rotate(180deg);
  }

  78%,
  100% {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .s360m-learn-hero h1 em {
    animation: none;
    transform: none;
  }

  .s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher,
  .s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher::before {
    animation: none;
  }
}

.s360m-learn-hero p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.s360m-learn-benefits {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 16px 64px;
  width: min(820px, 100%);
  margin: 34px auto 0;
  text-align: left;
}

.s360m-learn-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.s360m-learn-benefits i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.s360m-learn-benefits strong {
  color: var(--green);
  font-weight: 900;
}

.s360m-learn-question {
  width: min(720px, 100%);
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.s360m-learn-question em {
  color: rgba(255, 255, 255, .86);
  font-style: italic;
  font-weight: 700;
}

.s360m-learn-backed {
  padding: 42px 0 58px;
  background: #fff;
  text-align: center;
}

.s360m-learn-backed strong {
  display: block;
  margin-bottom: 24px;
  color: #7b86a8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-learn-backed div div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 48px;
  color: #929ab7;
  font-size: 20px;
  font-weight: 700;
}

.s360m-learn-backed hr {
  width: min(980px, 100%);
  height: 1px;
  margin: 42px auto 34px;
  border: 0;
  background: var(--line-soft);
}

.s360m-learn-backed .s360m-learn-authorities {
  gap: 34px 62px;
  color: #3c4b78;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .03em;
}

.s360m-learn-basic {
  padding: 78px 0 46px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  text-align: center;
}

.s360m-learn-basic span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-learn-basic span i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.s360m-learn-basic h2 {
  margin: 22px auto 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 900;
}

.s360m-learn-basic h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-learn-basic p {
  max-width: 760px;
  margin: 0 auto;
  color: #3c4b78;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-learn-basic p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-learn-compare {
  padding: 18px 0 84px;
  background: #fff;
}

.s360m-compare-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 468px) minmax(0, 468px);
  justify-content: center;
  gap: 100px;
}

.s360m-compare-card {
  min-height: 560px;
  padding: 34px 30px 28px;
}

.s360m-compare-traditional {
  border: 1px solid var(--line);
  border-top: 4px solid #6d789c;
  background: #fbfcff;
}

.s360m-compare-mutuus {
  background: linear-gradient(135deg, #98bf34 0%, #789e2c 100%);
  color: #fff;
  box-shadow: inset -70px 0 120px rgba(255, 255, 255, .12);
}

.s360m-compare-card header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.s360m-compare-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  border: 2px solid currentColor;
  color: #6d789c;
  font-size: 16px;
  font-weight: 900;
}

.s360m-compare-mutuus .s360m-compare-icon {
  color: #fff;
}

.s360m-compare-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
}

.s360m-compare-mutuus h3 {
  color: #fff;
}

.s360m-compare-card header p {
  margin: 10px 0 0;
  color: #6f7a9e;
  font-size: 11px;
  font-weight: 900;
}

.s360m-compare-mutuus header p {
  color: #fff;
}

.s360m-compare-row {
  padding: 16px 0;
  border-top: 1px solid rgba(109, 120, 156, .22);
}

.s360m-compare-mutuus .s360m-compare-row {
  border-top-color: rgba(255, 255, 255, .22);
}

.s360m-compare-row small {
  display: block;
  margin-bottom: 8px;
  color: #6d789c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-compare-mutuus .s360m-compare-row small {
  color: #fff;
}

.s360m-compare-row p {
  margin: 0;
  color: #334574;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-compare-row p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-compare-row b {
  display: inline;
  padding: 2px 4px;
  background: #fff0f0;
  color: #d62222;
  font-weight: 900;
}

.s360m-compare-mutuus .s360m-compare-row p,
.s360m-compare-mutuus .s360m-compare-row p strong {
  color: #fff;
}

.s360m-compare-mutuus mark {
  padding: 2px 5px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-weight: 900;
}

.s360m-compare-zero {
  color: #fff !important;
  font-size: 24px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

.s360m-compare-warning {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 3px solid #e33a3a;
  background: #fff1f1;
  color: #d62222;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.s360m-compare-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--navy);
  background: #f8fbef;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.s360m-compare-vs {
  position: absolute;
  left: 50%;
  top: 248px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  transform: translateX(-50%);
  border: 4px solid var(--green);
  border-radius: 999px;
  background: var(--navy);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.s360m-learn-deductible {
  min-height: 720px;
  padding: 78px 0 86px;
  background: linear-gradient(112deg, #213267 0%, #182653 62%, #24364f 100%);
  color: #fff;
}

.s360m-deductible-head {
  max-width: 850px;
  margin: 0 auto 52px;
  text-align: center;
}

.s360m-deductible-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.s360m-deductible-head > span i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.s360m-deductible-head h2 {
  margin: 22px auto 18px;
  color: #fff;
  font-size: clamp(38px, 4.1vw, 52px);
  line-height: 1.02;
  font-weight: 900;
}

.s360m-deductible-head h2 em {
  color: var(--green);
  font-style: normal;
}

.s360m-deductible-head p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.s360m-deductible-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 438px) minmax(0, 438px);
  justify-content: center;
  align-items: stretch;
  gap: 104px;
}

.s360m-deductible-card {
  min-height: 392px;
  padding: 32px 28px 30px;
  border-radius: 3px;
}

.s360m-deductible-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-deductible-card h3 {
  margin: 20px 0 28px;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.s360m-deductible-card dl {
  margin: 0;
}

.s360m-deductible-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.s360m-deductible-card dt,
.s360m-deductible-card dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.s360m-deductible-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.s360m-deductible-total strong {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.s360m-deductible-total b {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.s360m-deductible-card p {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.s360m-deductible-traditional {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .075);
  color: #fff;
}

.s360m-deductible-traditional > span {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.s360m-deductible-traditional dd {
  color: #fff;
}

.s360m-deductible-traditional .s360m-deductible-total b {
  color: #ff5d96;
}

.s360m-deductible-traditional p {
  color: rgba(255, 255, 255, .58);
}

.s360m-deductible-mutuus {
  background: var(--green);
  color: var(--navy-deep);
}

.s360m-deductible-mutuus > span {
  background: var(--navy);
  color: var(--green);
}

.s360m-deductible-mutuus h3,
.s360m-deductible-mutuus dt,
.s360m-deductible-mutuus dd,
.s360m-deductible-mutuus .s360m-deductible-total strong,
.s360m-deductible-mutuus .s360m-deductible-total b,
.s360m-deductible-mutuus p {
  color: var(--navy-deep);
}

.s360m-deductible-mutuus dl div {
  border-bottom-color: rgba(20, 30, 68, .2);
}

.s360m-deductible-mutuus .s360m-deductible-total {
  border-top: 2px solid var(--navy-deep);
}

.s360m-deductible-mutuus .s360m-deductible-total b {
  font-size: 48px;
}

.s360m-deductible-mutuus p {
  font-size: 12px;
}

.s360m-deductible-vs {
  position: absolute;
  left: 50%;
  top: 168px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  border: 3px solid var(--green);
  border-radius: 999px;
  background: var(--navy);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.s360m-learn-market {
  padding: 62px 0 78px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  color: var(--navy);
}

.s360m-market-head {
  max-width: 840px;
  margin: 0 auto 50px;
  text-align: center;
}

.s360m-market-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-market-head > span i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.s360m-market-head h2 {
  margin: 20px auto 16px;
  color: var(--navy);
  font-size: clamp(34px, 3.8vw, 44px);
  line-height: 1.08;
  font-weight: 900;
}

.s360m-market-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-market-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-market-table-wrap {
  width: min(880px, 100%);
  margin: 0 auto;
  box-shadow: 0 22px 46px rgba(20, 30, 68, .12);
}

.s360m-market-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #d9dfeb;
  background: #fff;
  color: var(--navy);
}

.s360m-market-table th,
.s360m-market-table td {
  height: 49px;
  border-bottom: 1px solid #e5e9f1;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  vertical-align: middle;
}

.s360m-market-table th {
  height: 43px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.s360m-market-table th:first-child {
  width: 46%;
  background: var(--navy-deep);
}

.s360m-market-table th:nth-child(2) {
  position: relative;
  width: 14%;
}

.s360m-market-table th:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

.s360m-market-table th:nth-child(3) {
  width: 40%;
}

.s360m-market-table td {
  padding: 0 18px;
  background: #fff;
}

.s360m-market-table tbody tr:nth-child(even) td {
  background: #f8f9fc;
}

.s360m-market-table td:first-child {
  color: var(--navy);
  text-align: left;
}

.s360m-market-table td:nth-child(2),
.s360m-market-table td:nth-child(3) {
  text-align: center;
}

.s360m-market-table sup {
  top: -.35em;
  color: var(--green-deep);
  font-size: 9px;
  font-weight: 900;
}

.s360m-market-table strong {
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 900;
}

.s360m-market-table small {
  color: #657094;
  font-size: 11px;
  font-weight: 800;
}

.s360m-market-check,
.s360m-market-x {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.s360m-market-check {
  color: var(--green-deep);
}

.s360m-market-x {
  color: #df426f;
}

.s360m-learn-metlife {
  padding: 42px 0 72px;
  background: #fff;
  color: var(--navy);
}

.s360m-metlife-card {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  width: min(785px, 100%);
  min-height: 236px;
  margin: 0 auto 118px;
  padding: 36px 68px 34px 34px;
  overflow: hidden;
  background: linear-gradient(112deg, #203166 0%, #17244f 72%, #26394f 100%);
  color: #fff;
}

.s360m-metlife-card::after {
  content: "";
  position: absolute;
  right: 72px;
  top: 58px;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(151, 189, 61, .22);
  filter: blur(34px);
}

.s360m-metlife-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(151, 189, 61, .75);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--green);
}

.s360m-metlife-icon svg {
  width: 48px;
  height: 48px;
}

.s360m-metlife-copy {
  position: relative;
  z-index: 1;
}

.s360m-metlife-copy > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-metlife-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 27px;
  line-height: .98;
  font-weight: 900;
}

.s360m-metlife-copy h2 em {
  color: var(--green);
  font-style: normal;
}

.s360m-metlife-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.62;
  font-weight: 800;
}

.s360m-metlife-copy p strong {
  color: #fff;
  font-weight: 900;
}

.s360m-metlife-copy > div {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 16px;
}

.s360m-metlife-copy > div strong {
  display: block;
  min-width: 128px;
  padding-left: 14px;
  border-left: 2px solid var(--green);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.s360m-metlife-copy > div small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.s360m-metlife-main {
  display: grid;
  grid-template-columns: minmax(0, 405px) minmax(0, 430px);
  justify-content: center;
  align-items: center;
  gap: 58px;
}

.s360m-metlife-text h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 37px;
  line-height: .98;
  font-weight: 900;
}

.s360m-metlife-text h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-metlife-text > p {
  max-width: 370px;
  margin: 0 0 8px;
  color: #334574;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-metlife-text > p strong {
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.s360m-metlife-perks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 34px;
}

.s360m-metlife-perks article {
  text-align: center;
}

.s360m-metlife-perks span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
}

.s360m-metlife-perks svg {
  width: 24px;
  height: 24px;
}

.s360m-metlife-perks p {
  margin: 0;
  color: #334574;
  font-size: 11.5px;
  line-height: 1.42;
  font-weight: 700;
}

.s360m-metlife-perks strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-metlife-cert {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 385px;
}

.s360m-policy-example-img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  transform: rotate(-1.5deg);
  transition: transform .28s ease;
  filter: drop-shadow(0 24px 42px rgba(30, 46, 95, .12));
}

.s360m-metlife-cert:hover .s360m-policy-example-img,
.s360m-metlife-cert:focus-within .s360m-policy-example-img {
  transform: rotate(0deg);
}

.s360m-cert-paper {
  position: absolute;
  left: 48px;
  top: 18px;
  width: 318px;
  height: 346px;
  padding: 30px 26px;
  transform: rotate(-1.5deg);
  border: 1px solid #dbe2ef;
  background: #fff;
  box-shadow: 0 26px 48px rgba(30, 46, 95, .13);
}

.s360m-cert-paper div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.s360m-cert-paper div span,
.s360m-cert-paper p,
.s360m-cert-paper small {
  color: #7b86a8;
  font-family: "Courier New", monospace;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.s360m-cert-paper div b {
  color: #159bd7;
  font-size: 13px;
  font-weight: 900;
}

.s360m-cert-paper h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.s360m-cert-paper p {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 8px;
}

.s360m-cert-paper p::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: #eef2f7;
}

.s360m-cert-paper p strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
}

.s360m-cert-paper small {
  position: absolute;
  bottom: 26px;
}

.s360m-cert-paper small:first-of-type {
  left: 32px;
}

.s360m-cert-paper small:last-of-type {
  right: 28px;
  color: #657094;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.s360m-cert-badge {
  position: absolute;
  right: 18px;
  top: 142px;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: 242px;
  min-height: 98px;
  padding: 15px 17px 13px;
  transform: rotate(2deg);
  border: 2px solid var(--green);
  border-radius: 3px;
  background: #fbfff4;
  box-shadow: 0 18px 34px rgba(151, 189, 61, .18);
  text-align: center;
  transition: transform .28s ease;
}

.s360m-metlife-cert:hover .s360m-cert-badge,
.s360m-metlife-cert:focus-within .s360m-cert-badge {
  transform: rotate(0deg);
}

.s360m-cert-badge b {
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.s360m-cert-badge span {
  max-width: 150px;
  margin-top: 6px;
  color: #657094;
  font-size: 8px;
  line-height: 1.25;
  font-weight: 900;
}

.s360m-cert-badge strong {
  margin-top: 8px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
}

.s360m-cert-badge em {
  color: #657094;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.s360m-learn-includes {
  padding: 12px 0 76px;
  background: #f3f5fa;
  color: var(--navy);
}

.s360m-includes-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.s360m-includes-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-includes-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-includes-head h2 {
  margin: 18px auto 12px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-includes-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-includes-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 267px));
  justify-content: center;
  gap: 16px;
}

.s360m-include-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 23px 22px 22px;
  border: 1px solid #e1e6ef;
  border-left: 2px solid var(--green);
  background: #fff;
}

.s360m-include-card > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
}

.s360m-include-card > span svg {
  width: 19px;
  height: 19px;
}

.s360m-include-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.16;
  font-weight: 900;
}

.s360m-include-card h3 em {
  color: var(--green-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.s360m-include-card > p {
  margin: 0;
  color: #334574;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-include-card > div {
  margin-top: auto;
  padding: 10px 10px 11px;
  border-radius: 3px;
  background: var(--green-pale);
}

.s360m-include-card > div b {
  display: block;
  margin-bottom: 5px;
  color: var(--green-deep);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.s360m-include-card > div p {
  margin: 0;
  color: var(--navy);
  font-size: 10.5px;
  line-height: 1.42;
  font-weight: 900;
}

.s360m-learn-day {
  padding: 14px 0 88px;
  background: #f3f5fa;
  color: var(--navy);
}

.s360m-day-head {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.s360m-day-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-day-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-day-head h2 {
  margin: 18px auto 12px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-day-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-day-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-day-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 267px));
  justify-content: center;
  gap: 16px;
}

.s360m-day-card {
  min-height: 213px;
  padding: 23px 22px 22px;
  border: 1px solid #e1e6ef;
  border-left: 2px solid var(--green);
  background: #fff;
}

.s360m-day-card > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 16px;
  border-radius: 4px;
  background: var(--navy);
  color: #fff;
}

.s360m-day-card > span svg {
  width: 18px;
  height: 18px;
}

.s360m-day-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.12;
  font-weight: 900;
}

.s360m-day-card h3 em {
  color: var(--green-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.s360m-day-card p {
  margin: 0;
  color: #334574;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-day-card strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-learn-event {
  padding: 56px 0 82px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  color: var(--navy);
}

.s360m-event-head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.s360m-event-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-event-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-event-head h2 {
  margin: 16px auto 12px;
  color: var(--navy);
  font-size: clamp(32px, 3.45vw, 42px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.s360m-event-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-event-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-event-showcase {
  --event-bg: none;
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 34px 38px 38px;
  border: 1px solid rgba(223, 229, 239, .88);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff 0%, #f7f9fd 100%);
  box-shadow: 0 28px 72px rgba(30, 46, 95, .08);
  overflow: hidden;
  isolation: isolate;
}

.s360m-event-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 46%, rgba(255, 255, 255, .46) 100%),
    var(--event-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .48s ease, transform .7s ease;
}

.s360m-event-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 84%, rgba(151, 189, 61, .13), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .68));
  pointer-events: none;
}

.s360m-event-showcase.has-image::before {
  opacity: 1;
  transform: scale(1);
}

.s360m-event-timeline {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 4px 0 0;
}

.s360m-event-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 176px;
  width: 1px;
  transform: translateX(-50%);
  background: #e4e8f0;
}

.s360m-event-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  border-radius: 18px;
  cursor: pointer;
  transition: transform .28s ease, opacity .28s ease;
}

.s360m-event-step + .s360m-event-step {
  margin-top: 0;
}

.s360m-event-step div {
  align-self: center;
  width: min(280px, 100%);
  transition: transform .28s ease, color .28s ease;
}

.s360m-event-left div {
  grid-column: 1;
  justify-self: end;
  padding-right: 28px;
  text-align: right;
}

.s360m-event-left .s360m-event-num {
  grid-column: 2;
}

.s360m-event-left > i {
  grid-column: 3;
  justify-self: start;
  margin-left: 110px;
}

.s360m-event-right > i {
  grid-column: 1;
  justify-self: end;
  margin-right: 110px;
}

.s360m-event-right .s360m-event-num {
  grid-column: 2;
}

.s360m-event-right div {
  grid-column: 3;
  justify-self: start;
  padding-left: 28px;
  text-align: left;
}

.s360m-event-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.s360m-event-step h3 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-event-step p {
  margin: 0;
  color: #3c4b78;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-event-step p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-event-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #dfe5ef;
  color: #8190af;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 0 0 0 rgba(151, 189, 61, 0);
  transition: background-color .28s ease, color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.s360m-event-num:focus-visible {
  outline: 3px solid rgba(151, 189, 61, .45);
  outline-offset: 3px;
}

.s360m-event-step.is-active .s360m-event-num {
  background: var(--navy);
  color: #fff;
}

.s360m-event-step.is-pay .s360m-event-num {
  background: var(--green);
  color: var(--navy);
}

.s360m-event-step.is-selected {
  transform: translateY(-2px);
}

.s360m-event-step.is-selected .s360m-event-num {
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 0 0 8px rgba(151, 189, 61, .18), 0 14px 28px rgba(151, 189, 61, .28);
  transform: scale(1.08);
}

.s360m-event-step.is-selected div {
  transform: translateY(-1px);
}

.s360m-event-step > i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f8f9fc;
  color: var(--navy);
  font-style: normal;
}

.s360m-event-step > i svg {
  width: 18px;
  height: 18px;
}

.s360m-event-step.is-pay > i {
  border: 1px solid var(--green);
  background: var(--green-pale);
  color: var(--green-deep);
}

.s360m-event-final {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin: 18px auto 0;
  text-align: center;
}

.s360m-event-final > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 112px;
  height: 112px;
  border: 1px dashed rgba(255, 255, 255, .5);
  border-radius: 999px;
  outline: 4px solid var(--green);
  background: var(--green);
  color: #fff;
  box-shadow: 0 24px 44px rgba(151, 189, 61, .28);
}

.s360m-event-final small {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.s360m-event-final strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.s360m-event-final h3 {
  margin: 24px 0 4px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .03em;
}

.s360m-event-final p {
  margin: 0;
  color: #3c4b78;
  font-size: 12px;
  font-weight: 900;
}

.s360m-event-detail {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(620px, 100%);
  margin: 28px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(223, 229, 239, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px rgba(30, 46, 95, .09);
  backdrop-filter: blur(12px);
  text-align: left;
  transform: translateY(0);
  opacity: 1;
  transition: opacity .22s ease, transform .22s ease;
}

.s360m-event-detail.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.s360m-event-detail > span {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.s360m-event-detail h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.s360m-event-detail p {
  margin: 0;
  color: #334574;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.s360m-event-detail ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.s360m-event-detail li {
  position: relative;
  padding-left: 16px;
  color: var(--navy);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}

.s360m-event-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.s360m-learn-app {
  padding: 60px 0 74px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
  color: var(--navy);
}

.s360m-app-inner {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 310px);
  justify-content: center;
  align-items: center;
  gap: 84px;
}

.s360m-app-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-app-copy > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-app-copy h2 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 4.4vw, 50px);
  line-height: .98;
  font-weight: 900;
}

.s360m-app-copy h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-app-copy > p {
  max-width: 430px;
  margin: 0;
  color: #334574;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-app-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
  margin-top: 26px;
}

.s360m-app-features article {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
}

.s360m-app-features i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-style: normal;
}

.s360m-app-features svg {
  width: 14px;
  height: 14px;
}

.s360m-app-features strong,
.s360m-app-features small {
  display: block;
}

.s360m-app-features strong {
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
}

.s360m-app-features small {
  color: #334574;
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 600;
}

.s360m-app-phone {
  display: grid;
  justify-items: center;
}

.s360m-app-phone-img {
  display: block;
  width: min(100%, 224px);
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 32px 70px rgba(20, 30, 68, .26));
}

.s360m-phone-shell {
  position: relative;
  width: 224px;
  min-height: 432px;
  padding: 12px;
  border-radius: 31px;
  background: #213267;
  box-shadow: 0 32px 70px rgba(20, 30, 68, .34);
}

.s360m-phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 72px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #16224c;
}

.s360m-phone-screen {
  min-height: 408px;
  padding: 50px 14px 18px;
  border-radius: 24px;
  background: #192754;
  color: #fff;
}

.s360m-phone-screen > small {
  display: block;
  color: rgba(255, 255, 255, .56);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.s360m-phone-screen h3 {
  margin: 4px 0 26px;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
}

.s360m-phone-status {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 29px;
  margin-bottom: 12px;
  padding: 0 10px;
  border: 1px solid rgba(151, 189, 61, .62);
  border-radius: 5px;
  background: rgba(151, 189, 61, .14);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.s360m-phone-status i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(151, 189, 61, .18);
}

.s360m-phone-card {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 45px;
  margin-bottom: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
}

.s360m-phone-card i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: rgba(151, 189, 61, .16);
  color: var(--green);
  font-style: normal;
}

.s360m-phone-card.is-alert i {
  background: rgba(255, 152, 60, .18);
  color: #f2a246;
}

.s360m-phone-card svg {
  width: 14px;
  height: 14px;
}

.s360m-phone-card strong,
.s360m-phone-card small {
  display: block;
}

.s360m-phone-card strong {
  color: #fff;
  font-size: 10.5px;
  line-height: 1.15;
  font-weight: 900;
}

.s360m-phone-card small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .62);
  font-size: 7.5px;
  line-height: 1.2;
  font-weight: 800;
}

.s360m-learn-conditions {
  padding: 92px 0 86px;
  border-top: 1px solid var(--line-soft);
  background: #f7f8fb;
  color: var(--navy);
}

.s360m-conditions-head {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.s360m-conditions-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-conditions-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-conditions-head h2 {
  margin: 18px auto 12px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-conditions-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-conditions-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-conditions-list {
  display: grid;
  gap: 10px;
  width: min(660px, 100%);
  margin: 0 auto;
}

.s360m-conditions-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 70px;
  padding: 22px 28px 18px 20px;
  border-left: 2px solid #50639c;
  background: #fff;
}

.s360m-conditions-list span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.s360m-conditions-list p {
  margin: 0;
  color: #334574;
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-conditions-list strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-conditions-list small {
  display: block;
  margin-top: 10px;
  color: var(--green-deep);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 900;
}

.s360m-learn-sum {
  padding: 76px 0 58px;
  background: #f7f8fb;
  color: var(--navy);
}

.s360m-sum-head,
.s360m-press-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.s360m-sum-head > span,
.s360m-press-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-sum-head > span i,
.s360m-press-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-sum-head h2,
.s360m-press-head h2 {
  margin: 18px auto 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-sum-head h2 em,
.s360m-press-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-sum-head p,
.s360m-press-head p {
  max-width: 720px;
  margin: 0 auto;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.s360m-sum-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 228px));
  justify-content: center;
  gap: 11px;
  margin: 48px auto 18px;
}

.s360m-sum-stats article {
  min-height: 114px;
  padding: 22px 18px 16px;
  border-top: 2px solid var(--green);
  background: #fff;
  text-align: center;
}

.s360m-sum-stats strong {
  display: block;
  color: var(--green-deep);
  font-size: 30px;
  line-height: .92;
  font-weight: 900;
}

.s360m-sum-stats span {
  display: block;
  margin-top: 12px;
  color: #7180a5;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 900;
}

.s360m-sum-source {
  margin: 0;
  color: #7180a5;
  font-size: 11px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
}

.s360m-learn-press {
  padding: 66px 0 78px;
  background: #fff;
  color: var(--navy);
}

.s360m-press-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 166px));
  justify-content: center;
  margin: 48px auto 0;
  border-top: 1px solid #d7deeb;
  border-bottom: 1px solid #d7deeb;
}

.s360m-press-grid article {
  min-height: 224px;
  padding: 24px 18px 22px;
  border-left: 1px solid #d7deeb;
}

.s360m-press-grid article:last-child {
  border-right: 1px solid #d7deeb;
}

.s360m-press-grid h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.s360m-press-grid article:nth-child(1) h3,
.s360m-press-grid article:nth-child(2) h3,
.s360m-press-grid article:nth-child(5) h3 {
  color: #c9172d;
}

.s360m-press-grid article:nth-child(2) h3 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-style: italic;
}

.s360m-press-grid article:nth-child(5) h3 {
  font-family: Arial, sans-serif;
  letter-spacing: .04em;
}

.s360m-press-grid h4 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 900;
}

.s360m-press-grid p {
  margin: 0;
  color: #334574;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-learn-videos {
  padding: 82px 0 70px;
  background: #f7f8fb;
  color: var(--navy);
}

.s360m-videos-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.s360m-videos-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-videos-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-videos-head h2 {
  margin: 18px auto 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: .98;
  font-weight: 900;
}

.s360m-videos-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-videos-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-video-carousel {
  width: min(830px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.s360m-video-carousel::-webkit-scrollbar {
  display: none;
}

.s360m-video-track {
  display: grid;
  grid-template-columns: minmax(0, 543px) minmax(0, 272px);
  gap: 14px;
  min-width: 830px;
  scroll-snap-type: x mandatory;
}

.s360m-video-card {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 305px;
  overflow: hidden;
  border-left: 2px solid var(--green);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .035) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .035) 50%, rgba(255, 255, 255, .035) 75%, transparent 75%, transparent) 0 0 / 18px 18px,
    linear-gradient(112deg, #213267 0%, #17244f 68%, #203660 100%);
  color: #fff;
  scroll-snap-align: start;
  text-align: center;
}

.s360m-video-card.is-side {
  min-height: 340px;
}

.s360m-video-card button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(151, 189, 61, .26);
  cursor: pointer;
  transition: transform .22s ease, background-color .22s ease, color .22s ease;
}

.s360m-video-card button:hover {
  transform: scale(1.05);
  background: var(--navy);
  color: #fff;
}

.s360m-video-card button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid currentColor;
}

.s360m-video-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.s360m-video-card strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.s360m-learn-payment {
  position: relative;
  padding: 80px 0 84px;
  border-top: 1px solid var(--line-soft);
  background: #f7f8fb;
  color: var(--navy);
  overflow: hidden;
}

.s360m-learn-payment::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(151, 189, 61, .18);
  filter: blur(44px);
}

.s360m-payment-head {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.s360m-payment-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-payment-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-payment-head h2 {
  margin: 18px auto 14px;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-payment-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-payment-head p {
  margin: 0;
  color: #3c4b78;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-payment-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 405px) minmax(0, 407px);
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
}

.s360m-pay-card,
.s360m-invoice-card {
  min-height: 264px;
  padding: 22px 22px 24px;
  border: 1px solid #e1e6ef;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(20, 30, 68, .05);
}

.s360m-invoice-card {
  border-color: rgba(151, 189, 61, .45);
  background: linear-gradient(135deg, #fbfff4 0%, #fff 72%);
}

.s360m-pay-card header,
.s360m-invoice-card header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.s360m-pay-card header span,
.s360m-invoice-card header span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border-radius: 7px;
  background: var(--navy);
  color: #fff;
}

.s360m-invoice-card header span {
  background: var(--green);
  color: var(--navy);
}

.s360m-pay-card header svg,
.s360m-invoice-card header svg {
  width: 17px;
  height: 17px;
}

.s360m-pay-card h3,
.s360m-invoice-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 900;
}

.s360m-pay-card > p,
.s360m-invoice-card > p {
  margin: 0 0 16px;
  color: #334574;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

.s360m-pay-card p strong,
.s360m-invoice-card p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-pay-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.s360m-pay-methods span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 35px;
  padding: 0 11px;
  border: 1px solid #dfe5ef;
  border-radius: 6px;
  background: #fafbfe;
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 900;
}

.s360m-pay-methods i {
  width: 13px;
  height: 13px;
  border: 1px solid #aab4ca;
  border-radius: 999px;
  background: #fff;
}

.s360m-invoice-card > div {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  padding: 12px 14px;
  border-left: 2px solid var(--green);
  border-radius: 6px;
  background: #fff;
}

.s360m-invoice-card b {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
}

.s360m-invoice-card div p {
  margin: 0;
  color: var(--navy);
  font-size: 10.5px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-invoice-card div strong {
  color: var(--green-deep);
  font-weight: 900;
}

.s360m-contract-process {
  position: relative;
  z-index: 1;
  width: min(830px, 100%);
  margin: 0 auto;
  padding: 30px 26px 28px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.s360m-contract-process > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.s360m-contract-process h3 {
  margin: 0 0 26px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.s360m-contract-process h3 em {
  color: var(--green);
  font-style: normal;
}

.s360m-contract-process > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.s360m-contract-process article {
  min-height: 132px;
  padding: 19px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.s360m-contract-process article b {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.s360m-contract-process article strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 900;
}

.s360m-contract-process article p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
}

.s360m-contract-process > div > i {
  color: rgba(255, 255, 255, .35);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.s360m-learn-faq {
  padding: 78px 0 76px;
  border-top: 1px solid var(--line-soft);
  background: #f3f5fa;
  color: var(--navy);
}

.s360m-faq-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.s360m-faq-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-faq-head > span i {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

.s360m-faq-head h2 {
  margin: 18px auto 0;
  color: var(--navy);
  font-size: clamp(34px, 3.9vw, 44px);
  line-height: 1.04;
  font-weight: 900;
}

.s360m-faq-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-faq-list {
  display: grid;
  gap: 10px;
  width: min(655px, 100%);
  margin: 0 auto;
}

.s360m-faq-list details {
  border: 1px solid #e0e5ee;
  background: #fff;
}

.s360m-faq-list details[open] {
  border-color: var(--green);
}

.s360m-faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 58px 0 18px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.s360m-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.s360m-faq-list details[open] summary {
  min-height: 56px;
  padding-top: 18px;
  padding-bottom: 10px;
}

.s360m-faq-list details[open] summary::after {
  content: "×";
  background: var(--green);
  color: #fff;
  font-size: 15px;
}

.s360m-faq-list p {
  max-width: 548px;
  margin: 0;
  padding: 0 26px 20px 18px;
  color: #334574;
  font-size: 11.7px;
  line-height: 1.65;
  font-weight: 600;
}

.s360m-faq-list p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-learn-next {
  padding: 76px 0 80px;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, #f2f8de 0%, #f8fbef 100%);
  color: var(--navy);
}

.s360m-next-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.s360m-next-head > span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.s360m-next-head > span i {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
}

.s360m-next-head h2 {
  margin: 20px auto 18px;
  color: var(--navy);
  font-size: clamp(40px, 4.6vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.s360m-next-head h2 em {
  color: var(--green-deep);
  font-style: normal;
}

.s360m-next-head p {
  max-width: 820px;
  margin: 0 auto;
  color: #334574;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.s360m-next-head p strong {
  color: var(--navy);
  font-weight: 900;
}

.s360m-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 254px));
  justify-content: center;
  gap: 18px;
}

.s360m-next-card {
  display: flex;
  flex-direction: column;
  min-height: 357px;
  padding: 28px 24px 22px;
  border: 1px solid #dbe2ef;
  border-radius: 11px;
  background: #fff;
}

.s360m-next-card > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #f1f3f7;
  color: var(--navy);
}

.s360m-next-card:nth-child(3) > span {
  background: var(--green-pale);
  color: var(--green-deep);
}

.s360m-next-card > span svg {
  width: 24px;
  height: 24px;
}

.s360m-next-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.08;
  font-weight: 900;
}

.s360m-next-card p {
  margin: 0;
  color: #334574;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 600;
}

.s360m-next-card div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.s360m-next-card small {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #667599;
  font-size: 11px;
  font-weight: 900;
}

.s360m-next-card small::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 4px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.s360m-next-card b {
  display: inline-flex;
  align-items: center;
  min-height: 17px;
  padding: 0 8px;
  border-radius: 3px;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.s360m-next-card button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease;
}

.s360m-next-card button:hover {
  color: var(--navy);
  transform: translateX(3px);
}

.s360m-next-card button svg {
  width: 15px;
  height: 15px;
}

.s360m-learn-page + .s360m-ai-chat {
  right: auto;
  left: 24px;
  bottom: 96px;
}

.s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher {
  width: auto;
  min-width: 0;
  height: 36px;
  padding: 0 13px;
  border-color: var(--navy);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(20, 30, 68, .15);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: s360m-ai-float 3.4s ease-in-out infinite;
}

.s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher svg {
  display: none;
}

.s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher::before {
  content: "";
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-pale);
  animation: s360m-ai-pulse 1.6s ease-out infinite;
}

@keyframes s360m-ai-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes s360m-ai-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(151, 189, 61, .42), 0 0 0 5px var(--green-pale);
  }

  70% {
    box-shadow: 0 0 0 11px rgba(151, 189, 61, 0), 0 0 0 5px var(--green-pale);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(151, 189, 61, 0), 0 0 0 5px var(--green-pale);
  }
}

.s360m-learn-page ~ .s360m-footer-space {
  height: 82px;
}

.s360m-footer-space {
  height: 84px;
}

.s360m-quote-page ~ .s360m-footer-space {
  height: 104px;
}

.s360m-ai-chat {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 45;
  color: var(--ink);
}

.s360m-ai-launcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 74px;
  height: 54px;
  border: 1px solid rgba(30, 46, 95, .16);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 38px rgba(20, 30, 68, .24);
  font-size: 13px;
  font-weight: 900;
}

.s360m-ai-launcher svg {
  width: 21px;
  height: 21px;
}

.s360m-ai-panel {
  display: none;
  width: min(392px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 132px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 64px rgba(8, 15, 35, .28);
  overflow: hidden;
}

.s360m-ai-chat.is-open .s360m-ai-launcher {
  display: none;
}

.s360m-ai-chat.is-open .s360m-ai-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.s360m-ai-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--navy);
  color: #fff;
}

.s360m-ai-head strong,
.s360m-ai-head span {
  display: block;
}

.s360m-ai-head strong {
  font-size: 15px;
  line-height: 1.2;
}

.s360m-ai-head span {
  margin-top: 3px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.s360m-ai-head button,
.s360m-ai-form button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
}

.s360m-ai-head button {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.s360m-ai-head svg,
.s360m-ai-form svg {
  width: 18px;
  height: 18px;
}

.s360m-ai-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background: #f8fafc;
}

.s360m-ai-msg {
  display: flex;
}

.s360m-ai-msg > div {
  max-width: 86%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  white-space: pre-wrap;
}

.s360m-ai-msg.is-assistant {
  justify-content: flex-start;
}

.s360m-ai-msg.is-assistant > div {
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--ink);
}

.s360m-ai-msg.is-user {
  justify-content: flex-end;
}

.s360m-ai-msg.is-user > div {
  background: var(--green);
  color: var(--navy-deep);
}

.s360m-ai-msg.is-loading > div {
  color: var(--muted);
}

.s360m-ai-quick {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 12px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}

.s360m-ai-quick button {
  flex: 0 0 auto;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.s360m-ai-form {
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}

.s360m-ai-form input {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  outline: none;
}

.s360m-ai-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(151, 189, 61, .18);
}

.s360m-ai-form button {
  background: var(--green);
  color: var(--navy-deep);
}

@media (max-width: 920px) {
  .s360m-header-inner {
    min-height: 68px;
  }

  .s360m-proof {
    gap: 10px;
  }

  .s360m-header-actions {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .s360m-header.is-quote-result .s360m-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
  }

  .s360m-header.is-quote-result .s360m-logo-img {
    max-width: 180px;
  }

  .s360m-header.is-quote-result .s360m-proof {
    flex: 0 1 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .s360m-official-title {
    min-height: 36px;
    padding-left: 14px;
    font-size: 16px;
  }

  .s360m-proof-pill {
    min-height: 34px;
    padding: 0 11px;
    font-size: 11px;
  }

  .s360m-quote-hero,
  .s360m-quote-hero-inner {
    min-height: 500px;
  }

  .s360m-quote-hero-inner {
    padding: 34px 0 50px;
  }

  .s360m-quote-hero h1 {
    max-width: 840px;
    font-size: clamp(34px, 5.9vw, 52px);
    line-height: 1;
  }

  .s360m-learn-hero {
    min-height: auto;
    padding: 64px 0;
  }

  .s360m-learn-hero h1 {
    font-size: clamp(38px, 8vw, 58px);
  }

  .s360m-learn-benefits {
    grid-template-columns: repeat(2, max-content);
    gap: 14px;
    width: min(760px, 100%);
  }

  .s360m-compare-inner {
    grid-template-columns: minmax(0, 560px);
    gap: 42px;
  }

  .s360m-compare-vs {
    position: relative;
    top: auto;
    left: auto;
    margin: -16px auto;
    transform: none;
  }

  .s360m-learn-deductible {
    min-height: 0;
    padding: 66px 0 74px;
  }

  .s360m-deductible-head {
    margin-bottom: 40px;
  }

  .s360m-deductible-grid {
    grid-template-columns: minmax(0, 560px);
    gap: 36px;
  }

  .s360m-deductible-vs {
    position: relative;
    top: auto;
    left: auto;
    margin: -10px auto;
    transform: none;
  }

  .s360m-learn-market {
    padding: 56px 0 70px;
  }

  .s360m-market-head {
    margin-bottom: 38px;
  }

  .s360m-market-table-wrap {
    overflow-x: auto;
    box-shadow: 0 18px 34px rgba(20, 30, 68, .1);
  }

  .s360m-market-table {
    min-width: 760px;
  }

  .s360m-metlife-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 72px;
    padding: 30px 28px;
  }

  .s360m-metlife-icon {
    width: 82px;
    height: 82px;
  }

  .s360m-metlife-main {
    grid-template-columns: minmax(0, 560px);
    gap: 44px;
  }

  .s360m-metlife-text {
    text-align: center;
  }

  .s360m-metlife-text > p {
    margin-left: auto;
    margin-right: auto;
  }

  .s360m-metlife-cert {
    width: min(430px, 100%);
    margin: 0 auto;
  }

  .s360m-learn-includes {
    padding: 20px 0 66px;
  }

  .s360m-includes-grid {
    grid-template-columns: repeat(2, minmax(0, 267px));
  }

  .s360m-learn-day {
    padding: 16px 0 74px;
  }

  .s360m-day-grid {
    grid-template-columns: repeat(2, minmax(0, 267px));
  }

  .s360m-event-showcase {
    padding: 30px 26px 34px;
  }

  .s360m-event-timeline {
    width: min(660px, 100%);
  }

  .s360m-event-step {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  }

  .s360m-event-left > i {
    margin-left: 76px;
  }

  .s360m-event-right > i {
    margin-right: 76px;
  }

  .s360m-event-detail ul {
    grid-template-columns: 1fr;
  }

  .s360m-app-inner {
    grid-template-columns: minmax(0, 560px);
    gap: 46px;
    text-align: center;
  }

  .s360m-app-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .s360m-app-features {
    text-align: left;
  }

  .s360m-learn-conditions {
    padding: 72px 0 76px;
  }

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

  .s360m-press-grid {
    justify-content: start;
    overflow-x: auto;
    grid-template-columns: repeat(5, 166px);
  }

  .s360m-video-carousel {
    width: min(830px, 100%);
  }

  .s360m-payment-top {
    grid-template-columns: minmax(0, 560px);
  }

  .s360m-contract-process > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .s360m-contract-process > div > i {
    transform: rotate(90deg);
  }

  .s360m-faq-list {
    width: min(655px, 100%);
  }

  .s360m-next-grid {
    grid-template-columns: repeat(2, minmax(0, 254px));
  }

  .s360m-hex-right {
    right: -24px;
    top: 64px;
  }

  .s360m-nav a:not(.is-primary) {
    display: none;
  }

  .s360m-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .s360m-cards,
  .s360m-plan-grid {
    grid-template-columns: 1fr;
  }

  .s360m-fq-client,
  .s360m-fq-benefits,
  .s360m-fq-payments {
    grid-template-columns: 1fr;
  }

  .s360m-fq-benefits > div + div,
  .s360m-fq-payments > div + div {
    border-left: 0;
  }

  .s360m-fq-payments > div:nth-child(2) {
    border-left: 0;
    border-top: 3px solid var(--green);
  }

}

@media (max-width: 560px) {
  .s360m-header-inner,
  .s360m-container {
    width: min(100% - 22px, 1180px);
  }

  .s360m-logo-img {
    width: 168px;
    max-width: 48vw;
  }

  .s360m-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .s360m-proof {
    flex: 0 1 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .s360m-header-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .s360m-header-btn {
    min-height: 32px;
    padding: 0 12px;
    font-size: 9.5px;
    font-weight: 900 !important;
  }

  .s360m-official-title {
    border-left: 0;
    padding-left: 0;
    font-size: 14px;
  }

  .s360m-check {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
    font-size: 11px;
  }

  .s360m-proof-pill {
    min-height: 30px;
    gap: 7px;
    padding: 0 9px;
    font-size: 10px;
    max-width: 100%;
  }

  .s360m-proof-sep {
    height: 14px;
  }

  .s360m-quote-hero,
  .s360m-quote-hero-inner {
    min-height: 500px;
  }

  .s360m-quote-hero-inner {
    padding: 34px 0 46px;
  }

  .s360m-hero-chip {
    min-height: 25px;
    padding: 0 16px;
    font-size: 10px;
  }

  .s360m-quote-hero h1 {
    margin: 22px auto 28px;
    font-size: clamp(30px, 9.2vw, 42px);
    line-height: 1.02;
  }

  .s360m-quote-hero h1 span {
    white-space: normal;
  }

  .s360m-learn-hero h1 span {
    white-space: normal;
  }

  .s360m-learn-benefits {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
  }

  .s360m-learn-benefits span {
    white-space: normal;
  }

  .s360m-deductible-head h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .s360m-deductible-head p {
    font-size: 14px;
  }

  .s360m-deductible-card {
    min-height: 0;
    padding: 28px 20px 26px;
  }

  .s360m-deductible-card h3 {
    font-size: 22px;
  }

  .s360m-deductible-card dl div,
  .s360m-deductible-total {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .s360m-deductible-card dd {
    text-align: left;
  }

  .s360m-deductible-total b,
  .s360m-deductible-mutuus .s360m-deductible-total b {
    font-size: 36px;
  }

  .s360m-market-head h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .s360m-market-head p {
    font-size: 14px;
  }

  .s360m-market-table-wrap {
    width: calc(100% + 22px);
    margin-left: 0;
  }

  .s360m-market-table {
    min-width: 720px;
  }

  .s360m-learn-metlife {
    padding: 36px 0 64px;
  }

  .s360m-metlife-card {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-bottom: 58px;
    padding: 28px 20px;
    text-align: center;
  }

  .s360m-metlife-copy h2 {
    font-size: 24px;
  }

  .s360m-metlife-copy > div {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .s360m-metlife-copy > div strong {
    min-width: 164px;
    text-align: left;
  }

  .s360m-metlife-text h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .s360m-metlife-perks {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .s360m-metlife-cert {
    min-height: 330px;
  }

  .s360m-cert-paper {
    left: 50%;
    width: 274px;
    height: 306px;
    padding: 24px 20px;
    transform: translateX(-50%) rotate(-1.5deg);
  }

  .s360m-cert-badge {
    right: 50%;
    top: 120px;
    width: min(218px, 70vw);
    transform: translateX(50%) rotate(2deg);
  }

  .s360m-policy-example-img {
    transform: rotate(-1.2deg);
  }

  .s360m-metlife-cert:hover .s360m-policy-example-img,
  .s360m-metlife-cert:focus-within .s360m-policy-example-img {
    transform: rotate(0deg);
  }

  .s360m-metlife-cert:hover .s360m-cert-badge,
  .s360m-metlife-cert:focus-within .s360m-cert-badge {
    transform: translateX(50%) rotate(0deg);
  }

  .s360m-includes-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-includes-head p {
    font-size: 14px;
  }

  .s360m-includes-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .s360m-include-card {
    min-height: 0;
  }

  .s360m-include-card > div {
    margin-top: 18px;
  }

  .s360m-day-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-day-head p {
    font-size: 14px;
  }

  .s360m-day-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .s360m-day-card {
    min-height: 0;
  }

  .s360m-learn-event {
    padding: 52px 0 68px;
  }

  .s360m-event-showcase {
    padding: 22px 16px 24px;
    border-radius: 20px;
  }

  .s360m-event-showcase::before {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .7)),
      var(--event-bg);
  }

  .s360m-event-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
    white-space: normal;
  }

  .s360m-event-head p {
    font-size: 14px;
  }

  .s360m-event-timeline {
    width: 100%;
  }

  .s360m-event-timeline::before {
    left: 28px;
    top: 18px;
    bottom: 172px;
  }

  .s360m-event-step {
    grid-template-columns: 56px minmax(0, 1fr);
    min-height: 0;
    gap: 14px;
    padding: 0 0 28px;
  }

  .s360m-event-step h3 {
    white-space: normal;
  }

  .s360m-event-left div,
  .s360m-event-right div {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .s360m-event-left .s360m-event-num,
  .s360m-event-right .s360m-event-num {
    grid-column: 1;
    grid-row: 1;
  }

  .s360m-event-left > i,
  .s360m-event-right > i {
    display: none;
  }

  .s360m-event-final {
    margin-top: 6px;
  }

  .s360m-event-final > span {
    width: 100px;
    height: 100px;
  }

  .s360m-event-final strong {
    font-size: 36px;
  }

  .s360m-event-detail {
    margin-top: 22px;
    padding: 18px;
    border-radius: 16px;
  }

  .s360m-event-detail h3 {
    font-size: 21px;
  }

  .s360m-event-detail p {
    font-size: 12px;
  }

  .s360m-learn-app {
    padding: 50px 0 66px;
  }

  .s360m-app-copy h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .s360m-app-copy > p {
    font-size: 14px;
  }

  .s360m-app-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .s360m-phone-shell {
    width: 214px;
    min-height: 410px;
  }

  .s360m-app-phone-img {
    width: min(100%, 214px);
  }

  .s360m-phone-screen {
    min-height: 386px;
  }

  .s360m-learn-conditions {
    padding: 56px 0 68px;
  }

  .s360m-conditions-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-conditions-head p {
    font-size: 14px;
  }

  .s360m-conditions-list article {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px 16px 14px;
  }

  .s360m-learn-sum {
    padding: 54px 0 50px;
  }

  .s360m-learn-press {
    padding: 54px 0 66px;
  }

  .s360m-sum-head h2,
  .s360m-press-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-sum-head p,
  .s360m-press-head p {
    font-size: 14px;
  }

  .s360m-sum-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .s360m-sum-stats article {
    min-height: 0;
  }

  .s360m-press-grid {
    width: calc(100% + 22px);
    margin-top: 36px;
  }

  .s360m-learn-videos {
    padding: 54px 0 62px;
  }

  .s360m-videos-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-videos-head p {
    font-size: 14px;
  }

  .s360m-video-carousel {
    width: calc(100% + 22px);
  }

  .s360m-video-track {
    grid-template-columns: 280px 220px;
    min-width: 514px;
  }

  .s360m-video-card,
  .s360m-video-card.is-side {
    min-height: 250px;
  }

  .s360m-learn-payment {
    padding: 54px 0 66px;
  }

  .s360m-payment-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-payment-head p {
    font-size: 14px;
  }

  .s360m-pay-card,
  .s360m-invoice-card {
    min-height: 0;
    padding: 20px 16px;
  }

  .s360m-pay-methods {
    grid-template-columns: 1fr;
  }

  .s360m-contract-process {
    padding: 28px 16px 22px;
  }

  .s360m-contract-process h3 {
    font-size: 18px;
  }

  .s360m-learn-faq {
    padding: 54px 0 66px;
  }

  .s360m-faq-head h2 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .s360m-faq-list summary {
    min-height: 56px;
    padding-left: 16px;
    padding-right: 52px;
    font-size: 12.5px;
  }

  .s360m-faq-list summary::after {
    right: 16px;
  }

  .s360m-faq-list p {
    padding-left: 16px;
    padding-right: 16px;
  }

  .s360m-learn-next {
    padding: 54px 0 66px;
  }

  .s360m-next-head h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .s360m-next-head p {
    font-size: 14px;
  }

  .s360m-next-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .s360m-next-card {
    min-height: 0;
  }

  .s360m-next-card button {
    margin-top: 24px;
  }

  .s360m-learn-page + .s360m-ai-chat {
    left: 14px;
    bottom: 88px;
  }

  .s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher {
    height: 34px;
    padding: 0 11px;
    font-size: 10px;
  }

  .s360m-underlined::after {
    bottom: 3px;
    height: 8px;
  }

  .s360m-issuer-box {
    display: flex;
    flex-wrap: wrap;
    min-height: 0;
    padding: 12px 16px;
    font-size: 11px;
    line-height: 1.35;
    white-space: normal;
  }

  .s360m-issuer-dot {
    display: inline;
  }

  .s360m-quote-hero p {
    font-size: 16px;
  }

  .s360m-hex {
    display: none;
  }

  .s360m-floating-quote {
    left: 16px;
    bottom: 112px;
    min-height: 42px;
    padding: 0 18px;
  }

  .s360m-quote-flow {
    padding: 52px 0 132px;
  }

  .s360m-quote-page ~ .s360m-footer-space {
    height: 128px;
  }

  .s360m-flow-head {
    margin-bottom: 34px;
  }

  .s360m-step {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 22px;
    padding-bottom: 30px;
  }

  .s360m-step-marker {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .s360m-step:not(:last-child)::before {
    left: 25px;
    top: 50px;
    bottom: -14px;
  }

  .s360m-step-body {
    padding-top: 4px;
  }

  .s360m-step-body h3 {
    font-size: 19px;
  }

  .s360m-step-inline-fields {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .s360m-start-area {
    margin-top: 34px;
  }

  .s360m-start-quote {
    width: min(224px, 100%);
    min-height: 58px;
    font-size: 15px;
  }

  .s360m-trust-notes {
    margin-top: 24px;
  }

  .s360m-trust-notes p {
    justify-content: flex-start;
    text-align: left;
  }

  .s360m-quote-form-panel {
    margin-top: 48px;
    scroll-margin-top: 150px;
  }

  .s360m-quote-result {
    padding: 48px 0 132px;
  }

  .s360m-quote-learn-cta {
    margin-top: 56px;
  }

  .s360m-quote-learn-cta .s360m-btn {
    width: min(304px, 100%);
    min-width: 0;
  }

  .s360m-quote-result-actions .s360m-btn {
    width: 100%;
    min-width: 0;
  }

  .s360m-quote-preview-head,
  .s360m-quote-preview-title,
  .s360m-quote-preview-grid {
    padding-left: 22px;
    padding-right: 22px;
  }

  .s360m-quote-preview-head {
    flex-direction: column;
    padding-top: 30px;
  }

  .s360m-quote-preview-head div {
    text-align: left;
  }

  .s360m-quote-preview-title h3 {
    font-size: 25px;
  }

  .s360m-quote-preview-grid {
    grid-template-columns: 1fr;
    padding-bottom: 28px;
  }

  .s360m-fq-head,
  .s360m-fq-title,
  .s360m-fq-client,
  .s360m-fq-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .s360m-fq-head {
    flex-direction: column;
    padding-top: 30px;
  }

  .s360m-fq-head > div {
    text-align: left;
  }

  .s360m-fq-title h3 {
    font-size: 25px;
  }

  .s360m-fq-client {
    gap: 14px;
  }

  .s360m-fq-green {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .s360m-fq-table-head {
    display: none;
  }

  .s360m-fq-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .s360m-fq-row b {
    text-align: left;
  }

  .s360m-fq-payments strong {
    font-size: 23px;
  }

  .s360m-share-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .s360m-quote-modal {
    align-items: flex-start;
    padding: 18px 12px;
  }

  .s360m-quote-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 36px);
  }

  .s360m-contract-modal {
    align-items: flex-start;
    padding: 18px 12px;
  }

  .s360m-online-contract-modal {
    align-items: flex-start;
    padding: 18px 12px;
  }

  .s360m-advisor-phone-modal {
    align-items: flex-start;
    padding: 18px 12px;
  }

  .s360m-contract-dialog {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 34px 16px 18px;
  }

  .s360m-online-contract-dialog {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 32px 22px 22px;
  }

  .s360m-advisor-phone-dialog {
    width: 100%;
    padding: 32px 22px 22px;
  }

  .s360m-contract-head {
    padding-left: 12px;
    padding-right: 12px;
  }

  .s360m-contract-head h2 {
    font-size: 24px;
  }

  .s360m-contract-option {
    grid-template-columns: 46px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 116px;
    padding: 14px;
  }

  .s360m-contract-icon {
    width: 46px;
    height: 46px;
  }

  .s360m-contract-copy strong {
    font-size: 15px;
  }

  .s360m-online-contract-head {
    margin-right: 40px;
  }

  .s360m-online-contract-head h2 {
    font-size: 23px;
  }

  .s360m-online-link-box > div,
  .s360m-online-contract-actions,
  .s360m-advisor-phone-dialog > div {
    align-items: stretch;
    flex-direction: column;
  }

  .s360m-modal-head {
    padding: 28px 24px 18px;
  }

  .s360m-modal-body {
    padding: 24px;
  }

  .s360m-modal-head h2 {
    font-size: 21px;
  }

  .s360m-modal-body h3 {
    font-size: 19px;
  }

  .s360m-modal-actions,
  .s360m-modal-form .s360m-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .s360m-modal-actions .s360m-btn,
  .s360m-modal-form .s360m-actions .s360m-btn {
    width: 100%;
  }

  .s360m-quote-bottom .s360m-bottom-inner {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    min-height: 72px;
    padding: 8px 0;
  }

  .s360m-quote-bottom .s360m-bottom-inner > div {
    justify-content: center;
  }

  .s360m-quote-bottom .s360m-btn-primary {
    min-width: min(236px, 100%);
  }

  .s360m-nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .s360m-hero-inner {
    padding: 38px 0 28px;
  }

  .s360m-learn-hero {
    padding: 48px 0 56px;
  }

  .s360m-learn-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .s360m-learn-hero h1 span {
    white-space: normal;
  }

  .s360m-learn-hero p,
  .s360m-learn-question {
    font-size: 15px;
  }

  .s360m-learn-backed div div {
    gap: 18px 28px;
    font-size: 16px;
  }

  .s360m-learn-compare {
    padding-bottom: 64px;
  }

  .s360m-compare-card {
    min-height: 0;
    padding: 28px 22px 24px;
  }

  .s360m-grid-2,
  .s360m-actions {
    grid-template-columns: 1fr;
  }

  .s360m-btn-wide {
    grid-column: auto;
  }

  .s360m-bottom-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 10px 0;
  }

  .s360m-bottom .s360m-btn {
    width: 100%;
  }

  .s360m-fq-footer-note {
    margin: 0 24px 32px;
  }

  .s360m-quote-bottom .s360m-bottom-inner {
    align-items: center;
    flex-direction: row;
  }

  .s360m-quote-bottom .s360m-btn-primary {
    width: auto;
  }

  .s360m-ai-chat {
    right: 12px;
    bottom: 108px;
  }

  .s360m-learn-page + .s360m-ai-chat {
    left: 12px;
    bottom: 108px;
  }

  .s360m-learn-page + .s360m-ai-chat .s360m-ai-launcher {
    min-width: 0;
    max-width: calc(100vw - 24px);
  }

  .s360m-ai-panel {
    width: calc(100vw - 24px);
    height: min(560px, calc(100vh - 126px));
  }
}
