:root {
  --em-ink: #20262d;
  --em-muted: #64717d;
  --em-line: #d9dfdf;
  --em-paper: #f4f1ea;
  --em-panel: #ffffff;
  --em-green: #0b6b5b;
  --em-blue: #375a8c;
  --em-copper: #b46b2a;
  --em-radius: 8px;
  --em-shadow: 0 24px 70px rgba(31, 41, 51, .12);
  --em-container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.em-site {
  margin: 0;
  background: var(--em-paper);
  color: var(--em-ink);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

.em-site a {
  color: inherit;
}

.em-container {
  width: var(--em-container);
  margin: 0 auto;
}

.em-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 78px;
  padding: 14px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(244, 241, 234, .94);
  border-bottom: 1px solid rgba(31, 41, 51, .12);
  backdrop-filter: blur(18px);
}

.em-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 286px;
}

.em-brand__logo {
  display: block;
  width: 138px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.em-brand__text {
  display: grid;
  gap: 1px;
}

.em-brand__text span {
  font-weight: 800;
  font-size: 18px;
}

.em-brand__text small {
  color: var(--em-muted);
  font-size: 12px;
  max-width: 150px;
  line-height: 1.15;
}

.em-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.em-nav a,
.em-footer a {
  text-decoration: none;
}

.em-nav a {
  color: #3e4850;
  font-size: 15px;
  font-weight: 600;
}

.em-nav a:hover {
  color: var(--em-green);
}

.em-nav a.is-active,
.em-nav a[aria-current="page"] {
  color: var(--em-green);
  box-shadow: inset 0 -2px 0 var(--em-green);
}

.em-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.em-phone {
  color: var(--em-ink);
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
}

.em-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--em-ink);
  border-radius: var(--em-radius);
  background: var(--em-ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.em-site .em-button {
  color: #fff;
}

.em-button:hover {
  background: var(--em-green);
  border-color: var(--em-green);
}

.em-button--ghost {
  background: transparent;
  color: var(--em-ink);
}

.em-site .em-button--ghost {
  color: var(--em-ink);
}

.em-button--small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 14px;
}

.em-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #fff;
}

.em-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--em-ink);
}

.em-page-head {
  padding: 52px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--em-line);
}

.em-page-head + .em-section {
  padding-top: 30px;
}

.em-page-head__grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 44px;
}

.em-page-head__main {
  min-width: 0;
  max-width: 820px;
}

.em-page-head__side {
  max-width: 470px;
  margin-left: auto;
  color: #536271;
}

.em-page-head__side:empty {
  display: none;
}

.em-page-head__lead {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.62;
}

.em-page-head__meta {
  display: grid;
  gap: 8px;
  padding-bottom: 3px;
}

.em-page-head__meta b {
  color: var(--em-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.em-page-head__meta span {
  color: #34404a;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.5;
}

.em-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: #64717d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.em-breadcrumbs a {
  color: var(--em-green);
  text-decoration: none;
  transition: color .18s ease;
}

.em-breadcrumbs a:hover {
  color: var(--em-ink);
}

.em-breadcrumbs a:focus-visible {
  outline: 2px solid rgba(11, 107, 91, .35);
  outline-offset: 3px;
}

.em-breadcrumbs [aria-current="page"] {
  color: #56616c;
}

.em-breadcrumbs__sep {
  color: rgba(31, 41, 51, .35);
  font-weight: 700;
}

.em-breadcrumbs__current {
  min-width: 0;
}

.em-page-head h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.em-eyebrow {
  color: var(--em-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.em-hero {
  padding: 76px 0 54px;
  background:
    linear-gradient(90deg, rgba(11, 107, 91, .10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 107, 91, .08) 1px, transparent 1px),
    var(--em-paper);
  background-size: 42px 42px;
}

.em-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 46px;
  align-items: center;
}

.em-hero__grid > *,
.em-page-head__grid > *,
.em-section__head > *,
.em-answer-strip > *,
.em-cta__grid > * {
  min-width: 0;
}

.em-hero h1 {
  max-width: 760px;
  margin: 18px 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.em-hero__lead {
  max-width: 700px;
  color: #34404a;
  font-size: clamp(18px, 2vw, 23px);
}

.em-eyebrow,
.em-hero__lead {
  max-width: 100%;
  overflow-wrap: break-word;
}

.em-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.em-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.em-fact {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(31, 41, 51, .16);
  border-radius: var(--em-radius);
  background: rgba(255, 255, 255, .72);
}

.em-fact b {
  display: block;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.em-fact span {
  display: block;
  margin-top: 7px;
  color: var(--em-muted);
  font-size: 13px;
}

.em-hero__visual {
  position: relative;
}

.em-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--em-shadow);
}

.em-section {
  padding: 74px 0;
}

.em-section[id],
.em-cta[id],
.em-form[id] {
  scroll-margin-top: 104px;
}

.em-section--white {
  background: #fff;
}

.em-answer-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .58fr);
  gap: 16px;
  align-items: stretch;
}

.em-answer-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(31, 41, 51, .14);
  border-radius: var(--em-radius);
  background:
    linear-gradient(135deg, rgba(55, 90, 140, .10), transparent 48%),
    #fff;
}

.em-answer-card > * {
  min-width: 0;
}

.em-answer-card--dark {
  background: var(--em-ink);
  color: #fff;
}

.em-answer-card h2,
.em-answer-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.em-answer-card p {
  max-width: 68ch;
  margin: 0;
  color: #34404a;
  line-height: 1.62;
}

.em-answer-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #34404a;
}

.em-answer-card li::marker {
  color: var(--em-green);
}

.em-answer-card--dark p,
.em-answer-card--dark li {
  color: #d5dde4;
}

.em-answer-card--dark li::marker,
.em-answer-card--dark .em-eyebrow {
  color: #9de0d1;
}

.em-faq {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-answer-strip + .em-faq {
  margin-top: 38px;
}

.em-site .em-faq h2 {
  margin: 0 0 30px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.em-faq__list {
  display: grid;
  gap: 10px;
}

.em-faq details {
  padding: 20px 0;
  border-top: 1px solid rgba(31, 41, 51, .12);
}

.em-faq details:first-child {
  border-top: 0;
  padding-top: 0;
}

.em-faq summary {
  color: var(--em-ink);
  font-weight: 800;
  cursor: pointer;
}

.em-faq details p {
  max-width: 880px;
  margin: 10px 0 0;
  color: #34404a;
}

.em-section__head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.em-section h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.04;
}

.em-section__head p {
  margin: 0;
  color: var(--em-muted);
}

.em-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.em-grid {
  display: grid;
  gap: 16px;
}

.em-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.em-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.em-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: var(--em-panel);
}

.em-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.em-card p {
  margin: 0;
  color: var(--em-muted);
}

.em-card__link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--em-green);
  font-weight: 800;
  text-decoration: none;
}

.em-card__kicker {
  margin-bottom: 12px;
  color: var(--em-copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.em-service-grid {
  align-items: stretch;
}

.em-service-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding-top: 28px;
}

.em-service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--em-green);
}

.em-service-card:nth-child(3n + 2)::before {
  background: var(--em-blue);
}

.em-service-card:nth-child(3n)::before {
  background: var(--em-copper);
}

.em-rate-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .8fr));
  gap: 16px;
  margin-bottom: 18px;
}

.em-rate-guide__item {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background:
    linear-gradient(135deg, rgba(55, 90, 140, .10), transparent 52%),
    #fff;
}

.em-rate-guide__item--dark {
  background: var(--em-ink);
  color: #fff;
}

.em-rate-guide__item h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
}

.em-rate-guide__item p {
  margin: 0;
  color: #4c5a66;
}

.em-rate-guide__item--dark p {
  color: #d5dde4;
}

.em-rate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.em-rate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--em-line);
  border-top: 5px solid var(--em-green);
  border-radius: var(--em-radius);
  background:
    linear-gradient(180deg, rgba(11, 107, 91, .06), transparent 34%),
    #fff;
}

.em-rate-card:nth-child(2) {
  border-top-color: var(--em-blue);
}

.em-rate-card:nth-child(4) {
  border-top-color: var(--em-copper);
}

.em-rate-card--accent {
  background:
    linear-gradient(135deg, rgba(11, 107, 91, .28), transparent 44%),
    var(--em-ink);
  color: #fff;
}

.em-rate-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.em-rate-card__text {
  margin: 0;
  color: #4b5966;
  font-size: 15px;
}

.em-rate-card__fit {
  width: max-content;
  max-width: 100%;
  margin: -4px 0 13px;
  padding: 5px 9px;
  border: 1px solid rgba(11, 107, 91, .20);
  border-radius: 999px;
  color: var(--em-green);
  font-size: 12px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.em-rate-card__price {
  display: grid;
  gap: 2px;
  margin: 20px 0 18px;
}

.em-rate-card__price span {
  color: #72808b;
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
}

.em-rate-card__price b {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.em-rate-card__price em {
  width: max-content;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(180, 107, 42, .14);
  color: var(--em-copper);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.em-rate-card__meta {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: #34404a;
}

.em-rate-card__meta li::marker {
  color: var(--em-green);
}

.em-rate-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.em-rate-card__chips span {
  padding: 5px 8px;
  border: 1px solid rgba(31, 41, 51, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #34404a;
  font-size: 12px;
  font-weight: 500;
}

.em-rate-card__check {
  margin: 16px 0 0;
  color: var(--em-muted);
  font-size: 14px;
}

.em-rate-card .em-card__link {
  margin-top: auto;
  padding-top: 18px;
}

.em-rate-card--accent .em-card__kicker,
.em-rate-card--accent .em-rate-card__price em {
  color: #9de0d1;
}

.em-rate-card--accent .em-rate-card__fit {
  border-color: rgba(157, 224, 209, .34);
  color: #9de0d1;
}

.em-rate-card--accent .em-rate-card__text,
.em-rate-card--accent .em-rate-card__meta,
.em-rate-card--accent .em-rate-card__price span,
.em-rate-card--accent .em-rate-card__check {
  color: #d5dde4;
}

.em-rate-card--accent .em-rate-card__chips span {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: #edf5f3;
}

.em-rate-card--accent .em-card__link {
  color: #9de0d1;
}

.em-rate-note {
  margin: 18px 0 0;
  color: var(--em-muted);
  font-size: 14px;
}

.em-rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-rate-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.em-rate-table th,
.em-rate-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(31, 41, 51, .10);
  text-align: left;
  vertical-align: top;
}

.em-rate-table thead th {
  background: #f7f8f8;
  color: var(--em-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.em-rate-table tbody th {
  width: 230px;
  color: var(--em-green);
  font-weight: 600;
}

.em-rate-table tbody td {
  min-width: 145px;
}

.em-rate-full-compare {
  margin-top: 20px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
  overflow: hidden;
}

.em-rate-full-compare summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background:
    linear-gradient(135deg, rgba(11, 107, 91, .12), transparent 52%),
    #fff;
  color: var(--em-ink);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.em-rate-full-compare summary::-webkit-details-marker {
  display: none;
}

.em-rate-full-compare summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(31, 41, 51, .18);
  border-radius: 999px;
  color: var(--em-green);
  font-size: 24px;
  line-height: 1;
}

.em-rate-full-compare[open] summary::after {
  content: "-";
}

.em-rate-full-compare summary span {
  font-size: clamp(18px, 1.8vw, 24px);
}

.em-rate-full-compare summary b {
  color: var(--em-muted);
  font-size: 14px;
  font-weight: 400;
}

.em-rate-full-compare__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 22px;
  border-top: 1px solid var(--em-line);
}

.em-rate-full-compare__body > * {
  min-width: 0;
}

.em-rate-full-compare__head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .5fr);
  gap: 32px;
  align-items: end;
  min-width: 0;
}

.em-rate-full-compare__head > * {
  min-width: 0;
}

.em-rate-full-compare__head h3 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.em-rate-full-compare__side {
  min-width: 0;
}

.em-rate-full-compare__side p {
  margin: 0;
  color: var(--em-muted);
}

.em-rate-source-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--em-green);
  font-weight: 500;
  text-decoration: none;
}

.em-rate-source-link:hover {
  color: var(--em-ink);
}

.em-rate-compare-group {
  padding-top: 18px;
  border-top: 1px solid rgba(31, 41, 51, .10);
}

.em-rate-compare-group h3 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.em-rate-compare-group p {
  max-width: 820px;
  margin: 0 0 14px;
  color: var(--em-muted);
}

.em-rate-detail-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(31, 41, 51, .12);
  border-radius: var(--em-radius);
}

.em-rate-detail-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}

.em-rate-detail-table th,
.em-rate-detail-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(31, 41, 51, .10);
  text-align: left;
  vertical-align: top;
}

.em-rate-detail-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f7f8f8;
  color: var(--em-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.em-rate-detail-table tbody th {
  width: 250px;
  color: var(--em-green);
  font-weight: 600;
}

.em-rate-detail-table td {
  min-width: 130px;
  color: #34404a;
  font-weight: 400;
}

.em-rate-detail-table td.is-muted {
  color: #9aa5ad;
}

.em-rate-detail-table tbody tr:last-child th,
.em-rate-detail-table tbody tr:last-child td {
  border-bottom: 0;
}

.em-rate-text {
  color: var(--em-ink);
  font-weight: 500;
}

.em-rate-miss {
  color: #9aa5ad;
  font-weight: 500;
}

.em-rate-level {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
}

.em-rate-level__bars {
  display: inline-grid;
  grid-template-columns: repeat(4, 12px);
  gap: 3px;
  align-items: end;
  height: 20px;
}

.em-rate-level__bars i {
  display: block;
  height: 7px;
  border-radius: 3px;
  background: #d8dfe2;
}

.em-rate-level__bars i:nth-child(2) {
  height: 10px;
}

.em-rate-level__bars i:nth-child(3) {
  height: 14px;
}

.em-rate-level__bars i:nth-child(4) {
  height: 18px;
}

.em-rate-level__bars i.is-on {
  background: var(--em-green);
}

.em-rate-level--3 .em-rate-level__bars i.is-on {
  background: var(--em-blue);
}

.em-rate-level--4 .em-rate-level__bars i.is-on {
  background: var(--em-copper);
}

.em-rate-level em {
  color: #34404a;
  font-style: normal;
  font-weight: 500;
}

.em-rate-buying-notes {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-rate-buying-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 24px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: #34404a;
}

.em-rate-buying-notes li::marker {
  color: var(--em-green);
}

.em-rate-table tbody tr:last-child th,
.em-rate-table tbody tr:last-child td {
  border-bottom: 0;
}

.em-case-card {
  display: grid;
  align-content: start;
  min-height: 292px;
  background:
    linear-gradient(135deg, rgba(11, 107, 91, .08), transparent 42%),
    #fff;
}

.em-case-card--lead {
  background: var(--em-ink);
  color: #fff;
}

.em-case-card--lead p {
  color: #d5dde4;
}

.em-case-card--lead .em-card__link {
  color: #9de0d1;
}

.em-case-detail {
  display: block;
}

.em-case-detail__main {
  min-width: 0;
}

.em-case-detail--single {
  max-width: 980px;
}

.em-case-detail h2 {
  max-width: 960px;
  margin: 10px 0 18px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.04;
}

.em-case-detail__lead {
  max-width: 860px;
  margin: 0;
  color: #34404a;
  font-size: clamp(17px, 1.7vw, 21px);
}

.em-case-detail__lead + .em-answer-strip,
.em-case-detail .em-answer-strip:first-child {
  margin-top: 22px;
}

.em-case-detail__image {
  display: block;
  width: 100%;
  max-height: 440px;
  margin-top: 26px;
  border-radius: var(--em-radius);
  object-fit: cover;
  background: #e9eded;
  cursor: zoom-in;
}

.em-case-detail__content {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.em-case-section {
  padding: 26px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-rich-text {
  color: #34404a;
}

.em-rich-text > *:first-child {
  margin-top: 0;
}

.em-rich-text > *:last-child {
  margin-bottom: 0;
}

.em-rich-text p {
  margin: 0 0 15px;
}

.em-rich-text h2 {
  margin: 30px 0 14px;
  color: var(--em-ink);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.em-rich-text h3 {
  margin: 26px 0 12px;
  color: var(--em-ink);
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.14;
}

.em-rich-text ul,
.em-rich-text ol {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.em-rich-text li::marker {
  color: var(--em-green);
}

.em-rich-text strong,
.em-rich-text b {
  color: var(--em-ink);
}

.em-case-section__image {
  display: block;
  width: 100%;
  max-height: 520px;
  border-radius: var(--em-radius);
  object-fit: cover;
  background: #e9eded;
  cursor: zoom-in;
}

.em-case-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.em-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(17, 24, 31, .86);
  cursor: zoom-out;
}

.em-lightbox.is-open {
  display: grid;
}

.em-lightbox img {
  display: block;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 56px);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .36);
  cursor: zoom-out;
}

.em-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 0;
  cursor: pointer;
}

.em-lightbox__close::before,
.em-lightbox__close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 11px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.em-lightbox__close::before {
  transform: rotate(45deg);
}

.em-lightbox__close::after {
  transform: rotate(-45deg);
}

.em-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.em-project-card {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-project-card img,
.em-project-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e9eded;
}

.em-project-card__body {
  padding: 20px;
}

.em-project-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.em-project-card p {
  margin: 0;
  color: var(--em-muted);
}

.em-certificate-card {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background: #fff;
}

.em-certificate-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f4f5f2;
  cursor: zoom-in;
}

.em-certificate-card__body {
  padding: 20px;
}

.em-certificate-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.em-certificate-card p {
  margin: 10px 0 0;
  color: var(--em-muted);
}

.em-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: 18px;
  align-items: start;
}

.em-contact-panel {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  background:
    linear-gradient(135deg, rgba(11, 107, 91, .08), transparent 46%),
    #fff;
}

.em-contact-panel h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.em-contact-list {
  display: grid;
  gap: 14px;
}

.em-contact-list div {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 41, 51, .12);
}

.em-contact-list b {
  color: var(--em-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.em-contact-list span,
.em-contact-list a {
  color: #34404a;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.em-contact-list a {
  text-decoration: none;
}

.em-empty-state {
  padding: 26px;
  border: 1px dashed rgba(31, 41, 51, .28);
  border-radius: var(--em-radius);
  background: rgba(255, 255, 255, .68);
}

.em-empty-state h3,
.em-empty-state p {
  margin: 0;
}

.em-empty-state p {
  margin-top: 8px;
  color: var(--em-muted);
}

.em-process {
  counter-reset: step;
}

.em-process .em-card {
  position: relative;
  padding-top: 52px;
}

.em-process .em-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--em-copper);
  font-weight: 900;
}

.em-cta {
  padding: 70px 0;
  background: var(--em-ink);
  color: #fff;
}

.em-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .55fr);
  gap: 38px;
  align-items: start;
}

.em-cta h2 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
}

.em-cta p {
  color: #cfd6dd;
}

.em-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--em-radius);
  background: #fff;
  color: var(--em-ink);
}

.em-form label {
  display: grid;
  gap: 6px;
  color: #42505a;
  font-size: 13px;
  font-weight: 800;
}

.em-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.em-form input,
.em-form textarea {
  width: 100%;
  border: 1px solid #cfd6dd;
  border-radius: var(--em-radius);
  padding: 12px 13px;
  font: inherit;
}

.em-form textarea {
  min-height: 108px;
  resize: vertical;
}

.em-form__status {
  min-height: 24px;
  color: var(--em-green);
  font-weight: 800;
}

.em-form__status.is-error {
  color: #b13b2e;
}

.em-form.is-sending .em-button {
  opacity: .72;
  pointer-events: none;
}

.em-footer {
  padding: 52px 0 26px;
  background: #111820;
  color: #f3f5f6;
}

.em-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .5fr .8fr;
  gap: 36px;
}

.em-footer p,
.em-footer span {
  color: #b9c2ca;
}

.em-footer a {
  display: block;
  margin: 8px 0;
  color: #f3f5f6;
}

.em-footer__brand,
.em-footer__title {
  font-weight: 900;
}

.em-footer__logo {
  display: block;
  width: 156px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  margin-bottom: 16px;
}

.em-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(180, 107, 42, .55);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .em-answer-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .em-header {
    grid-template-columns: auto auto;
    gap: 18px;
  }

  .em-menu-toggle {
    display: block;
    justify-self: end;
  }

  .em-nav,
  .em-header__actions {
    display: none;
  }

  .em-menu-open .em-nav,
  .em-menu-open .em-header__actions {
    display: grid;
    grid-column: 1 / -1;
    justify-items: start;
    width: 100%;
  }

  .em-menu-open .em-nav {
    gap: 12px;
    padding-top: 12px;
  }

  .em-hero__grid,
  .em-page-head__grid,
  .em-section__head,
  .em-answer-strip,
  .em-case-detail,
  .em-cta__grid,
  .em-footer__grid {
    grid-template-columns: 1fr;
  }

  .em-page-head__grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .em-page-head__side {
    max-width: 720px;
    margin-left: 0;
  }

  .em-hero__grid {
    gap: 34px;
  }

  .em-hero h1 {
    font-size: clamp(42px, 6vw, 60px);
    line-height: 1;
  }

  .em-hero__visual {
    max-width: 760px;
  }

  .em-rate-guide {
    grid-template-columns: 1fr;
  }

  .em-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 980px) {
  .em-grid--3,
  .em-grid--2,
  .em-project-grid,
  .em-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --em-container: min(100vw - 28px, 1180px);
  }

  .em-brand {
    min-width: 0;
  }

  .em-brand__text small {
    display: none;
  }

  .em-breadcrumbs__sep--current,
  .em-breadcrumbs__current {
    display: none;
  }

  .em-breadcrumbs__home-label {
    font-size: 0;
  }

  .em-breadcrumbs__home-label::before {
    content: "Главная";
    font-size: 13px;
  }

  .em-hero {
    padding-top: 46px;
  }

  .em-hero h1 {
    font-size: 36px;
    line-height: 1;
  }

  .em-hero__lead {
    font-size: 17px;
  }

  .em-hero__facts {
    grid-template-columns: 1fr;
  }

  .em-rate-grid {
    grid-template-columns: 1fr;
  }

  .em-rate-card {
    min-height: 0;
  }

  .em-rate-buying-notes ul {
    grid-template-columns: 1fr;
  }

  .em-rate-full-compare summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .em-rate-full-compare summary b {
    display: block;
    margin-top: 4px;
  }

  .em-rate-full-compare__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .em-section,
  .em-cta {
    padding: 52px 0;
  }

  .em-footer__bottom {
    display: grid;
  }
}

@media (max-width: 340px) {
  .em-hero h1 {
    font-size: 31px;
  }

  .em-answer-card {
    padding: 18px;
  }

  .em-answer-card h2,
  .em-answer-card h3,
  .em-section__head h2 {
    font-size: 26px;
  }
}
