:root{
  --navy:#06172f;
  --navy-2:#0b2548;
  --blue:#143d70;
  --gold:#c99a45;
  --gold-light:#f2d99b;
  --cream:#f7f0e6;
  --paper:#ffffff;
  --text:#172033;
  --muted:#5f6b7c;
  --line:#eadcc6;
  --shadow:0 22px 60px rgba(6,23,47,.16);
  --radius:26px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

img, svg{
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1120px,92%);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(6,23,47,.96);
  border-bottom:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(14px);
}

.nav{
  width:min(1180px,94%);
  height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}

.brand-symbol{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--navy);
  font-weight:900;
  letter-spacing:.5px;
  box-shadow:0 12px 30px rgba(201,154,69,.25);
}

.brand-name{
  font-size:.82rem;
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.4px;
}

.brand-name strong{
  font-size:1rem;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
}

.nav-links a{
  color:rgba(255,255,255,.85);
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  transition:background .25s ease,color .25s ease;
}

.nav-links a:hover{
  background:rgba(255,255,255,.1);
  color:#fff;
}

.menu-button{
  display:none;
  width:46px;
  height:46px;
  border:0;
  background:rgba(255,255,255,.08);
  border-radius:14px;
  cursor:pointer;
}

.menu-button span{
  display:block;
  width:24px;
  height:3px;
  margin:5px auto;
  background:#fff;
  border-radius:10px;
}

.hero{
  min-height:calc(100vh - 78px);
  position:relative;
  display:flex;
  align-items:center;
  padding:90px 0;
  color:#fff;
  background:
    radial-gradient(circle at 82% 16%,rgba(242,217,155,.24),transparent 30%),
    linear-gradient(135deg,var(--navy),var(--navy-2) 55%,#040d1d);
  overflow:hidden;
}

.hero-shape{
  position:absolute;
  border:1px solid rgba(242,217,155,.18);
  border-radius:50%;
  pointer-events:none;
}

.hero-shape-one{
  width:560px;
  height:560px;
  right:-190px;
  top:60px;
}

.hero-shape-two{
  width:360px;
  height:360px;
  left:-130px;
  bottom:-90px;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.16fr .84fr;
  align-items:center;
  gap:46px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold-light);
  font-size:.78rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
}

.eyebrow.dark{
  color:var(--gold);
}

h1{
  max-width:820px;
  margin-bottom:22px;
  font-size:clamp(2.55rem,6.5vw,5.6rem);
  line-height:.95;
  letter-spacing:-2.8px;
}

.hero-text{
  max-width:710px;
  color:rgba(255,255,255,.86);
  font-size:clamp(1.06rem,2.2vw,1.36rem);
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  box-shadow:0 12px 34px rgba(0,0,0,.15);
}

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

.btn-primary{
  color:#12223a;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
}

.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.28);
}

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

.full{
  width:100%;
}

.hero-facts{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.hero-facts div{
  min-width:158px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  background:rgba(255,255,255,.07);
}

.hero-facts span,
.contact-list span{
  display:block;
  color:rgba(255,255,255,.64);
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}

.hero-facts strong{
  display:block;
  margin-top:2px;
  color:#fff;
  font-size:1.08rem;
}

.hero-card{
  padding:36px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  background:rgba(255,255,255,.1);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.legal-mark{
  height:150px;
  position:relative;
  margin-bottom:18px;
}

.mark-top,
.mark-center,
.mark-base{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:block;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
}

.mark-top{
  width:150px;
  height:10px;
  top:46px;
}

.mark-center{
  width:10px;
  height:118px;
  top:16px;
}

.mark-base{
  width:174px;
  height:24px;
  bottom:0;
  opacity:.9;
}

.hero-card h2{
  font-size:2rem;
  line-height:1.1;
  margin-bottom:12px;
}

.hero-card p{
  color:rgba(255,255,255,.82);
}

.card-call{
  display:inline-block;
  margin-top:22px;
  color:var(--gold-light);
  font-weight:900;
  border-bottom:2px solid var(--gold-light);
}

.section{
  padding:88px 0;
}

.intro-section,
.services-section{
  background:#fff;
}

.intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:start;
}

h2{
  color:var(--navy);
  font-size:clamp(2rem,4vw,3.25rem);
  line-height:1.06;
  letter-spacing:-1.4px;
}

.intro-box{
  padding:34px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--cream);
  font-size:1.1rem;
  color:#3b4759;
}

.intro-box p+p{
  margin-top:15px;
}

.worker-section{
  color:#fff;
  background:
    linear-gradient(135deg,rgba(6,23,47,.96),rgba(20,61,112,.96)),
    radial-gradient(circle at 20% 20%,rgba(242,217,155,.24),transparent 35%);
}

.center-title{
  max-width:770px;
  margin:0 auto 42px;
  text-align:center;
}

.center-title p:not(.eyebrow){
  color:var(--muted);
  font-size:1.06rem;
}

.light-title h2,
.light-title p:not(.eyebrow){
  color:#fff;
}

.light-title p:not(.eyebrow){
  color:rgba(255,255,255,.78);
}

.wide-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:34px;
  border-radius:var(--radius);
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#102037;
  box-shadow:var(--shadow);
}

.wide-card span{
  display:block;
  margin-bottom:8px;
  color:#6a4d19;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:.76rem;
}

.wide-card h3{
  font-size:clamp(1.55rem,3vw,2.45rem);
  line-height:1.05;
}

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

.service-card{
  min-height:284px;
  position:relative;
  overflow:hidden;
  padding:32px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--cream);
  transition:transform .25s ease,box-shadow .25s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 50px rgba(6,23,47,.1);
}

.service-card:after{
  content:"";
  position:absolute;
  width:118px;
  height:118px;
  right:-36px;
  top:-38px;
  border-radius:50%;
  background:rgba(201,154,69,.14);
}

.service-number{
  margin-bottom:18px;
  color:var(--gold);
  font-weight:900;
  letter-spacing:2px;
}

.service-card h3{
  color:var(--navy);
  font-size:1.45rem;
  line-height:1.16;
  margin-bottom:13px;
}

.service-card p{
  color:#536174;
}

.puebla-section{
  background:linear-gradient(135deg,var(--cream),#fff);
}

.puebla-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  align-items:stretch;
}

.puebla-card,
.contact-panel{
  padding:36px;
  border-radius:var(--radius);
  box-shadow:0 16px 48px rgba(6,23,47,.09);
}

.puebla-card{
  background:#fff;
  border:1px solid var(--line);
}

.puebla-card p:not(.eyebrow){
  margin-top:18px;
  color:var(--muted);
  font-size:1.08rem;
}

.contact-panel{
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
}

.contact-panel h2{
  color:#fff;
  margin-bottom:20px;
}

.contact-list{
  list-style:none;
  margin-bottom:24px;
}

.contact-list li{
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.contact-list strong{
  display:block;
  margin-top:3px;
  color:#fff;
}

.footer{
  padding:28px 0;
  background:#040d1d;
  color:#fff;
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer p{
  margin-top:4px;
  color:rgba(255,255,255,.68);
}

.footer a{
  color:var(--gold-light);
  font-weight:900;
}

.floating-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:90;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  color:#12223a;
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  font-weight:900;
  box-shadow:0 18px 42px rgba(0,0,0,.26);
}

@media(max-width:880px){
  .nav{
    height:72px;
  }

  .brand-symbol{
    width:46px;
    height:46px;
  }

  .brand-name{
    font-size:.72rem;
  }

  .brand-name strong{
    font-size:.86rem;
  }

  .menu-button{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:72px;
    left:3%;
    right:3%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    background:var(--navy);
  }

  .nav-links.open{
    display:flex;
  }

  .nav-links a{
    text-align:center;
    padding:14px;
  }

  .hero{
    min-height:auto;
    padding:70px 0;
  }

  .hero-grid,
  .intro-grid,
  .puebla-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  h1{
    letter-spacing:-1.7px;
  }

  .hero-card,
  .intro-box,
  .puebla-card,
  .contact-panel{
    padding:26px;
  }

  .hero-actions .btn,
  .wide-card .btn{
    width:100%;
  }

  .hero-facts div{
    width:100%;
  }

  .section{
    padding:68px 0;
  }

  .wide-card{
    flex-direction:column;
    align-items:flex-start;
    padding:28px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }

  .footer-grid{
    flex-direction:column;
    align-items:flex-start;
  }

  .floating-call{
    right:14px;
    bottom:14px;
  }
}

@media(max-width:430px){
  .container{
    width:min(100% - 28px,1120px);
  }

  .hero{
    padding:56px 0;
  }

  .btn{
    width:100%;
    padding:0 18px;
  }

  .floating-call{
    width:calc(100% - 28px);
    right:14px;
  }
}
