:root{
  --navy:#0a2540;
  --navy-2:#0f355b;
  --blue:#1f7ae0;
  --sky:#69c8ff;
  --green:#20c997;
  --mint:#e4fff5;
  --white:#ffffff;
  --soft:#f4f8fc;
  --soft-2:#e8f2fb;
  --ink:#172033;
  --muted:#627086;
  --line:rgba(15,45,75,.14);
  --shadow:0 24px 70px rgba(5,22,39,.18);
  --radius:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--soft);
  color:var(--ink);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
svg{display:block;max-width:100%}
button{font:inherit}

.skip-link{
  position:absolute;
  left:1rem;
  top:-100%;
  z-index:1000;
  padding:.7rem 1rem;
  border-radius:999px;
  background:var(--navy);
  color:var(--white);
}
.skip-link:focus{top:1rem}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.container{
  width:min(1140px,calc(100% - 32px));
  margin-inline:auto;
}
.section-pad{padding:92px 0}
.section-white{background:var(--white)}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.navbar{
  width:min(1180px,calc(100% - 28px));
  margin-inline:auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-emblem{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:var(--white);
  background:linear-gradient(135deg,var(--navy),var(--blue));
  font-weight:900;
  letter-spacing:-.06em;
  box-shadow:0 16px 34px rgba(31,122,224,.25);
}
.brand-copy{display:grid;line-height:1.15;min-width:0}
.brand-copy strong{
  color:var(--navy);
  font-size:.98rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-copy small{color:var(--muted);font-weight:700}

.nav-links{
  display:flex;
  align-items:center;
  gap:.35rem;
}
.nav-links a{
  padding:.72rem .95rem;
  border-radius:999px;
  color:var(--navy);
  font-weight:800;
  transition:.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible{
  color:var(--white);
  background:var(--navy);
  outline:none;
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--white);
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  border-radius:999px;
  background:var(--navy);
  transition:.2s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.hero{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 20%,rgba(105,200,255,.18),transparent 32%),
    radial-gradient(circle at 90% 10%,rgba(32,201,151,.16),transparent 28%),
    linear-gradient(135deg,var(--navy),#07172a 62%,#0e3559);
  color:var(--white);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(0deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:54px 54px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.88),transparent 90%);
  z-index:-2;
}
.hero-shape{
  position:absolute;
  border-radius:999px;
  filter:blur(2px);
  opacity:.8;
  z-index:-1;
}
.hero-shape-one{
  width:340px;
  height:340px;
  right:-90px;
  top:130px;
  background:rgba(32,201,151,.15);
}
.hero-shape-two{
  width:240px;
  height:240px;
  left:-110px;
  bottom:60px;
  background:rgba(31,122,224,.22);
}
.hero-grid{
  min-height:720px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:52px;
  align-items:center;
  padding:80px 0;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  margin:0 0 1rem;
  color:#9ef2d4;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.78rem;
}
.eyebrow::before{
  content:"";
  width:34px;
  height:2px;
  border-radius:999px;
  background:currentColor;
}
.eyebrow.dark{color:var(--blue)}
h1,h2,h3,p{margin-top:0}
h1{
  max-width:860px;
  margin-bottom:1.25rem;
  font-size:clamp(2.8rem,7vw,6.8rem);
  line-height:.92;
  letter-spacing:-.075em;
}
.hero-text{
  max-width:650px;
  color:rgba(255,255,255,.78);
  font-size:1.18rem;
  font-weight:650;
  margin-bottom:1.7rem;
}
.hero-actions,
.contact-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:.92rem 1.22rem;
  border-radius:999px;
  font-weight:900;
  transition:.22s ease;
  border:1px solid transparent;
}
.btn-primary{
  color:var(--white);
  background:linear-gradient(135deg,#25d366,var(--green));
  box-shadow:0 18px 40px rgba(32,201,151,.26);
}
.btn-light{
  color:var(--white);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
}
.btn-large{min-height:58px;padding-inline:1.45rem}
.btn:hover,.btn:focus-visible{
  transform:translateY(-2px);
  outline:none;
}
.hero-details{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:1.4rem;
}
.hero-details span{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:.55rem .85rem;
  border-radius:999px;
  color:rgba(255,255,255,.86);
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  font-weight:800;
}
.hero-panel{position:relative}
.shield-card{
  position:relative;
  padding:38px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow);
  backdrop-filter:blur(22px);
  overflow:hidden;
}
.shield-card::before{
  content:"";
  position:absolute;
  inset:auto -70px -100px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(105,200,255,.16);
}
.shield-icon{
  width:150px;
  height:150px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:42px;
  background:linear-gradient(135deg,rgba(228,255,245,.95),rgba(255,255,255,.88));
}
.shield-icon svg{width:112px;height:112px}
.shield-icon path:first-child{fill:url(#none);fill:var(--blue)}
.shield-icon path:last-child{fill:none;stroke:var(--white);stroke-width:12;stroke-linecap:round;stroke-linejoin:round}
.shield-card h2{
  color:var(--white);
  text-align:center;
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1;
  letter-spacing:-.05em;
  margin-bottom:1.2rem;
}
.shield-card ul{
  position:relative;
  z-index:1;
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.shield-card li{
  padding:1rem 1.1rem;
  border-radius:18px;
  color:rgba(255,255,255,.9);
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.15);
  font-weight:900;
}

.intro-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:center;
}
.section-title h2,
.intro-grid h2{
  color:var(--navy);
  font-size:clamp(2.2rem,4vw,4rem);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:1rem;
}
.section-title p:not(.eyebrow){color:var(--muted);font-weight:650;max-width:700px}
.center{text-align:center;max-width:780px;margin:0 auto 44px}
.center .eyebrow{justify-content:center}
.intro-card{
  padding:34px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:linear-gradient(135deg,var(--soft),var(--white));
  box-shadow:0 18px 50px rgba(5,22,39,.08);
}
.intro-card p{margin:0;font-size:1.14rem;font-weight:750;color:var(--ink)}

.services{
  background:
    radial-gradient(circle at 12% 10%,rgba(32,201,151,.14),transparent 30%),
    radial-gradient(circle at 92% 0%,rgba(31,122,224,.13),transparent 30%),
    var(--soft);
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  min-height:250px;
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:26px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:0 18px 44px rgba(5,22,39,.08);
  transition:.28s ease;
}
.service-card::after{
  content:"";
  position:absolute;
  right:-78px;
  bottom:-85px;
  width:170px;
  height:170px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(32,201,151,.12),rgba(31,122,224,.12));
}
.service-card:hover{transform:translateY(-6px);box-shadow:0 24px 62px rgba(5,22,39,.12)}
.service-card-wide{
  grid-column:span 4;
  min-height:180px;
  display:grid;
  grid-template-columns:auto 1fr;
  column-gap:20px;
  align-items:center;
}
.service-card-wide h3,.service-card-wide p{grid-column:2}
.service-icon{
  position:relative;
  z-index:1;
  width:62px;
  height:62px;
  margin-bottom:1.15rem;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:var(--blue);
  background:linear-gradient(135deg,var(--mint),#e8f4ff);
}
.service-card-wide .service-icon{grid-row:1 / span 2;margin-bottom:0}
.service-icon svg{width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:3.1;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{
  position:relative;
  z-index:1;
  color:var(--navy);
  font-size:1.28rem;
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:.7rem;
}
.service-card p{
  position:relative;
  z-index:1;
  color:var(--muted);
  font-weight:700;
  margin:0;
}

.location-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:30px;
  align-items:stretch;
}
.location-card{
  min-height:320px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:34px;
  border-radius:var(--radius);
  color:var(--white);
  background:
    linear-gradient(135deg,rgba(10,37,64,.9),rgba(31,122,224,.76)),
    repeating-linear-gradient(45deg,rgba(255,255,255,.09) 0 2px,transparent 2px 18px);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.pin{
  width:68px;
  height:68px;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  background:linear-gradient(135deg,var(--green),var(--sky));
  position:relative;
  box-shadow:0 20px 44px rgba(0,0,0,.22);
}
.pin::after{
  content:"";
  position:absolute;
  left:23px;
  top:23px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--white);
}
.location-card strong,
.location-card span{display:block}
.location-card strong{font-size:2rem;line-height:1.1;letter-spacing:-.04em;margin-top:1rem}
.location-card span{color:rgba(255,255,255,.8);font-weight:800;margin-top:.35rem}

.facebook{
  color:var(--white);
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
}
.facebook-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:44px;
  border-radius:34px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:var(--shadow);
}
.facebook-box h2{
  font-size:clamp(2.2rem,4vw,3.8rem);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:.6rem;
}
.facebook-box p{color:rgba(255,255,255,.76);font-weight:750;margin-bottom:0}
.facebook-mark{
  min-width:198px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.85rem;
  padding:1rem 1.2rem;
  border-radius:22px;
  color:#1877f2;
  background:var(--white);
  font-weight:900;
}
.facebook-mark span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--white);
  background:#1877f2;
  font-family:Arial,Helvetica,sans-serif;
  font-size:2rem;
  font-weight:900;
}

.contact{background:var(--white)}
.contact-box{
  display:grid;
  grid-template-columns:1.15fr auto;
  gap:30px;
  align-items:center;
  padding:44px;
  border-radius:34px;
  border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(228,255,245,.95),rgba(232,244,255,.95));
  box-shadow:0 22px 70px rgba(5,22,39,.1);
}
.contact-box h2{
  color:var(--navy);
  font-size:clamp(2.1rem,4vw,3.55rem);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:.85rem;
}
.contact-box p{max-width:700px;color:var(--muted);font-weight:700;margin-bottom:0}
.contact-buttons{justify-content:flex-end}
.phone-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:.9rem 1.15rem;
  border-radius:999px;
  color:var(--navy);
  background:var(--white);
  border:1px solid var(--line);
  font-weight:900;
}

.site-footer{
  padding:34px 0;
  color:var(--white);
  background:#061426;
}
.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-grid p{margin:.35rem 0 0;color:rgba(255,255,255,.68)}
.footer-contact{display:grid;text-align:right;gap:.22rem;color:rgba(255,255,255,.78);font-weight:750}
.footer-contact a{color:#8ee8c8}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:90;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--white);
  background:#25d366;
  box-shadow:0 18px 45px rgba(37,211,102,.38);
  transition:.24s ease;
}
.whatsapp-float svg{width:36px;height:36px;fill:currentColor}
.whatsapp-float:hover,.whatsapp-float:focus-visible{transform:translateY(-3px);outline:none}

@media (max-width:980px){
  .hero-grid,.intro-grid,.location-grid,.contact-box{grid-template-columns:1fr}
  .hero-grid{min-height:auto;padding:66px 0}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .service-card-wide{grid-column:span 2}
  .contact-buttons{justify-content:flex-start}
}

@media (max-width:760px){
  .section-pad{padding:70px 0}
  .navbar{min-height:70px}
  .brand-copy strong{max-width:210px;font-size:.9rem}
  .menu-toggle{display:block;position:relative;z-index:2}
  .nav-links{
    position:absolute;
    left:14px;
    right:14px;
    top:76px;
    display:grid;
    gap:.35rem;
    padding:.75rem;
    border-radius:20px;
    background:rgba(255,255,255,.98);
    box-shadow:0 22px 60px rgba(5,22,39,.15);
    border:1px solid var(--line);
    transform:translateY(-12px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.25s ease;
  }
  .nav-links.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
  .nav-links a{padding:.9rem 1rem;background:var(--soft);border-radius:16px}
  h1{font-size:clamp(2.42rem,12vw,4.4rem)}
  .hero-text{font-size:1.05rem}
  .hero-actions,.hero-details{align-items:stretch}
  .hero-actions .btn,.hero-details span,.contact-buttons .btn,.phone-button{width:100%;text-align:center;justify-content:center}
  .shield-card{padding:28px 22px}
  .shield-icon{width:124px;height:124px;border-radius:34px}
  .shield-icon svg{width:92px;height:92px}
  .service-grid{grid-template-columns:1fr}
  .service-card,.service-card-wide{grid-column:auto;display:block;min-height:auto}
  .service-card-wide .service-icon{margin-bottom:1.15rem}
  .facebook-box,.footer-grid{display:grid;text-align:left}
  .facebook-mark{min-width:0;width:100%}
  .contact-box{padding:30px 20px;border-radius:28px}
  .footer-contact{text-align:left}
  .whatsapp-float{width:56px;height:56px;right:16px;bottom:16px}
}

@media (max-width:420px){
  .container{width:min(100% - 24px,1140px)}
  .brand-emblem{width:44px;height:44px;flex-basis:44px;border-radius:15px}
  .brand-copy strong{max-width:174px}
  .section-title h2,.intro-grid h2{font-size:2.15rem}
  .facebook-box{padding:30px 20px;border-radius:28px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}
