:root {
  --jdml-black: #101416;
  --jdml-charcoal: #171d20;
  --jdml-ink: #0c1113;
  --jdml-green: #17612d;
  --jdml-green-2: #238546;
  --jdml-green-3: #0f4f27;
  --jdml-blue: #2f74b7;
  --jdml-cream: #f4f6f1;
  --jdml-white: #ffffff;
  --jdml-text: #172023;
  --jdml-muted: #5e696d;
  --jdml-border: #dfe5dc;
  --jdml-shadow: 0 20px 60px rgba(10, 16, 18, 0.16);
  --jdml-container: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.jdml-body {
  margin: 0;
  color: var(--jdml-text);
  background: var(--jdml-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

.jdml-site {
  max-width: 100%;
  overflow-x: hidden;
}

.jdml-site a {
  color: inherit;
}

.jdml-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 3.4vw, 42px);
  background: rgba(18, 23, 25, 0.98);
  color: var(--jdml-white);
  box-shadow: 0 10px 30px rgba(10, 16, 18, 0.22);
  backdrop-filter: blur(12px);
}

.jdml-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
  text-decoration: none;
}

.jdml-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.jdml-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.05;
}

.jdml-brand small {
  display: block;
  margin-top: 4px;
  color: #a7c8e9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jdml-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  flex-wrap: nowrap;
}

.jdml-nav a {
  display: inline-flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 6px;
  color: #eaf0eb;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.jdml-nav a:hover,
.jdml-nav a.is-active {
  background: rgba(35, 133, 70, 0.22);
  color: #fff;
}

.jdml-menu-button {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  padding: 10px 12px;
  font-weight: 900;
}

.jdml-main {
  overflow: hidden;
}

.jdml-hero,
.jdml-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: min(680px, calc(100vh - 68px));
  padding: clamp(58px, 7vw, 92px) max(clamp(24px, 5vw, 72px), calc((100vw - var(--jdml-container)) / 2 + 42px)) clamp(54px, 6vw, 78px);
  background:
    linear-gradient(115deg, rgba(12, 17, 19, 0.97) 0%, rgba(13, 45, 28, 0.96) 52%, rgba(19, 91, 42, 0.93) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    var(--jdml-black);
  background-size: auto, 72px 72px, auto;
  color: #fff;
}

.jdml-page-hero {
  display: block;
  min-height: 0;
  padding-bottom: clamp(46px, 7vw, 84px);
}

.jdml-hero h1,
.jdml-page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff !important;
  font-size: clamp(46px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.jdml-page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.jdml-hero p,
.jdml-page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #dbe8df;
  font-size: clamp(18px, 1.45vw, 22px);
}

.jdml-hero__media {
  justify-self: center;
  width: min(100%, 460px);
  padding: clamp(10px, 1.4vw, 16px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.jdml-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.jdml-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.jdml-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
}

.jdml-button--primary {
  background: var(--jdml-green-2);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(13, 80, 37, 0.28);
}

.jdml-button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff !important;
}

.jdml-button--light {
  background: #fff !important;
  color: var(--jdml-black) !important;
  min-width: 190px;
}

.jdml-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.jdml-hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #ecf5ef;
  font-size: 13px;
  font-weight: 850;
}

.jdml-section {
  padding: clamp(44px, 6vw, 76px) max(clamp(22px, 4vw, 58px), calc((100vw - var(--jdml-container)) / 2 + 42px));
}

.jdml-section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.jdml-section h2,
.jdml-split h2,
.jdml-warning h2,
.jdml-cta h2 {
  margin: 0;
  color: var(--jdml-text);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.jdml-section-heading p,
.jdml-section p,
.jdml-split p,
.jdml-warning p,
.jdml-cta p {
  color: var(--jdml-muted);
  font-size: 17px;
}

.jdml-card-grid,
.jdml-mini-grid,
.jdml-step-grid,
.jdml-location-grid,
.jdml-contact-grid,
.jdml-specialty-grid,
.jdml-keyword-grid,
.jdml-limit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jdml-service-card,
.jdml-mini-card,
.jdml-specialty-card,
.jdml-keyword-card,
.jdml-panel,
.jdml-location,
.jdml-step,
.jdml-form,
.jdml-faq-list details {
  border: 1px solid var(--jdml-border);
  border-radius: 8px;
  background: var(--jdml-white);
  box-shadow: 0 10px 28px rgba(10, 16, 18, 0.06);
}

.jdml-keyword-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6f2 100%);
}

.jdml-keyword-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jdml-keyword-card {
  padding: 22px;
}

.jdml-keyword-card h3 {
  margin: 0 0 10px;
  color: var(--jdml-text);
  font-size: 20px;
  line-height: 1.18;
}

.jdml-keyword-card p {
  margin: 0;
  font-size: 15px;
}

.jdml-keyword-note {
  max-width: 940px;
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--jdml-green);
  border-radius: 0 8px 8px 0;
  background: rgba(35, 133, 70, 0.08);
  font-weight: 750;
}

.jdml-local-proof {
  background: #fff;
}

.jdml-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.jdml-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(35, 133, 70, 0.24);
  border-radius: 8px;
  background: rgba(35, 133, 70, 0.08);
  color: var(--jdml-green-2);
  font-weight: 800;
  text-decoration: none;
}

.jdml-inline-links a:hover {
  background: rgba(35, 133, 70, 0.14);
}

.jdml-service-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.jdml-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(35, 133, 70, 0.34);
  box-shadow: 0 18px 42px rgba(10, 16, 18, 0.12);
}

.jdml-card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--jdml-ink), #1f292c);
  color: #fff;
  font-weight: 1000;
  margin-bottom: 16px;
}

.jdml-card-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.jdml-card-kicker {
  color: var(--jdml-green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jdml-service-card h3,
.jdml-mini-card span,
.jdml-panel h2,
.jdml-panel h3,
.jdml-footer h2,
.jdml-footer h3 {
  margin: 8px 0 8px;
  color: var(--jdml-text);
  font-size: 22px;
  line-height: 1.12;
}

.jdml-service-card p,
.jdml-mini-card small,
.jdml-specialty-card p {
  margin: 0;
  color: var(--jdml-muted);
  font-size: 15px;
}

.jdml-card-link {
  margin-top: 18px;
  color: var(--jdml-green);
  font-size: 14px;
  font-weight: 950;
}

.jdml-dark-band {
  background: #12191b;
  color: #fff;
}

.jdml-dark-band h2,
.jdml-dark-band p {
  color: #fff;
}

.jdml-step {
  min-height: 126px;
  padding: 22px;
  background: #1e292c;
  border-color: rgba(255, 255, 255, 0.1);
}

.jdml-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--jdml-green-2);
  color: #fff;
  font-weight: 1000;
}

.jdml-step p {
  margin: 16px 0 0;
  color: #eef6ef;
  font-weight: 850;
}

.jdml-two-column,
.jdml-split,
.jdml-trust {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.jdml-panel,
.jdml-disclaimer-box,
.jdml-warning {
  padding: 26px;
}

.jdml-panel--green,
.jdml-disclaimer-box {
  background: var(--jdml-green);
  color: #fff;
  border-radius: 8px;
}

.jdml-panel--green h2,
.jdml-panel--green p,
.jdml-disclaimer-box h2,
.jdml-disclaimer-box h3,
.jdml-disclaimer-box p {
  color: #fff;
}

.jdml-check-list,
.jdml-trust ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.jdml-check-list li,
.jdml-trust li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  font-weight: 750;
}

.jdml-check-list li::before,
.jdml-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--jdml-green-2);
}

.jdml-warning {
  margin: 0 clamp(20px, 5vw, 72px);
  background: #fff7e6;
  border: 1px solid #f0d69d;
  border-radius: 8px;
}

.jdml-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.jdml-mini-card {
  display: block;
  min-height: 150px;
  padding: 20px;
  text-decoration: none;
}

.jdml-mini-card span {
  display: block;
  margin-top: 0;
}

.jdml-specialty-paths {
  padding-top: clamp(20px, 3vw, 40px);
}

.jdml-specialty-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jdml-specialty-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  text-decoration: none;
}

.jdml-specialty-card span {
  color: var(--jdml-green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jdml-specialty-card h3 {
  margin: 0;
  color: var(--jdml-text);
  font-size: 24px;
  line-height: 1.1;
}

.jdml-specialty-card strong {
  align-self: end;
  color: var(--jdml-green);
  font-size: 14px;
}

.jdml-scope-limits {
  padding-top: clamp(26px, 4vw, 46px);
  padding-bottom: clamp(26px, 4vw, 46px);
  background: #fff;
}

.jdml-limit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jdml-limit-grid div {
  min-height: 82px;
  padding: 18px;
  border: 1px solid #ead7a7;
  border-radius: 8px;
  background: #fff8e8;
  color: #5c4514;
  font-size: 15px;
  font-weight: 900;
}

.jdml-area-list {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--jdml-border);
  border-radius: 8px;
  background: #fff;
}

.jdml-area-list h2 {
  margin: 0;
}

.jdml-area-list p {
  color: var(--jdml-muted);
}

.jdml-area-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.jdml-area-list span {
  padding: 7px 10px;
  border-radius: 6px;
  background: #eef4ef;
  color: var(--jdml-text);
  font-size: 13px;
  font-weight: 900;
}

.jdml-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(28px, 4vw, 46px) max(clamp(22px, 4vw, 58px), calc((100vw - var(--jdml-container)) / 2 + 42px)) clamp(48px, 7vw, 76px);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background: linear-gradient(120deg, var(--jdml-black), var(--jdml-green));
  color: #fff;
}

.jdml-cta .jdml-button {
  flex: 0 0 auto;
}

.jdml-cta h2,
.jdml-cta p {
  color: #fff;
}

.jdml-location-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 24px;
}

.jdml-location {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 20px;
  font-weight: 950;
}

.jdml-faq-list {
  display: grid;
  gap: 12px;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.jdml-faq-list details {
  padding: 0;
  overflow: hidden;
}

.jdml-faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 900;
}

.jdml-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--jdml-muted);
  font-size: 17px;
}

.jdml-success {
  margin: 28px clamp(20px, 5vw, 72px) 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #e8f8ed;
  color: #0f5f2d;
  font-weight: 900;
}

.jdml-error {
  margin: 28px clamp(20px, 5vw, 72px) 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff1f0;
  color: #8f1f17;
  font-weight: 900;
}

.jdml-photo-warning {
  margin: 14px clamp(20px, 5vw, 72px) 0;
  padding: 16px 18px;
  border-left: 4px solid #c87808;
  border-radius: 6px;
  background: #fff7e8;
  color: #714407;
  font-weight: 800;
}

.jdml-form {
  margin: clamp(32px, 5vw, 62px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 92px);
  padding: clamp(22px, 4vw, 38px);
}

.jdml-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.jdml-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--jdml-text);
  font-weight: 850;
}

.jdml-hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.jdml-form input,
.jdml-form select,
.jdml-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8d0;
  border-radius: 6px;
  background: #fbfcfb;
  padding: 12px 13px;
  color: var(--jdml-text);
  font: inherit;
}

.jdml-form textarea {
  resize: vertical;
}

.jdml-form-note {
  margin: 10px 0 22px;
  padding: 16px;
  border-radius: 8px;
  background: #f0f4f0;
  color: var(--jdml-muted);
  font-size: 15px;
}

.jdml-photo-upload {
  margin: 6px 0 20px;
  padding: 20px;
  border: 1px solid #cfd8d0;
  border-radius: 8px;
  background: #f6f9f6;
}

.jdml-photo-upload legend {
  padding: 0 7px;
  color: var(--jdml-text);
  font-size: 18px;
  font-weight: 950;
}

.jdml-photo-upload legend span {
  color: var(--jdml-muted);
  font-size: 13px;
  font-weight: 750;
}

.jdml-photo-upload > p {
  margin: 0 0 14px;
  color: var(--jdml-muted);
  font-size: 14px;
}

.jdml-form .jdml-photo-picker {
  display: grid;
  gap: 8px;
  margin: 0;
}

.jdml-photo-picker > span {
  color: var(--jdml-text);
  font-size: 14px;
  font-weight: 900;
}

.jdml-form .jdml-photo-picker input[type="file"] {
  min-height: 54px;
  padding: 7px;
  background: #fff;
  cursor: pointer;
}

.jdml-photo-picker input[type="file"]::file-selector-button {
  min-height: 38px;
  margin-right: 12px;
  padding: 9px 13px;
  border: 0;
  border-radius: 5px;
  background: var(--jdml-black);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.jdml-photo-status {
  margin-top: 10px;
  color: #405047;
  font-size: 13px;
  font-weight: 800;
}

.jdml-photo-status.is-error {
  color: #9a2d21;
}

.jdml-photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.jdml-photo-preview:empty {
  display: none;
}

.jdml-photo-preview__item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d6dfd8;
  border-radius: 6px;
  background: #fff;
}

.jdml-photo-preview__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eeea;
}

.jdml-photo-preview__item figcaption {
  overflow: hidden;
  padding: 7px 8px;
  color: #405047;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jdml-photo-upload .jdml-photo-privacy {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #dce4de;
  color: #405047;
  font-size: 13px;
}

.jdml-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(170px, 0.6fr) minmax(170px, 0.6fr) minmax(210px, 0.75fr);
  gap: 28px;
  padding: 46px max(clamp(22px, 4vw, 58px), calc((100vw - var(--jdml-container)) / 2 + 42px)) 96px;
  background: #0d1113;
  color: #eaf0eb;
}

.jdml-footer h2,
.jdml-footer h3 {
  color: #fff;
}

.jdml-footer p,
.jdml-footer a {
  color: #c9d4ce;
}

.jdml-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.jdml-family {
  color: #91b0d0 !important;
}

.jdml-footer-disclaimer {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b8c3bd;
  font-size: 14px;
}

.jdml-sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  gap: 8px;
}

.jdml-sticky-cta a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 6px;
  background: var(--jdml-green-2);
  color: #fff !important;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 16, 18, 0.24);
}

@media (max-width: 1340px) {
  .jdml-header {
    align-items: center;
  }

  .jdml-menu-button {
    display: inline-flex;
  }

  .jdml-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 10px 18px 18px;
    background: var(--jdml-black);
  }

  .jdml-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jdml-nav a {
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 1080px) {
  .jdml-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .jdml-hero__media {
    justify-self: start;
    max-width: 440px;
  }

  .jdml-card-grid,
  .jdml-mini-grid,
  .jdml-step-grid,
  .jdml-location-grid,
  .jdml-contact-grid,
  .jdml-specialty-grid,
  .jdml-limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jdml-header,
  .jdml-hero,
  .jdml-page-hero,
  .jdml-section,
  .jdml-footer {
    width: 100%;
    max-width: 100vw;
  }

  .jdml-brand {
    min-width: 0;
  }

  .jdml-brand img {
    width: 44px;
    height: 44px;
  }

  .jdml-brand strong {
    font-size: 16px;
  }

  .jdml-brand small {
    font-size: 10px;
  }

  .jdml-nav.is-open,
  .jdml-card-grid,
  .jdml-mini-grid,
  .jdml-step-grid,
  .jdml-location-grid,
  .jdml-contact-grid,
  .jdml-form-grid,
  .jdml-two-column,
  .jdml-split,
  .jdml-trust,
  .jdml-footer {
    grid-template-columns: 1fr;
  }

  .jdml-hero,
  .jdml-page-hero {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .jdml-hero h1,
  .jdml-page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.04;
    overflow-wrap: normal;
    max-width: calc(100vw - 48px);
  }

  .jdml-hero p,
  .jdml-page-hero p,
  .jdml-section-heading,
  .jdml-section h2,
  .jdml-section p {
    font-size: 18px;
    max-width: calc(100vw - 48px);
  }

  .jdml-hero__media {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .jdml-service-card {
    min-height: 0;
  }

  .jdml-cta {
    display: grid;
  }

  .jdml-sticky-cta {
    display: flex;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .jdml-sticky-cta a {
    flex: 1;
  }
}

/* Major polish pass */
body.jdml-body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.jdml-header {
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.jdml-brand img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.jdml-nav a {
  white-space: nowrap;
}

.jdml-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfe9d7;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jdml-eyebrow--dark {
  border-color: rgba(23, 97, 45, 0.18);
  background: rgba(23, 97, 45, 0.08);
  color: var(--jdml-green);
}

.jdml-hero {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.7fr);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(10, 15, 17, 0.99) 0%, rgba(12, 39, 26, 0.98) 54%, rgba(20, 100, 45, 0.95) 100%),
    var(--jdml-black);
}

.jdml-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--jdml-green-2), var(--jdml-blue), var(--jdml-green-2));
  opacity: 0.9;
}

.jdml-hero__copy {
  position: relative;
  z-index: 1;
}

.jdml-hero h1 {
  margin-top: 18px;
  max-width: 930px;
  text-wrap: balance;
}

.jdml-hero p {
  color: #e4eee7;
}

.jdml-hero__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  color: #d1dfd7;
  font-size: 15px;
  font-weight: 850;
}

.jdml-hero__contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jdml-hero__contact span::before,
.jdml-hero__proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jdml-green-2);
  box-shadow: 0 0 0 4px rgba(35, 133, 70, 0.18);
}

.jdml-hero__proof span {
  gap: 9px;
}

.jdml-hero__media {
  position: relative;
  transform: rotate(0.5deg);
}

.jdml-quote-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--jdml-container);
  margin: -34px auto 0;
  padding: 0 clamp(22px, 4vw, 42px);
  position: relative;
  z-index: 4;
}

.jdml-quote-strip div {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--jdml-border);
  box-shadow: 0 16px 38px rgba(10, 16, 18, 0.1);
}

.jdml-quote-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.jdml-quote-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.jdml-quote-strip strong {
  color: var(--jdml-text);
  font-size: 18px;
  line-height: 1.15;
}

.jdml-quote-strip span {
  color: var(--jdml-muted);
  font-size: 14px;
}

.jdml-service-card {
  min-height: 260px;
  border-color: rgba(12, 17, 19, 0.09);
}

.jdml-service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, transparent 50%, rgba(35, 133, 70, 0.12) 50%);
}

.jdml-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.jdml-card-list em {
  padding: 5px 8px;
  border-radius: 6px;
  background: #eef4ef;
  color: #304046;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.jdml-card-link {
  margin-top: auto;
  padding-top: 20px;
}

.jdml-job-snapshot {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(244,246,241,0.95)),
    var(--jdml-cream);
}

.jdml-job-grid,
.jdml-detail-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.jdml-job-grid div,
.jdml-detail-list div {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--jdml-border);
  border-left: 5px solid var(--jdml-green-2);
  border-radius: 8px;
  background: #fff;
  color: var(--jdml-text);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(10, 16, 18, 0.05);
}

.jdml-dark-band {
  background:
    linear-gradient(135deg, rgba(13, 17, 19, 0.98), rgba(19, 31, 34, 0.98)),
    var(--jdml-black);
}

.jdml-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jdml-step {
  min-height: 210px;
}

.jdml-step h3 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}

.jdml-step p {
  margin-top: 0;
  color: #cbd8d0;
  font-weight: 650;
}

.jdml-truck-band {
  align-items: stretch;
}

.jdml-truck-band > div:first-child {
  align-self: center;
}

.jdml-scope-cards {
  display: grid;
  gap: 14px;
}

.jdml-scope-cards .jdml-panel,
.jdml-scope-cards .jdml-disclaimer-box {
  min-height: 150px;
}

.jdml-details-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fff;
}

.jdml-details-card h2 {
  margin-top: 14px;
}

.jdml-trust {
  background: var(--jdml-cream);
}

.jdml-trust ul {
  padding: 24px;
  border: 1px solid var(--jdml-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(10, 16, 18, 0.06);
}

.jdml-cta {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(10, 16, 18, 0.18);
}

.jdml-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.jdml-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 22px;
  padding: clamp(34px, 5vw, 68px) max(clamp(22px, 4vw, 58px), calc((100vw - var(--jdml-container)) / 2 + 42px)) clamp(56px, 7vw, 92px);
  align-items: start;
}

.jdml-quote-layout .jdml-form {
  margin: 0;
}

.jdml-form__intro {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--jdml-border);
}

.jdml-form__intro h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
}

.jdml-form__intro p {
  margin: 8px 0 0;
  color: var(--jdml-muted);
}

.jdml-quote-aside {
  position: sticky;
  top: 94px;
  padding: 24px;
  border-radius: 8px;
  background: var(--jdml-black);
  color: #fff;
  box-shadow: 0 18px 42px rgba(10, 16, 18, 0.16);
}

.jdml-quote-aside h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.12;
}

.jdml-quote-aside p,
.jdml-quote-aside li {
  color: #d5e0d9;
}

.jdml-quote-aside ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.jdml-contact-panel {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.jdml-contact-panel strong,
.jdml-contact-panel a {
  color: #fff;
}

.jdml-contact-panel a {
  font-size: 20px;
  font-weight: 950;
  text-decoration: none;
}

.jdml-form input:focus,
.jdml-form select:focus,
.jdml-form textarea:focus {
  outline: 3px solid rgba(35, 133, 70, 0.18);
  border-color: var(--jdml-green-2);
}

.jdml-footer {
  border-top: 8px solid var(--jdml-green);
}

@media (max-width: 1480px) {
  .jdml-nav a {
    padding-inline: 8px;
    font-size: 12px;
  }
}

@media (max-width: 1240px) {
  .jdml-job-grid,
  .jdml-detail-list,
  .jdml-step-grid,
  .jdml-specialty-grid,
  .jdml-keyword-grid,
  .jdml-limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jdml-details-section,
  .jdml-quote-layout {
    grid-template-columns: 1fr;
  }

  .jdml-quote-aside {
    position: static;
  }
}

@media (max-width: 1080px) {
  .jdml-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .jdml-hero__media {
    justify-self: start;
    max-width: 440px;
    transform: none;
  }

  .jdml-quote-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .jdml-quote-strip div,
  .jdml-quote-strip div:first-child,
  .jdml-quote-strip div:last-child {
    border-radius: 0;
  }
}

@media (max-width: 760px) {
  body.jdml-body {
    padding-bottom: 72px;
  }

  .jdml-eyebrow {
    max-width: calc(100vw - 48px);
    white-space: normal;
  }

  .jdml-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .jdml-hero h1 {
    margin-top: 14px;
    max-width: calc(100vw - 48px);
    font-size: clamp(36px, 10vw, 44px);
  }

  .jdml-hero p {
    max-width: calc(100vw - 48px);
  }

  .jdml-hero__media {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .jdml-job-grid,
  .jdml-detail-list,
  .jdml-step-grid,
  .jdml-quote-layout,
  .jdml-specialty-grid,
  .jdml-keyword-grid,
  .jdml-limit-grid {
    grid-template-columns: 1fr;
  }

  .jdml-step {
    min-height: 0;
  }

  .jdml-cta__actions {
    justify-content: stretch;
  }

  .jdml-cta__actions .jdml-button {
    width: 100%;
  }

  .jdml-quote-layout {
    padding-inline: 20px;
  }

  .jdml-form {
    padding: 20px;
  }

  .jdml-section h2,
  .jdml-split h2,
  .jdml-warning h2,
  .jdml-cta h2,
  .jdml-details-card h2 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .jdml-section-heading {
    font-size: inherit;
  }
}

/* Visual polish pass: stronger brand rhythm */
.jdml-main {
  background:
    linear-gradient(180deg, #f7f9f5 0%, var(--jdml-cream) 46%, #ffffff 100%);
}

.jdml-header {
  padding-block: 12px;
}

.jdml-nav a.is-active {
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.2);
}

.jdml-hero {
  min-height: min(720px, calc(100vh - 70px));
  isolation: isolate;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.jdml-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(128deg, transparent 0 42%, rgba(255, 255, 255, 0.045) 42% 42.6%, transparent 42.6% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 86px 86px;
  opacity: 0.75;
}

.jdml-hero__media {
  border: 7px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--jdml-green-2), var(--jdml-blue)) border-box;
}

.jdml-hero__media::before {
  content: "JD";
  position: absolute;
  z-index: -1;
  right: -56px;
  top: -82px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 180px;
  font-weight: 1000;
  line-height: 1;
}

.jdml-button {
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.jdml-button:hover {
  transform: translateY(-1px);
}

.jdml-button--primary:hover {
  background: #2b9952;
  box-shadow: 0 16px 34px rgba(13, 80, 37, 0.38);
}

.jdml-button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.jdml-quote-strip {
  gap: 14px;
}

.jdml-quote-strip div,
.jdml-quote-strip div:first-child,
.jdml-quote-strip div:last-child {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.jdml-quote-strip div {
  border-top: 5px solid var(--jdml-green-2);
}

.jdml-quote-strip div::before {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 86px;
  height: 86px;
  background: rgba(35, 133, 70, 0.1);
  transform: rotate(45deg);
}

.jdml-section {
  position: relative;
}

.jdml-section-heading h2 {
  text-wrap: balance;
}

.jdml-card-grid {
  gap: 22px;
}

.jdml-service-card {
  min-height: 286px;
  padding: 26px;
  background:
    linear-gradient(145deg, #fff 0%, #fff 72%, #edf7f0 72%, #edf7f0 100%);
  border-top: 4px solid rgba(35, 133, 70, 0.86);
}

.jdml-service-card::after {
  width: 112px;
  height: 112px;
  background: linear-gradient(135deg, transparent 50%, rgba(35, 133, 70, 0.15) 50%);
}

.jdml-service-card:hover .jdml-card-icon {
  background: linear-gradient(145deg, var(--jdml-green), var(--jdml-green-2));
}

.jdml-card-icon {
  width: 46px;
  height: 46px;
}

.jdml-card-kicker {
  color: #0f6b32;
}

.jdml-card-list em {
  border: 1px solid rgba(23, 97, 45, 0.08);
}

.jdml-specialty-paths {
  background: #ffffff;
  border-block: 1px solid rgba(16, 20, 22, 0.06);
}

.jdml-specialty-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 70%, #f1f7f2 100%);
  border-top: 4px solid rgba(47, 116, 183, 0.78);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.jdml-specialty-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(10, 16, 18, 0.12);
}

.jdml-job-snapshot {
  background:
    linear-gradient(180deg, #f7f9f5, #ffffff);
}

.jdml-job-grid div,
.jdml-detail-list div {
  background:
    linear-gradient(90deg, #ffffff, #fbfdfb);
}

.jdml-dark-band {
  border-top: 8px solid var(--jdml-green);
  border-bottom: 8px solid var(--jdml-green);
}

.jdml-step {
  border-top: 3px solid rgba(35, 133, 70, 0.9);
}

.jdml-truck-band {
  background:
    linear-gradient(90deg, var(--jdml-cream), #ffffff);
}

.jdml-details-section {
  border-block: 1px solid rgba(16, 20, 22, 0.06);
}

.jdml-trust {
  background:
    linear-gradient(180deg, var(--jdml-cream), #ffffff);
}

.jdml-cta {
  position: relative;
  overflow: hidden;
}

.jdml-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(32deg);
}

.jdml-cta > * {
  position: relative;
  z-index: 1;
}

.jdml-footer {
  background:
    linear-gradient(180deg, #0d1113 0%, #080b0c 100%);
}

.jdml-footer a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .jdml-hero__media::before {
    display: none;
  }
}

/* Full site polish pass: service pages, rhythm, and responsive structure */
:root {
  --jdml-container: 1320px;
  --jdml-side-pad: clamp(22px, 4.5vw, 54px);
  --jdml-section-y: clamp(54px, 7vw, 92px);
  --jdml-card-shadow: 0 16px 42px rgba(10, 16, 18, 0.08);
  --jdml-card-shadow-strong: 0 24px 70px rgba(10, 16, 18, 0.14);
}

.jdml-header {
  padding-inline: max(18px, calc((100vw - var(--jdml-container)) / 2 + 24px));
}

.jdml-main {
  background:
    linear-gradient(180deg, #f8faf7 0%, #f2f5ef 42%, #ffffff 100%);
}

.jdml-section,
.jdml-page-hero,
.jdml-hero,
.jdml-quote-layout,
.jdml-faq-list {
  padding-inline: max(var(--jdml-side-pad), calc((100vw - var(--jdml-container)) / 2 + var(--jdml-side-pad)));
}

.jdml-section {
  padding-top: var(--jdml-section-y);
  padding-bottom: var(--jdml-section-y);
}

.jdml-page-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 43vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background:
    linear-gradient(118deg, rgba(9, 14, 16, 0.98) 0%, rgba(11, 39, 25, 0.98) 56%, rgba(19, 94, 43, 0.94) 100%),
    var(--jdml-black);
  border-bottom: 8px solid var(--jdml-green-2);
}

.jdml-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 57%, rgba(255, 255, 255, 0.045) 57% 57.6%, transparent 57.6%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 82px 82px;
  opacity: 0.7;
}

.jdml-page-hero::after {
  content: "JD";
  position: absolute;
  right: max(20px, calc((100vw - var(--jdml-container)) / 2 + 22px));
  bottom: -34px;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(120px, 18vw, 250px);
  font-weight: 1000;
  line-height: 0.8;
}

.jdml-page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.jdml-page-hero h1 {
  margin-top: 16px;
  text-wrap: balance;
}

.jdml-page-hero p {
  max-width: 720px;
  color: #e2eee6;
}

.jdml-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.jdml-page-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
  color: #eef7f1;
  font-size: 13px;
  font-weight: 900;
}

.jdml-hero {
  padding-top: clamp(72px, 8vw, 110px);
}

.jdml-quote-strip {
  max-width: var(--jdml-container);
}

.jdml-service-overview {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  align-items: stretch;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f1f7f2 58%, #f1f7f2 100%);
}

.jdml-service-overview > div:first-child {
  align-self: center;
}

.jdml-service-overview h2 {
  margin-top: 14px;
}

.jdml-service-overview .jdml-panel {
  display: grid;
  align-content: center;
  box-shadow: var(--jdml-card-shadow-strong);
}

.jdml-panel--green {
  background:
    linear-gradient(145deg, #0f4f27, #176c33 72%, #228443);
}

.jdml-check-list {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 22px;
  margin-top: 26px;
}

.jdml-check-list li {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 14px 11px 34px;
  border: 1px solid rgba(16, 20, 22, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(10, 16, 18, 0.055);
}

.jdml-check-list li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.jdml-scope-limits {
  background:
    linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}

.jdml-limit-grid {
  gap: 18px;
}

.jdml-limit-grid div {
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 22px;
  border-left: 5px solid #d89b2a;
  box-shadow: 0 12px 32px rgba(119, 79, 12, 0.075);
}

.jdml-warning {
  max-width: var(--jdml-container);
  margin: 0 auto;
  padding: 28px max(var(--jdml-side-pad), 28px);
  border-radius: 0;
  border-inline: 0;
}

.jdml-related-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f3 100%);
}

.jdml-mini-grid {
  gap: 18px;
}

.jdml-mini-card {
  min-height: 170px;
  padding: 24px;
  border-top: 4px solid var(--jdml-green-2);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.jdml-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--jdml-card-shadow-strong);
}

.jdml-service-card,
.jdml-specialty-card,
.jdml-location,
.jdml-panel,
.jdml-form,
.jdml-faq-list details {
  box-shadow: var(--jdml-card-shadow);
}

.jdml-service-card,
.jdml-specialty-card,
.jdml-mini-card,
.jdml-panel,
.jdml-location,
.jdml-form,
.jdml-faq-list details,
.jdml-quote-strip div,
.jdml-area-list,
.jdml-quote-aside {
  border-radius: 8px;
}

.jdml-section-heading {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.jdml-section-heading p {
  max-width: 760px;
}

.jdml-dark-band .jdml-section-heading p {
  color: #d5dfd8;
}

.jdml-cta {
  max-width: var(--jdml-container);
  margin-inline: auto;
  margin-top: clamp(38px, 5vw, 70px);
  margin-bottom: clamp(56px, 7vw, 92px);
}

.jdml-footer {
  padding-inline: max(var(--jdml-side-pad), calc((100vw - var(--jdml-container)) / 2 + var(--jdml-side-pad)));
}

.jdml-form {
  max-width: 100%;
}

.jdml-faq-list {
  max-width: none;
  margin: 0;
}

.jdml-faq-list details {
  max-width: 980px;
}

.jdml-contact-grid {
  align-items: stretch;
}

@media (max-width: 1240px) {
  .jdml-service-overview {
    grid-template-columns: 1fr;
    background: #fff;
  }

  .jdml-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .jdml-header {
    min-height: 66px;
  }

  .jdml-page-hero {
    min-height: 0;
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .jdml-page-hero::after {
    display: none;
  }

  .jdml-page-hero h1 {
    font-size: clamp(35px, 9.5vw, 46px);
  }

  .jdml-page-hero p {
    font-size: 17px;
  }

  .jdml-check-list,
  .jdml-mini-grid,
  .jdml-keyword-grid,
  .jdml-limit-grid {
    grid-template-columns: 1fr;
  }

  .jdml-check-list li {
    min-height: 0;
  }

  .jdml-service-overview .jdml-panel {
    padding: 22px;
  }

  .jdml-cta {
    margin-inline: 20px;
  }
}

@media (max-width: 540px) {
  :root {
    --jdml-side-pad: 20px;
  }

  .jdml-brand small {
    display: none;
  }

  .jdml-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jdml-button {
    width: 100%;
  }

  .jdml-page-hero__meta {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Keep the hero logo fully visible by making the caption part of the card flow. */
.jdml-hero__media {
  display: grid;
  gap: 10px;
  overflow: visible;
}

.jdml-hero__media img {
  position: relative;
  z-index: 1;
}

/* SEO proof/local trust pass */
.jdml-page-hero--local {
  min-height: clamp(390px, 42vw, 560px);
}

.jdml-proof-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3f7f1 100%);
}

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

.jdml-proof-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(16, 20, 22, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, #ffffff 0%, #ffffff 72%, rgba(25, 129, 66, 0.12) 72%);
  box-shadow: var(--jdml-card-shadow);
}

.jdml-proof-card h3,
.jdml-review-section h2 {
  margin-bottom: 10px;
}

.jdml-disclaimer-box--light {
  margin-top: 22px;
  background:
    linear-gradient(145deg, #f6fbf7, #ffffff);
  color: var(--jdml-black);
  border: 1px solid rgba(25, 129, 66, 0.18);
}

.jdml-disclaimer-box--light p,
.jdml-disclaimer-box--light h3 {
  color: var(--jdml-black);
}

.jdml-review-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #f2f6ef 55%, #f2f6ef 100%);
}

.jdml-review-section .jdml-panel {
  border-left: 5px solid var(--jdml-green-2);
}

.jdml-small-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--jdml-muted);
}

.jdml-local-proof .jdml-keyword-card p {
  margin: 0;
}

@media (max-width: 900px) {
  .jdml-proof-grid,
  .jdml-review-section {
    grid-template-columns: 1fr;
  }

  .jdml-review-section {
    background: #fff;
  }

  .jdml-proof-card {
    min-height: 0;
  }
}

.jdml-proof-card--photo {
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.jdml-proof-card--photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.jdml-proof-card--photo figcaption {
  padding: 16px 18px 18px;
  color: var(--jdml-text);
  font-weight: 800;
}

.jdml-local-areas {
  border-top: 1px solid rgba(16, 20, 22, 0.07);
  border-bottom: 1px solid rgba(16, 20, 22, 0.07);
  background: #fff;
}

.jdml-area-list--compact {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.jdml-text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--jdml-green) !important;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jdml-site a:focus-visible,
.jdml-site button:focus-visible,
.jdml-site input:focus-visible,
.jdml-site select:focus-visible,
.jdml-site textarea:focus-visible,
.jdml-site summary:focus-visible {
  outline: 3px solid var(--jdml-blue);
  outline-offset: 3px;
}

.jdml-truck-band__logo {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 0 18px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid var(--jdml-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 13, 15, 0.12);
}

.jdml-truck-band p a {
  color: var(--jdml-green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  body.jdml-body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .jdml-sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(8, 13, 15, 0.96);
    box-shadow: 0 -10px 28px rgba(8, 13, 15, 0.2);
  }

  .jdml-sticky-cta a {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .jdml-service-card,
  .jdml-mini-card,
  .jdml-button {
    transition: none;
  }
}
