:root{
  --jmt-primary:#0d6efd;
  --jmt-primary-dark:#0b5ed7;
  --jmt-ink:#1f2937;
  --jmt-muted:#6b7280;
  --jmt-line:#e5e7eb;
  --jmt-surface:#ffffff;
  --jmt-soft:#f5f7fb;
  --jmt-accent:#f59e0b;
  --jmt-success:#198754;
  --jmt-shadow:0 16px 36px rgba(31,41,55,.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--jmt-ink);
  background:var(--jmt-soft);
  font-family:Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.55;
}

a{
  color:inherit;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

.jmt-page{
  min-height:100vh;
  overflow:hidden;
  background:var(--jmt-soft);
}

.jmt-shell{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.jmt-header{
  position:absolute;
  z-index:10;
  top:0;
  left:0;
  right:0;
  padding:18px 0;
}

.jmt-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.jmt-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.jmt-brand img{
  width:96px;
  height:auto;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.24));
}

.jmt-mainnav{
  display:flex;
  align-items:center;
  gap:22px;
}

.jmt-mainnav a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  text-shadow:0 2px 12px rgba(0,0,0,.28);
}

.jmt-navcall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:9px 18px;
  border-radius:999px;
  background:#fff;
  color:var(--jmt-primary-dark);
  font-weight:900;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(0,0,0,.20);
}

.jmt-hero{
  position:relative;
  min-height:690px;
  color:#fff;
  background:#111827;
  isolation:isolate;
}

.jmt-hero-media{
  position:absolute;
  inset:0;
  z-index:-2;
}

.jmt-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.jmt-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(90deg, rgba(17,24,39,.92), rgba(13,110,253,.76) 48%, rgba(17,24,39,.24));
}

.jmt-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 390px;
  gap:42px;
  align-items:center;
  min-height:690px;
  padding:118px 0 68px;
}

.jmt-hero-copy{
  max-width:700px;
}

.jmt-eyebrow{
  margin:0 0 12px;
  color:#fde68a;
  font-size:13px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.jmt-hero h1{
  margin:0;
  font-size:52px;
  line-height:1.06;
  letter-spacing:0;
}

.jmt-lead{
  max-width:640px;
  margin:22px 0 0;
  color:rgba(255,255,255,.92);
  font-size:20px;
}

.jmt-hero-actions,
.jmt-final-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.jmt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 20px;
  border:0;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.jmt-btn:hover{
  transform:translateY(-2px);
}

.jmt-btn-primary{
  background:linear-gradient(135deg, var(--jmt-primary), var(--jmt-accent));
  color:#fff;
  box-shadow:0 14px 30px rgba(13,110,253,.28);
}

.jmt-btn-light{
  background:#fff;
  color:var(--jmt-primary-dark);
}

.jmt-btn-submit{
  width:100%;
  margin-top:6px;
  background:var(--jmt-primary);
  color:#fff;
}

.jmt-quote-card{
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  background:rgba(255,255,255,.97);
  color:var(--jmt-ink);
  padding:26px;
  box-shadow:var(--jmt-shadow);
}

.jmt-card-kicker{
  margin:0 0 8px;
  color:var(--jmt-primary);
  font-size:13px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.jmt-quote-card h2{
  margin:0 0 18px;
  font-size:26px;
  line-height:1.15;
}

.jmt-quote-card label{
  display:block;
  margin:12px 0 6px;
  color:#374151;
  font-size:13px;
  font-weight:800;
}

.jmt-quote-card input,
.jmt-quote-card textarea{
  width:100%;
  min-height:44px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#f9fafb;
  color:var(--jmt-ink);
  font:inherit;
  padding:11px 13px;
  outline:none;
}

.jmt-quote-card textarea{
  resize:vertical;
}

.jmt-quote-card input:focus,
.jmt-quote-card textarea:focus{
  border-color:var(--jmt-primary);
  box-shadow:0 0 0 3px rgba(13,110,253,.16);
  background:#fff;
}

.jmt-form-error{
  display:none;
  margin:12px 0 0;
  color:#b42318;
  font-size:14px;
  font-weight:700;
}

.jmt-alert{
  padding:22px;
  border:1px solid #fecaca;
  border-radius:8px;
  background:#fff1f2;
}

.jmt-alert h2{
  margin:0 0 8px;
}

.jmt-alert p{
  margin:0;
  color:#7f1d1d;
}

.jmt-strip{
  background:#fff;
  border-bottom:1px solid var(--jmt-line);
}

.jmt-strip-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  padding:24px 0;
}

.jmt-strip-grid div{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:18px;
  border-left:4px solid var(--jmt-primary);
  border-radius:8px;
  background:#f8fafc;
}

.jmt-strip-grid strong{
  font-size:17px;
}

.jmt-strip-grid span{
  color:var(--jmt-muted);
}

.jmt-section{
  padding:76px 0;
  background:#fff;
}

.jmt-section-alt{
  background:linear-gradient(180deg, #f8fafc, #fff);
}

.jmt-section-dark{
  color:#fff;
  background:#111827;
}

.jmt-section-head{
  max-width:780px;
  margin-bottom:32px;
}

.jmt-section-head h2,
.jmt-content-intro h2,
.jmt-final-cta h2{
  margin:0;
  color:var(--jmt-ink);
  font-size:34px;
  line-height:1.15;
}

.jmt-section-dark .jmt-final-cta h2{
  color:#fff;
}

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

.jmt-service-card{
  overflow:hidden;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--jmt-ink);
  text-decoration:none;
  box-shadow:0 12px 28px rgba(31,41,55,.08);
}

.jmt-service-card a,
.jmt-service-card h3 a{
  color:inherit;
  text-decoration:none;
}

.jmt-service-card img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
}

.jmt-service-card div{
  padding:22px;
}

.jmt-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  margin-bottom:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--jmt-primary), var(--jmt-success));
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.jmt-service-card h3{
  margin:0 0 8px;
  font-size:22px;
}

.jmt-service-card p{
  margin:0;
  color:var(--jmt-muted);
}

.jmt-zone-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
}

.jmt-zone-grid a,
.jmt-zone-empty{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:11px 14px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--jmt-ink);
  text-decoration:none;
  font-weight:800;
  box-shadow:0 8px 18px rgba(31,41,55,.06);
}

.jmt-zone-grid a.active{
  border-color:var(--jmt-primary);
  background:var(--jmt-primary);
  color:#fff;
}

.jmt-zone-empty{
  grid-column:1 / -1;
  color:var(--jmt-muted);
  font-weight:700;
}

.jmt-content-grid{
  display:grid;
  grid-template-columns:360px minmax(0, 1fr);
  gap:42px;
  align-items:start;
}

.jmt-content-intro{
  position:sticky;
  top:24px;
}

.jmt-content-intro p:last-child{
  color:var(--jmt-muted);
}

.jmt-accordion{
  display:grid;
  gap:14px;
}

.jmt-accordion details{
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 10px 22px rgba(31,41,55,.06);
}

.jmt-accordion summary{
  cursor:pointer;
  padding:18px 20px;
  color:var(--jmt-primary-dark);
  font-weight:900;
}

.jmt-richtext{
  padding:0 20px 20px;
  color:#374151;
}

.jmt-richtext p{
  margin:0 0 14px;
}

.jmt-richtext h2,
.jmt-richtext h3{
  margin:18px 0 10px;
  font-size:22px;
  line-height:1.2;
}

.jmt-location-section{
  padding:36px 0 48px;
  background:#fff;
}

.jmt-location-card{
  display:grid;
  grid-template-columns:300px minmax(0, 1fr);
  gap:24px;
  align-items:start;
  padding:24px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 30px rgba(31,41,55,.08);
}

.jmt-location-card h2{
  margin:0 0 8px;
  color:var(--jmt-ink);
  font-size:26px;
  line-height:1.15;
}

.jmt-location-card p{
  margin:0;
  color:var(--jmt-muted);
}

.jmt-location-selectors{
  display:grid;
  gap:18px;
}

.jmt-location-selectors h3{
  margin:0 0 10px;
  color:var(--jmt-primary-dark);
  font-size:17px;
}

.jmt-location-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  max-height:260px;
  overflow:auto;
  padding-right:4px;
}

.jmt-location-link{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 13px;
  border:1px solid var(--jmt-line);
  border-radius:999px;
  background:#f8fafc;
  color:var(--jmt-ink);
  text-decoration:none;
  font-weight:800;
}

.jmt-location-link.active{
  border-color:transparent;
  background:linear-gradient(135deg, var(--jmt-primary), var(--jmt-accent));
  color:#fff;
}

.jmt-final-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.jmt-footer{
  padding:32px 0;
  border-top:1px solid var(--jmt-line);
  background:#fff;
}

.jmt-footer-grid{
  display:grid;
  grid-template-columns:320px minmax(0, 1fr);
  gap:28px;
  align-items:start;
}

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

.jmt-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.jmt-footer-links a{
  padding:8px 11px;
  border:1px solid var(--jmt-line);
  border-radius:999px;
  color:var(--jmt-ink);
  text-decoration:none;
  font-weight:800;
}

.jmt-footer-links a.active{
  border-color:var(--jmt-primary);
  color:var(--jmt-primary-dark);
}

.jmt-floating{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

.jmt-float-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  min-height:54px;
  padding:0;
  border-radius:50%;
  background:var(--jmt-primary);
  color:#fff;
  text-decoration:none;
  font-size:12px;
  line-height:1;
  font-weight:900;
  box-shadow:0 12px 28px rgba(13,110,253,.28);
}

.jmt-float-whatsapp{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:50%;
  overflow:hidden;
  background:#25d366;
  box-shadow:0 12px 28px rgba(25,135,84,.28);
}

.jmt-float-whatsapp img{
  width:54px;
  height:54px;
  object-fit:cover;
}

@media (max-width: 980px){
  .jmt-shell{
    width:min(100% - 26px, 720px);
  }

  .jmt-header{
    padding:10px 0;
  }

  .jmt-nav{
    justify-content:center;
  }

  .jmt-brand{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }

  .jmt-brand img{
    width:82px;
  }

  .jmt-brand span{
    display:none;
  }

  .jmt-mainnav,
  .jmt-navcall{
    display:none;
  }

  .jmt-hero{
    min-height:auto;
  }

  .jmt-hero::after{
    background:linear-gradient(180deg, rgba(17,24,39,.78), rgba(13,110,253,.78));
  }

  .jmt-hero-grid{
    display:block;
    min-height:0;
    padding:118px 0 36px;
  }

  .jmt-hero-copy{
    text-align:center;
    margin:0 auto 24px;
  }

  .jmt-hero h1{
    font-size:36px;
  }

  .jmt-lead{
    margin-top:14px;
    font-size:17px;
  }

  .jmt-hero-actions{
    justify-content:center;
    margin-top:22px;
  }

  .jmt-quote-card{
    padding:20px;
  }

  .jmt-strip-grid,
  .jmt-card-grid,
  .jmt-content-grid,
  .jmt-location-card,
  .jmt-footer-grid{
    grid-template-columns:1fr;
  }

  .jmt-section{
    padding:50px 0;
  }

  .jmt-section-head h2,
  .jmt-content-intro h2,
  .jmt-final-cta h2{
    font-size:28px;
  }

  .jmt-zone-grid{
    grid-template-columns:1fr 1fr;
  }

  .jmt-content-intro{
    position:static;
  }

  .jmt-location-grid{
    max-height:220px;
  }

  .jmt-final-cta{
    display:block;
  }

  .jmt-final-actions{
    margin-top:22px;
  }

  .jmt-footer-links{
    justify-content:flex-start;
  }
}

@media (max-width: 560px){
  .jmt-shell{
    width:calc(100% - 22px);
  }

  .jmt-hero-grid{
    padding-top:112px;
  }

  .jmt-hero h1{
    font-size:32px;
  }

  .jmt-btn{
    width:100%;
  }

  .jmt-hero-actions .jmt-btn{
    width:auto;
    min-width:145px;
  }

  .jmt-strip-grid{
    gap:12px;
  }

  .jmt-zone-grid{
    grid-template-columns:1fr;
  }

  .jmt-location-card{
    padding:18px;
  }

  .jmt-floating{
    right:12px;
    bottom:12px;
  }

  .jmt-float-call{
    width:50px;
    height:50px;
    min-height:50px;
    padding:0;
  }

  .jmt-float-form{
    width:50px;
    height:50px;
  }

  .jmt-float-whatsapp,
  .jmt-float-whatsapp img{
    width:50px;
    height:50px;
  }
}


/* Motor provincial v1 */
.jmt-hero-panel,
.jmt-service-panel{
  border:1px solid rgba(255,255,255,.22);
  border-radius:8px;
  background:rgba(255,255,255,.97);
  color:var(--jmt-ink);
  padding:24px;
  box-shadow:var(--jmt-shadow);
}

.jmt-service-panel h2{
  margin:0 0 16px;
  color:var(--jmt-ink);
  font-size:24px;
  line-height:1.15;
}

.jmt-service-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.jmt-service-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:42px;
  padding:10px 12px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--jmt-ink);
  text-decoration:none;
  font-weight:800;
}

.jmt-service-list a:after{
  content:">";
  color:var(--jmt-primary);
  font-weight:900;
}

.jmt-service-list a:hover,
.jmt-service-list a.active{
  border-color:rgba(13,110,253,.38);
  background:#eff6ff;
  color:var(--jmt-primary-dark);
}

.jmt-btn-soft{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.34);
  color:#fff;
}

.jmt-alert-section{padding-top:34px;}
.jmt-alert{
  border:1px solid #fecaca;
  border-radius:8px;
  background:#fff1f2;
  padding:20px;
  color:#991b1b;
}

.jmt-services-list-section{background:#fff;}
.jmt-services-intro{
  max-width:880px;
  margin:0 0 22px;
  color:var(--jmt-muted);
}
.jmt-services-intro p{margin:0 0 10px;}
.jmt-services-intro ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.jmt-services-intro li{position:relative;padding-left:20px;}
.jmt-services-intro li:before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--jmt-accent);
}
.jmt-services-list-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.jmt-services-list-grid a{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:70px;
  padding:14px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:linear-gradient(180deg,#fff,#f8fbff);
  color:var(--jmt-ink);
  text-decoration:none;
  box-shadow:0 10px 24px rgba(31,41,55,.06);
}
.jmt-services-list-grid a:hover{
  border-color:rgba(13,110,253,.42);
  transform:translateY(-2px);
}
.jmt-services-list-grid span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 38px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--jmt-primary);
  color:#fff;
  font-weight:900;
}
.jmt-services-list-grid strong{font-size:15px;line-height:1.25;}

.jmt-reasons-section{background:#f0f7ff;}
.jmt-reasons-card{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:28px;
  align-items:start;
  border:1px solid #bfdbfe;
  border-radius:8px;
  background:#fff;
  padding:28px;
  box-shadow:0 14px 32px rgba(13,110,253,.10);
}

.jmt-cases-section{background:#fff;}
.jmt-cases-track{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.jmt-cases-track p{
  position:relative;
  margin:0;
  min-height:130px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#f8fafc;
  padding:42px 18px 18px;
  box-shadow:0 10px 22px rgba(31,41,55,.06);
}
.jmt-cases-track p:before{
  content:"“";
  position:absolute;
  top:4px;
  left:16px;
  color:var(--jmt-primary);
  font-size:48px;
  font-weight:900;
  line-height:1;
}

.jmt-work-section{background:#f8fafc;}
.jmt-work-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.jmt-work-card{
  overflow:hidden;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 12px 28px rgba(31,41,55,.08);
}
.jmt-work-card img{width:100%;height:190px;object-fit:cover;}
.jmt-work-card div{padding:16px;}
.jmt-work-card p{margin:0 0 12px;color:var(--jmt-muted);}
.jmt-work-card strong{display:block;margin-bottom:6px;}
.jmt-work-card span{color:var(--jmt-muted);font-size:13px;}

.jmt-faq-section{background:#fff;}
.jmt-faq-list p{
  margin:0 0 14px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#f8fafc;
  padding:16px;
}
.jmt-cta-section{background:#eef6ff;}
.jmt-cta-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  border-radius:8px;
  background:linear-gradient(135deg,var(--jmt-primary-dark),var(--jmt-primary));
  color:#fff;
  padding:30px;
  box-shadow:var(--jmt-shadow);
}
.jmt-cta-card .jmt-eyebrow{color:#fde68a;}
.jmt-cta-card h2{margin:0 0 10px;font-size:30px;line-height:1.15;}
.jmt-cta-card .jmt-richtext{color:rgba(255,255,255,.88);}
.jmt-cta-card .jmt-final-actions{margin-top:0;justify-content:flex-end;}
.jmt-cta-card .jmt-btn{white-space:nowrap;}

.jmt-contact-section{background:#fff;}
.jmt-form-wrap{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:24px;
  align-items:stretch;
}
.jmt-contact-panel,
.jmt-form-panel{
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  padding:24px;
  box-shadow:0 12px 28px rgba(31,41,55,.08);
}
.jmt-contact-panel{background:#f8fafc;}
.jmt-contact-panel h2{margin:0 0 10px;font-size:28px;}
.jmt-contact-list{display:grid;gap:10px;margin-top:20px;}
.jmt-contact-list a,
.jmt-contact-list span{
  display:block;
  padding:12px 14px;
  border-radius:8px;
  background:#fff;
  color:var(--jmt-ink);
  text-decoration:none;
}
.jmt-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin:0;
  padding:0;
  border:0;
}
.jmt-form-grid label{display:block;margin:0;}
.jmt-form-grid .full{grid-column:1 / -1;}
.jmt-form-grid input,
.jmt-form-grid textarea{
  width:100%;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#f9fafb;
  color:var(--jmt-ink);
  font:inherit;
  padding:13px 14px;
}
.jmt-form-grid textarea{resize:vertical;min-height:118px;}
.jmt-form-grid input:focus,
.jmt-form-grid textarea:focus{
  outline:none;
  border-color:var(--jmt-primary);
  box-shadow:0 0 0 4px rgba(13,110,253,.13);
}
.jmt-success{
  margin:0 0 14px;
  border-radius:8px;
  background:#dcfce7;
  color:#166534;
  padding:12px 14px;
  font-weight:800;
}

.jmt-float-form{
  display:flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--jmt-primary-dark);
  text-decoration:none;
  box-shadow:0 12px 26px rgba(13,110,253,.28);
}
.jmt-float-form span{
  display:block;
  width:20px;
  height:23px;
  border:2px solid #fff;
  border-radius:4px;
  position:relative;
}
.jmt-float-form span:before,
.jmt-float-form span:after{
  content:"";
  position:absolute;
  left:4px;
  right:4px;
  height:2px;
  border-radius:999px;
  background:#fff;
}
.jmt-float-form span:before{top:5px;}
.jmt-float-form span:after{bottom:5px;}

@media (max-width: 920px){
  .jmt-service-panel{margin-top:0;}
  .jmt-services-list-grid,
  .jmt-cases-track,
  .jmt-work-grid{grid-template-columns:1fr 1fr;}
  .jmt-reasons-card,
  .jmt-form-wrap,
  .jmt-cta-card{grid-template-columns:1fr;}
  .jmt-cta-card .jmt-final-actions{justify-content:flex-start;}
}
@media (max-width: 560px){
  .jmt-services-list-grid,
  .jmt-cases-track,
  .jmt-work-grid,
  .jmt-services-intro ul{grid-template-columns:1fr;}
  .jmt-service-panel{padding:18px;}
  .jmt-hero-actions .jmt-btn{min-width:0;}
  .jmt-form-grid{grid-template-columns:1fr;}
  .jmt-contact-panel,
  .jmt-form-panel,
  .jmt-reasons-card,
  .jmt-cta-card{padding:18px;}

  .jmt-float-form{
    width:50px;
    height:50px;
  }
}
