:root{
  --jmt-navy:#071724;
  --jmt-ink:#142433;
  --jmt-muted:#667789;
  --jmt-line:rgba(8,32,50,.14);
  --jmt-surface:#ffffff;
  --jmt-soft:#f5f8fb;
  --jmt-blue:#00c6df;
  --jmt-teal:#00c6df;
  --jmt-coral:#ff7a59;
  --jmt-pink:#f0478f;
  --jmt-mint:#20d6b4;
  --jmt-yellow:#ffc857;
  --jmt-shadow:0 18px 42px rgba(8,32,50,.14);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--jmt-ink);
  background:#fff;
  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:#fff;
}

.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{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

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

.jmt-brand img{
  width:118px;
  height:auto;
  filter:drop-shadow(0 12px 28px rgba(0,0,0,.28));
}

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

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

.jmt-mainnav .jmt-lang-link{
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:999px;
  background:rgba(255,255,255,.12);
}

.jmt-lang-mobile{
  display:none;
}

.jmt-navcall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  color:var(--jmt-navy);
  font-weight:800;
  text-decoration:none;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
}

.jmt-hero{
  position:relative;
  min-height:720px;
  color:#fff;
  background:var(--jmt-navy);
  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(8,32,50,.92), rgba(8,32,50,.72) 42%, rgba(8,32,50,.25));
}

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

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

.jmt-eyebrow{
  margin:0 0 12px;
  color:var(--jmt-yellow);
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

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

.jmt-lead{
  max-width:620px;
  margin:22px 0 0;
  color:rgba(255,255,255,.9);
  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:var(--jmt-navy);
  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-pink), var(--jmt-blue));
  color:#fff;
  box-shadow:0 14px 30px rgba(240,71,143,.30);
}

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

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

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

.jmt-card-kicker{
  margin:0 0 8px;
  color:var(--jmt-pink);
  font-size:13px;
  font-weight:900;
  letter-spacing:.1em;
  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:#405163;
  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:#f9fbfd;
  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-teal);
  box-shadow:0 0 0 3px rgba(0,184,201,.16);
  background:#fff;
}

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

.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-teal);
  border-radius:8px;
  background:var(--jmt-soft);
}

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

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

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

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

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

.jmt-location-card .jmt-eyebrow{
  color:var(--jmt-pink);
}

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

.jmt-location-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.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:#f7fbff;
  color:var(--jmt-ink);
  text-decoration:none;
  font-weight:800;
}

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

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

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

.jmt-section-dark{
  color:#fff;
  background:var(--jmt-navy);
}

.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(8,32,50,.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-pink), var(--jmt-blue));
  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-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(8,32,50,.06);
}

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

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

.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-zone-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:12px;
}

.jmt-zone-grid a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:10px 12px;
  border:1px solid var(--jmt-line);
  border-radius:8px;
  background:#fff;
  color:var(--jmt-ink);
  font-weight:800;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(8,32,50,.05);
}

.jmt-zone-grid a:hover{
  border-color:var(--jmt-teal);
  color:var(--jmt-navy);
}

.jmt-zone-grid a.active{
  border-color:transparent;
  background:linear-gradient(135deg, var(--jmt-pink), var(--jmt-blue));
  color:#fff;
  box-shadow:0 12px 24px rgba(0,184,201,.18);
}

.jmt-alert{
  border:1px solid rgba(255,107,74,.35);
  border-radius:8px;
  background:#fff4ef;
  padding:22px;
}

.jmt-alert h2,
.jmt-alert p{
  margin:0;
}

.jmt-alert p{
  margin-top:8px;
}

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

.jmt-final-actions{
  margin-top:0;
}

.jmt-footer{
  padding:34px 0 94px;
  background:#061724;
  color:#d7e2ec;
}

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

.jmt-footer p{
  margin:8px 0 0;
  color:#a8b8c7;
}

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

.jmt-footer-links a{
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  color:#d7e2ec;
  text-decoration:none;
}

.jmt-footer-links a.active{
  border-color:var(--jmt-pink);
  color:#fff;
}

.jmt-floating{
  position:fixed;
  z-index:30;
  right:18px;
  bottom:18px;
  display:flex;
  gap:10px;
  align-items:center;
}

.jmt-floating a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:50%;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(0,0,0,.24);
}

.jmt-float-call{
  background:linear-gradient(135deg, var(--jmt-pink), var(--jmt-blue));
  color:#fff;
  font-weight:900;
  font-size:13px;
}

.jmt-float-whatsapp{
  overflow:hidden;
  background:#fff;
  border:2px solid rgba(0,198,223,.85);
}

.jmt-float-whatsapp img{
  width:100%;
  height:100%;
  object-fit:cover;
}

@media (max-width: 960px){
  .jmt-shell{
    width:min(100% - 28px, 760px);
  }

  .jmt-header{
    position:absolute;
    padding:12px 0;
  }

  .jmt-nav{
    justify-content:center;
    gap:12px;
  }

  .jmt-brand{
    margin:0 auto;
  }

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

  .jmt-lang-mobile{
    position:fixed;
    top:10px;
    right:12px;
    z-index:90;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    padding:6px 10px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    color:#fff;
    text-decoration:none;
    font-size:11px;
    font-weight:900;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
  }

  .jmt-brand span{
    display:none;
  }

  .jmt-mainnav{
    display:none;
  }

  .jmt-navcall{
    display:none;
  }

  .jmt-hero,
  .jmt-hero-grid{
    min-height:0;
  }

  .jmt-hero-grid{
    grid-template-columns:1fr;
    gap:24px;
    padding:130px 0 44px;
  }

  .jmt-hero-copy{
    text-align:center;
  }

  .jmt-hero-copy .jmt-eyebrow{
    justify-content:center;
  }

  .jmt-hero::after{
    background:linear-gradient(180deg, rgba(8,32,50,.92), rgba(8,32,50,.78));
  }

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

  .jmt-lead{
    font-size:18px;
  }

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

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

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

  .jmt-zone-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .jmt-final-cta{
    align-items:flex-start;
    flex-direction:column;
  }

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

  .jmt-hero-actions{
    display:none;
  }

  .jmt-floating{
    right:12px;
    flex-direction:column;
    align-items:flex-end;
    gap:10px;
    pointer-events:none;
  }

  .jmt-floating a{
    pointer-events:auto;
  }
}

@media (max-width: 560px){
  body{
    font-size:15px;
  }

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

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

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

  .jmt-hero-actions,
  .jmt-final-actions{
    width:100%;
  }

  .jmt-hero-actions .jmt-btn,
  .jmt-final-actions .jmt-btn{
    flex:1 1 100%;
  }

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

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

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

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

  .jmt-floating a{
    width:54px;
    height:54px;
  }
}
