: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;
  box-shadow:0 12px 28px rgba(31,41,55,.08);
}

.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;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  background:var(--jmt-primary);
  color:#fff;
  text-decoration:none;
  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{
    min-height:44px;
    padding:0 14px;
  }

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