.mrg-conversion-section,
.mrg-guide-cluster {
  --mrg-deep: #07150f;
  --mrg-green: #1b9e63;
  --mrg-green-soft: #74d6a4;
  --mrg-line: rgba(255, 255, 255, 0.14);
  font-family: var(--sans, "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.mrg-conversion-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 13% 7%, rgba(43, 183, 112, 0.2), transparent 34%),
    linear-gradient(145deg, #0d2a1f 0%, var(--mrg-deep) 58%, #10271e 100%);
  color: #fff;
}

.mrg-conversion-section::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.mrg-wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.mrg-conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
}

.mrg-kicker,
.mrg-guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--mrg-green-soft);
  font: 700 11px/1.3 var(--mono, ui-monospace, monospace);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mrg-kicker::before,
.mrg-guide-kicker::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}

.mrg-conversion-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: var(--serif, "Fraunces", Georgia, serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.03;
}

.mrg-conversion-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.73);
  font-size: 16px;
  line-height: 1.75;
}

.mrg-fleet-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, minmax(118px, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.mrg-fleet-card {
  position: relative;
  min-height: 126px;
  overflow: hidden;
  border: 1px solid var(--mrg-line);
  border-radius: 18px;
  background: #10271e;
}

.mrg-fleet-card:first-child { grid-row: 1 / 3; }
.mrg-fleet-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mrg-fleet-card::after { position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.76)); content: ""; }
.mrg-fleet-card span { position: absolute; z-index: 1; left: 15px; right: 15px; bottom: 13px; color: #fff; font-size: 12px; font-weight: 700; line-height: 1.3; }

.mrg-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.mrg-proof-row span {
  border: 1px solid var(--mrg-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 700;
}

.mrg-quote-card {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(248, 251, 249, .98);
  box-shadow: 0 34px 90px rgba(0,0,0,.3);
  color: #15211b;
}

.mrg-quote-card h3 { margin: 0; color: #15211b; font: 500 28px/1.15 var(--serif, "Fraunces", Georgia, serif); }
.mrg-quote-card > p { margin: 8px 0 22px; color: #617068; font-size: 12px; line-height: 1.55; }
.mrg-quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mrg-field { display: grid; gap: 6px; }
.mrg-field.mrg-full { grid-column: 1 / -1; }
.mrg-field label { color: #58675f; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.mrg-field input,
.mrg-field select,
.mrg-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ced9d2;
  border-radius: 11px;
  padding: 11px 12px;
  background: #fff;
  color: #15211b;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  outline: 0;
}

.mrg-field textarea { min-height: 84px; resize: vertical; }
.mrg-field input:focus,
.mrg-field select:focus,
.mrg-field textarea:focus { border-color: var(--mrg-green); box-shadow: 0 0 0 3px rgba(27,158,99,.12); }
.mrg-form-error { min-height: 18px; margin-top: 8px; color: #a23f35; font-size: 11px; }
.mrg-quote-submit {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #35b97d, var(--mrg-green));
  box-shadow: 0 12px 28px rgba(27,158,99,.22);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.mrg-form-note { margin: 11px 0 0; color: #718078; font-size: 10px; line-height: 1.5; text-align: center; }

.mrg-guide-cluster {
  padding: 72px 0;
  background: #edf3ee;
  color: #15211b;
}

.mrg-guide-kicker { color: #17784d; }
.mrg-guide-head { display: grid; grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr); gap: 40px; align-items: end; margin-bottom: 28px; }
.mrg-guide-head h2 { margin: 0; color: #15211b; font: 500 clamp(31px, 4vw, 46px)/1.08 var(--serif, "Fraunces", Georgia, serif); }
.mrg-guide-head p { margin: 0; color: #57665e; line-height: 1.7; }
.mrg-guide-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.mrg-guide-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #d5e0d8;
  border-radius: 17px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(21,33,27,.05);
  color: #15211b;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.mrg-guide-card:hover { transform: translateY(-3px); border-color: #76bc96; box-shadow: 0 16px 34px rgba(21,33,27,.09); }
.mrg-guide-card small { color: #1b9e63; font: 700 10px/1.3 var(--mono, ui-monospace, monospace); letter-spacing: .13em; text-transform: uppercase; }
.mrg-guide-card strong { display: block; margin-top: 16px; font: 600 17px/1.3 var(--sans, sans-serif); }
.mrg-guide-card span { margin-top: 16px; color: #688076; font-size: 18px; }

@media (max-width: 920px) {
  .mrg-conversion-grid,
  .mrg-guide-head { grid-template-columns: 1fr; }
  .mrg-conversion-grid { gap: 44px; }
  .mrg-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .mrg-wrap { width: min(100% - 32px, 1180px); }
  .mrg-conversion-section { padding: 70px 0; }
  .mrg-conversion-copy h2 { font-size: 39px; }
  .mrg-fleet-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 210px 128px; }
  .mrg-fleet-card:first-child { grid-column: 1 / -1; grid-row: auto; }
  .mrg-quote-grid,
  .mrg-guide-grid { grid-template-columns: 1fr; }
  .mrg-guide-cluster { padding: 60px 0; }
  .mrg-guide-card { min-height: 128px; }
}
