:root {
  --cmsfp-blue: #2d337f;
  --cmsfp-blue-deep: #20265f;
  --cmsfp-green: #7fa63a;
  --cmsfp-green-dark: #64862b;
  --cmsfp-ink: #172033;
  --cmsfp-muted: #657085;
  --cmsfp-line: #e5e9f0;
  --cmsfp-soft: #f5f7fa;
  --cmsfp-white: #ffffff;
  --cmsfp-shadow: 0 14px 35px rgba(26, 35, 73, .09);
}

.cmsfp-page,
.cmsfp,
.cmsfp * {
  box-sizing: border-box;
}

.cmsfp-page {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--cmsfp-white);
}

.cmsfp {
  color: var(--cmsfp-ink);
  font-family: inherit;
  line-height: 1.6;
}

.cmsfp__container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.cmsfp__hero {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(127,166,58,.32), transparent 24%),
    linear-gradient(120deg, var(--cmsfp-blue-deep) 0%, var(--cmsfp-blue) 62%, #394497 100%);
  color: var(--cmsfp-white);
}

.cmsfp__hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 88px rgba(255,255,255,.025);
}

.cmsfp__hero-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .17;
  background-image:
    linear-gradient(30deg, transparent 47%, rgba(255,255,255,.28) 48%, rgba(255,255,255,.28) 49%, transparent 50%),
    linear-gradient(150deg, transparent 47%, rgba(255,255,255,.18) 48%, rgba(255,255,255,.18) 49%, transparent 50%);
  background-size: 76px 132px;
}

.cmsfp__hero-inner {
  position: relative;
  padding: 72px 0 68px;
}

.cmsfp__eyebrow,
.cmsfp__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cmsfp__eyebrow {
  color: #dce8be;
}

.cmsfp__hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--cmsfp-white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.035em;
}

.cmsfp__location-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 650;
}

.cmsfp__pin {
  width: 9px;
  height: 9px;
  line-height: 9px;
  color: var(--cmsfp-green);
}

.cmsfp__intro {
  background: var(--cmsfp-white);
}

.cmsfp__intro-inner {
  position: relative;
  display: grid;
  grid-template-columns: 7px 1fr;
  gap: 26px;
  align-items: stretch;
  max-width: 980px;
  padding: 54px 0 32px;
}

.cmsfp__intro-mark {
  border-radius: 10px;
  background: linear-gradient(180deg, var(--cmsfp-green), #9fc456);
}

.cmsfp__intro p {
  margin: 0;
  max-width: 930px;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.65;
  color: #3f4b60;
}

.cmsfp__vendors {
  padding: 48px 0 82px;
  background: linear-gradient(180deg, #fff 0%, var(--cmsfp-soft) 100%);
}

.cmsfp__section-heading {
  margin-bottom: 30px;
}

.cmsfp__kicker {
  color: var(--cmsfp-green-dark);
}

.cmsfp__section-heading h2,
.cmsfp__where h2 {
  margin: 0;
  color: var(--cmsfp-ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
}

.cmsfp__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cmsfp__card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--cmsfp-line);
  border-radius: 18px;
  background: var(--cmsfp-white);
  box-shadow: 0 5px 18px rgba(30, 40, 72, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cmsfp__card:hover {
  transform: translateY(-5px);
  border-color: rgba(127,166,58,.48);
  box-shadow: var(--cmsfp-shadow);
}

.cmsfp__card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}

.cmsfp__logo-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background:
    linear-gradient(45deg, #fafbfc 25%, transparent 25%) 0 0/18px 18px,
    linear-gradient(-45deg, #fafbfc 25%, transparent 25%) 0 0/18px 18px,
    linear-gradient(45deg, transparent 75%, #fafbfc 75%) 0 0/18px 18px,
    linear-gradient(-45deg, transparent 75%, #fafbfc 75%) 0 0/18px 18px,
    #fff;
  border-bottom: 1px solid #eef1f5;
}

.cmsfp__logo {
  display: block;
  max-width: 100% !important;
  max-height: 158px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.cmsfp__logo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px dashed #cfd5df;
  border-radius: 10px;
  color: #9aa3b1;
  font-weight: 700;
}

.cmsfp__card-body {
  padding: 20px 22px 22px;
  text-align: center;
}

.cmsfp__card-body h3 {
  margin: 0;
  color: var(--cmsfp-ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 750;
}

.cmsfp__card-body p {
  margin: 7px 0 0;
  color: var(--cmsfp-muted);
  font-size: 13px;
}

.cmsfp__empty {
  padding: 34px;
  border: 1px dashed #ccd3df;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  color: var(--cmsfp-muted);
}

.cmsfp__where {
  padding: 0 0 78px;
  background: var(--cmsfp-soft);
}

.cmsfp__where-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  padding: 30px 34px;
  border-radius: 20px;
  background: var(--cmsfp-blue);
  box-shadow: 0 20px 42px rgba(32, 38, 95, .18);
  color: var(--cmsfp-white);
}

.cmsfp__where-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(127,166,58,.15);
}

.cmsfp__where-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: var(--cmsfp-green);
}

.cmsfp__where-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.cmsfp__where .cmsfp__kicker {
  margin-bottom: 4px;
  color: #d9e7b8;
}

.cmsfp__where h2 {
  color: var(--cmsfp-white);
  font-size: clamp(23px, 3.2vw, 34px);
}

.cmsfp__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 10px;
  background: var(--cmsfp-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none !important;
  transition: background .2s ease, transform .2s ease;
}

.cmsfp__button:hover {
  background: var(--cmsfp-green-dark);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cmsfp__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cmsfp__where-card { grid-template-columns: auto 1fr; }
  .cmsfp__button { grid-column: 1 / -1; justify-self: start; margin-left: 80px; }
}

@media (max-width: 600px) {
  .cmsfp__container { width: min(100% - 28px, 1160px); }
  .cmsfp__hero { min-height: 285px; }
  .cmsfp__hero-inner { padding: 56px 0 52px; }
  .cmsfp__hero h1 { font-size: clamp(40px, 14vw, 58px); }
  .cmsfp__intro-inner { gap: 17px; padding-top: 38px; }
  .cmsfp__intro p { font-size: 17px; }
  .cmsfp__vendors { padding: 38px 0 60px; }
  .cmsfp__grid { grid-template-columns: 1fr; gap: 16px; }
  .cmsfp__logo-wrap { height: 190px; padding: 28px; }
  .cmsfp__logo { max-height: 135px !important; }
  .cmsfp__where { padding-bottom: 54px; }
  .cmsfp__where-card { grid-template-columns: 1fr; gap: 15px; padding: 25px; }
  .cmsfp__where-icon { width: 50px; height: 50px; }
  .cmsfp__button { grid-column: auto; justify-self: stretch; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cmsfp__card,
  .cmsfp__button { transition: none; }
  .cmsfp__card:hover,
  .cmsfp__button:hover { transform: none; }
}
