:root{
  --blue:#073b69;
  --blue2:#0d548c;
  --orange:#ff760d;
  --ink:#182533;
  --muted:#657383;
  --soft:#f4f7f9;
  --white:#fff;
  --radius:22px;
  --shadow:0 18px 50px rgba(5,39,69,.12);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
}

/* TOPBAR */
.topbar{
  background:var(--blue);
  color:#dbe8f2;
  font-size:.78rem;
}

.topbar-inner{
  height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.topbar-links{
  display:flex;
  gap:24px;
}

/* HEADER / NAVBAR */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.navbar{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
}

.nav-inner{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand img{
  width:250px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:.9rem;
  font-weight:600;
}

.nav-menu a{
  position:relative;
}

.nav-menu a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--orange);
  transition:.25s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after{
  width:100%;
}

.nav-cta{
  background:var(--orange);
  color:#fff;
  padding:13px 19px;
  border-radius:999px;
}

.nav-toggle{
  display:none;
  background:none;
  border:0;
}

/* HERO HOME */
.hero{
  position:relative;
  overflow:hidden;
}

.hero-home{
  min-height:720px;
  padding:95px 0 34px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.06) 0%,rgba(255,255,255,.12) 42%,rgba(255,255,255,.18) 100%),
    url('../img/hero/servipack-hero-home.png') center center / cover no-repeat,
    linear-gradient(135deg,#f7f9fb,#edf2f6);
}

.hero-home::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.18) 0%,rgba(255,255,255,.05) 45%,rgba(255,255,255,0) 72%);
  pointer-events:none;
}

.hero-home-shell{
  position:relative;
  z-index:2;
  min-height:590px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-home-content{
  max-width:585px;
  padding:36px 38px;
  margin-left:0;
  background:rgba(255,255,255,.52);
  border:1px solid rgba(255,255,255,.72);
  border-radius:24px;
  backdrop-filter:blur(9px);
  box-shadow:0 24px 55px rgba(7,59,105,.10);
}

.eyebrow{
  display:inline-block;
  color:var(--orange);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.eyebrow.light{
  color:#ffd0aa;
}

.eyebrow-on-hero{
  color:var(--orange);
  margin-bottom:18px;
}

.hero-home h1,
.page-hero h1{
  font-size:clamp(2.5rem,5vw,5rem);
  line-height:1.03;
  margin:0 0 22px;
  letter-spacing:-.04em;
}

.hero-home h1{
  color:var(--blue);
  text-shadow:none;
  max-width:530px;
}

.hero-home p{
  color:#526679;
  font-size:1.08rem;
  max-width:510px;
  margin:0;
  text-shadow:none;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin:30px 0 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:999px;
  font-weight:700;
  border:0;
  cursor:pointer;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary,
.btn-white-solid{
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 28px rgba(255,118,13,.25);
}

.btn-primary:hover,
.btn-white-solid:hover{
  background:#ed6700;
}

.btn-ghost,
.btn-outline-light{
  border:1px solid rgba(7,59,105,.26);
  color:var(--blue);
  background:rgba(255,255,255,.90);
  backdrop-filter:blur(6px);
}

.btn-ghost:hover,
.btn-outline-light:hover{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}

.btn-white{
  background:#fff;
  color:var(--blue);
}

.hero-feature-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:36px;
}

.hero-feature-card{
  background:rgba(255,255,255,.94);
  border:1px solid rgba(7,59,105,.08);
  border-radius:18px;
  padding:20px 22px;
  box-shadow:0 18px 45px rgba(5,39,69,.08);
  backdrop-filter:blur(10px);
}

.hero-feature-card strong,
.hero-feature-card span{
  display:block;
}

.hero-feature-card strong{
  color:var(--blue);
  font-size:1rem;
  margin-bottom:6px;
}

.hero-feature-card span{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.5;
}

/* SECCIONES */
.section{
  padding:96px 0;
}

.section-soft{
  background:var(--soft);
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}

.section-heading h2,
.showcase h2,
.contact-grid h2,
.content-grid h2{
  font-size:clamp(2rem,3.7vw,3.4rem);
  line-height:1.12;
  color:var(--blue);
  margin:0;
}

.section-heading.centered{
  text-align:center;
  max-width:780px;
  margin:0 auto 45px;
}

.section-heading p,
.lead p{
  color:var(--muted);
}

.text-link,
.service-card a,
.product-card a{
  color:var(--orange);
  font-weight:700;
}

/* TARJETAS SERVICIOS */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.service-card{
  background:#fff;
  padding:30px;
  border-radius:var(--radius);
  box-shadow:0 10px 35px rgba(5,39,69,.08);
  border-top:4px solid transparent;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:var(--orange);
}

.service-number{
  font-weight:800;
  color:#b8c7d2;
  font-size:1.6rem;
}

.service-card h3{
  color:var(--blue);
  font-size:1.15rem;
}

.service-card p{
  font-size:.9rem;
  color:var(--muted);
}

/* SHOWCASE */
.showcase-grid,
.content-grid,
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.showcase-img img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  height:520px;
  width:100%;
  object-fit:cover;
}

.check-list{
  list-style:none;
  padding:0;
}

.check-list li{
  margin:12px 0;
  padding-left:28px;
  position:relative;
}

.check-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--orange);
  font-weight:800;
}

/* CTA */
.cta-band{
  background:linear-gradient(110deg,var(--blue),#0b568d);
  color:#fff;
  padding:66px 0;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.cta-inner h2{
  font-size:2.3rem;
  max-width:760px;
  line-height:1.15;
  margin:0;
}

/* FOOTER */
.site-footer{
  background:#071f34;
  color:#b9c7d2;
  padding-top:64px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1.3fr;
  gap:60px;
}

.footer-logo{
  width:240px;
  background:#fff;
  border-radius:10px;
  padding:10px;
  margin-bottom:20px;
}

.site-footer h3{
  color:#fff;
}

.site-footer a,
.site-footer p{
  display:block;
  margin:8px 0;
  font-size:.88rem;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:45px;
  padding:20px 0;
  font-size:.8rem;
}

.floating-contact{
  position:fixed;
  right:24px;
  bottom:24px;
  background:#20b75a;
  color:#fff;
  padding:13px 18px;
  border-radius:999px;
  font-weight:700;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}

/* HERO INTERNOS */
.page-hero{
  padding:85px 0;
  background:linear-gradient(120deg,var(--blue),#0b5b94);
  color:#fff;
}

.page-hero h1{
  color:#fff;
  max-width:900px;
  font-size:clamp(2.4rem,5vw,4.6rem);
}

.page-hero p{
  font-size:1.08rem;
  max-width:700px;
  color:#d9e7f1;
}

.page-hero.compact{
  padding:65px 0;
}

.quote-card{
  background:var(--blue);
  color:#fff;
  padding:45px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.quote-card p{
  font-size:1.7rem;
  line-height:1.35;
  margin-top:0;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.value-grid article{
  background:#fff;
  padding:32px;
  border-radius:var(--radius);
}

.value-grid h3{
  color:var(--blue);
}

.solution-list{
  display:grid;
  gap:70px;
}

.solution-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
}

.solution-row.reverse img{
  order:2;
}

.solution-row img{
  height:420px;
  width:100%;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.solution-row h2{
  font-size:2.4rem;
  line-height:1.15;
  color:var(--blue);
}

/* PRODUCTOS */
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.product-card{
  border:1px solid #e1e8ed;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  transition:.3s;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.product-card > div:last-child{
  padding:24px;
}

.product-image{
  height:230px;
  background:#f3f5f7;
  padding:18px;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.product-card h3{
  color:var(--blue);
  margin:0;
}

.product-card p{
  color:var(--muted);
  font-size:.9rem;
}

/* CONTACTO */
.contact-grid{
  align-items:start;
}

.contact-data{
  display:grid;
  gap:12px;
  margin-top:35px;
}

.contact-data a,
.contact-data div{
  padding:18px;
  border:1px solid #dce5eb;
  border-radius:14px;
}

.contact-data strong,
.contact-data span{
  display:block;
}

.contact-data strong{
  color:var(--blue);
}

.contact-data span{
  font-size:.9rem;
  color:var(--muted);
}

.contact-form{
  background:#fff;
  padding:35px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.contact-form label{
  display:block;
  font-size:.82rem;
  font-weight:700;
  color:var(--blue);
  margin-bottom:16px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top:7px;
  border:1px solid #d7e0e6;
  border-radius:11px;
  padding:13px;
  font:inherit;
}

.checkbox{
  display:flex!important;
  align-items:center;
  gap:10px;
  color:var(--muted)!important;
}

.checkbox input{
  width:auto;
  margin:0;
}

.hp{
  position:absolute!important;
  left:-9999px;
}

.alert{
  padding:14px;
  border-radius:10px;
  margin-bottom:16px;
}

.success{
  background:#e6f7ed;
  color:#196c3a;
}

.error{
  background:#ffeaea;
  color:#9a2525;
}

/* ANIMACIONES */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:.7s;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

/* TABLET */
@media(max-width:900px){
  .topbar{
    display:none;
  }

  .nav-inner{
    height:74px;
  }

  .brand img{
    width:205px;
  }

  .nav-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
  }

  .nav-toggle span{
    width:27px;
    height:2px;
    background:var(--blue);
  }

  .nav-menu{
    position:absolute;
    top:74px;
    left:0;
    right:0;
    background:#fff;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:22px 25px;
    box-shadow:0 16px 30px rgba(0,0,0,.1);
  }

  .nav-menu.open{
    display:flex;
  }

  .hero-home{
    min-height:auto;
    padding:72px 0 30px;
    background-position:66% center;
  }

  .hero-home-shell{
    min-height:auto;
  }

  .hero-home-content{
    max-width:620px;
    padding:30px;
  }

  .hero-feature-strip{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:28px;
  }

  .split,
  .showcase-grid,
  .content-grid,
  .contact-grid,
  .solution-row{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .solution-row.reverse img{
    order:0;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-grid > div:first-child{
    grid-column:1/-1;
  }
}

/* MÓVIL */
@media(max-width:560px){
  .container{
    width:min(100% - 28px,1180px);
  }

  .hero-home{
    padding:54px 0 24px;
    background-position:72% center;
  }

  .hero-home-content{
    max-width:100%;
    padding:24px 20px;
    border-radius:20px;
    background:rgba(255,255,255,.76);
  }

  .hero-home h1{
    font-size:2.25rem;
    line-height:1.05;
    max-width:100%;
  }

  .hero-home p{
    font-size:.98rem;
    max-width:100%;
  }

  .hero-actions{
    flex-direction:column;
    margin-top:24px;
  }

  .hero-home .btn{
    width:100%;
  }

  .hero-feature-card{
    padding:18px;
  }

  .service-grid,
  .value-grid,
  .product-grid,
  .field-row,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:68px 0;
  }

  .product-image{
    height:190px;
  }

  .showcase-img img,
  .solution-row img{
    height:300px;
  }

  .cta-inner h2{
    font-size:1.8rem;
  }
}
/* =========================
   HERO HOME SERVIPACK
========================= */

.hero-home{
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 110px 0 40px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.78) 28%, rgba(255,255,255,0.42) 55%, rgba(255,255,255,0.12) 100%),
    url('../img/hero/servipack-hero-home.png') center center / cover no-repeat;
}

.hero-home::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.55), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  pointer-events: none;
}

.hero-home-shell{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
}

.hero-home-layout{
  display: flex;
  align-items: center;
  min-height: 470px;
}

.hero-home-content{
  max-width: 560px;
  padding: 38px 38px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(7,59,105,.10);
}

.eyebrow-on-hero{
  display: inline-block;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-home h1{
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  max-width: 520px;
}

.hero-home p{
  margin: 0;
  color: #526373;
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 500px;
}

.hero-home .hero-actions{
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-secondary-hero{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--blue);
  background: rgba(255,255,255,.90);
  color: var(--blue);
  transition: .25s ease;
}

.btn-secondary-hero:hover{
  background: var(--blue);
  color: #fff;
}

.hero-feature-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.hero-feature-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,59,105,.08);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 18px 45px rgba(5,39,69,.08);
  backdrop-filter: blur(8px);
}

.hero-feature-card strong{
  display: block;
  color: var(--blue);
  font-size: 1rem;
  margin-bottom: 7px;
}

.hero-feature-card span{
  display: block;
  color: var(--muted);
  font-size: .90rem;
  line-height: 1.55;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 992px){
  .hero-home{
    min-height: auto;
    padding: 90px 0 34px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.76) 40%, rgba(255,255,255,0.40) 100%),
      url('../img/hero/servipack-hero-home.png') 68% center / cover no-repeat;
  }

  .hero-home-shell{
    min-height: auto;
  }

  .hero-home-layout{
    min-height: auto;
  }

  .hero-home-content{
    max-width: 100%;
    padding: 34px 28px;
  }

  .hero-home h1{
    max-width: 100%;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
  }

  .hero-home p{
    max-width: 100%;
  }

  .hero-feature-strip{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 576px){
  .hero-home{
    padding: 72px 0 26px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.82) 45%, rgba(255,255,255,0.54) 100%),
      url('../img/hero/servipack-hero-home.png') 74% center / cover no-repeat;
  }

  .hero-home-content{
    padding: 24px 20px;
    border-radius: 20px;
  }

  .eyebrow-on-hero{
    font-size: .72rem;
    letter-spacing: .14em;
    margin-bottom: 12px;
  }

  .hero-home h1{
    font-size: 2.05rem;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .hero-home p{
    font-size: .95rem;
    line-height: 1.65;
  }

  .hero-home .hero-actions{
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .hero-home .btn,
  .hero-home .btn-secondary-hero{
    width: 100%;
  }

  .hero-feature-card{
    padding: 16px 16px;
  }

  .hero-feature-card strong{
    font-size: .95rem;
  }

  .hero-feature-card span{
    font-size: .86rem;
  }
}
/* =========================================
   AJUSTE FINAL HERO SERVIPACK
========================================= */

.hero-home{
  min-height: 720px;
  padding: 75px 0 35px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.88) 27%,
      rgba(255,255,255,.38) 51%,
      rgba(255,255,255,.04) 76%
    ),
    url('../img/hero/servipack-hero-home.png')
    center center / cover no-repeat;
}

.hero-home-shell{
  min-height: 600px;
}

.hero-home-layout{
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Caja principal más ancha */
.hero-home-content{
  width: min(680px, 55%);
  max-width: 680px;
  margin-left: 0;
  padding: 38px 42px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.90);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 55px rgba(7,59,105,.13);
}

/* Título menos grande para evitar tantos saltos */
.hero-home h1{
  max-width: 610px;
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 4.1vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--blue);
}

/* Texto descriptivo */
.hero-home p{
  max-width: 570px;
  margin: 0;
  color: #56697a;
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Texto superior */
.eyebrow-on-hero{
  margin-bottom: 18px;
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .16em;
}

/* Botones */
.hero-home .hero-actions{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-home .btn{
  min-width: 165px;
}

/* Tarjetas inferiores */
.hero-feature-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(100%, 930px);
  margin-top: 24px;
}

.hero-feature-card{
  min-height: 92px;
  padding: 20px 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(7,59,105,.10);
  border-radius: 17px;
  box-shadow: 0 16px 38px rgba(5,39,69,.09);
}

.hero-feature-card strong{
  margin-bottom: 6px;
  color: var(--blue);
  font-size: .98rem;
}

.hero-feature-card span{
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.5;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px){

  .hero-home{
    min-height: auto;
    padding: 70px 0 32px;
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.97) 0%,
        rgba(255,255,255,.91) 52%,
        rgba(255,255,255,.35) 100%
      ),
      url('../img/hero/servipack-hero-home.png')
      67% center / cover no-repeat;
  }

  .hero-home-shell{
    min-height: auto;
  }

  .hero-home-layout{
    min-height: auto;
  }

  .hero-home-content{
    width: min(620px, 72%);
    max-width: 620px;
    padding: 34px;
  }

  .hero-home h1{
    font-size: clamp(2.5rem, 5vw, 3.9rem);
    line-height: 1;
  }

  .hero-feature-strip{
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================
   TELÉFONO
========================================= */

@media (max-width: 700px){

  .hero-home{
    min-height: auto;
    padding: 38px 0 25px;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.97) 0%,
        rgba(255,255,255,.93) 56%,
        rgba(255,255,255,.60) 100%
      ),
      url('../img/hero/servipack-hero-home.png')
      70% center / cover no-repeat;
  }

  .hero-home-layout{
    display: block;
  }

  .hero-home-content{
    width: 100%;
    max-width: 100%;
    padding: 25px 21px;
    border-radius: 20px;
    background: rgba(255,255,255,.90);
  }

  .eyebrow-on-hero{
    font-size: .67rem;
    line-height: 1.5;
    letter-spacing: .12em;
  }

  .hero-home h1{
    max-width: 100%;
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.02;
    letter-spacing: -.035em;
  }

  .hero-home p{
    max-width: 100%;
    font-size: .94rem;
    line-height: 1.62;
  }

  .hero-home .hero-actions{
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 22px;
  }

  .hero-home .btn,
  .hero-home .btn-secondary-hero{
    width: 100%;
    min-width: 0;
  }

  .hero-feature-strip{
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 18px;
  }

  .hero-feature-card{
    min-height: auto;
    padding: 16px 17px;
  }
}

/* Teléfonos muy pequeños */
@media (max-width: 400px){

  .hero-home h1{
    font-size: 2rem;
  }

  .hero-home-content{
    padding: 22px 18px;
  }
}
/* =========================================
   HERO SERVIPACK SIN TARJETA
========================================= */

.hero-home{
  min-height: 700px;
  padding: 85px 0 35px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.94) 23%,
      rgba(255,255,255,.72) 42%,
      rgba(255,255,255,.18) 66%,
      rgba(255,255,255,.02) 100%
    ),
    url('../img/hero/servipack-hero-home.png')
    center center / cover no-repeat;
}

.hero-home-shell{
  position:relative;
  z-index:2;
  min-height:580px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-home-layout{
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

/* Se elimina visualmente la tarjeta */
.hero-home-content{
  width:min(650px,54%);
  max-width:650px;
  margin:0;
  padding:20px 0;
  background:transparent;
  border:0;
  border-radius:0;
  backdrop-filter:none;
  box-shadow:none;
}

.eyebrow-on-hero{
  display:inline-block;
  margin-bottom:16px;
  color:var(--orange);
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-home h1{
  max-width:620px;
  margin:0 0 20px;
  color:var(--blue);
  font-size:clamp(3rem,4.4vw,5rem);
  line-height:.98;
  letter-spacing:-.045em;
  text-shadow:0 2px 14px rgba(255,255,255,.45);
}

.hero-home p{
  max-width:560px;
  margin:0;
  color:#52677a;
  font-size:1.05rem;
  line-height:1.7;
}

.hero-home .hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.hero-home .btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:0 12px 28px rgba(255,118,13,.24);
}

.btn-secondary-hero{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border:1px solid var(--blue);
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:var(--blue);
  font-weight:700;
  transition:.25s ease;
}

.btn-secondary-hero:hover{
  background:var(--blue);
  color:#fff;
}

/* Tarjetas inferiores más integradas */
.hero-feature-strip{
  width:min(920px,100%);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:25px;
}

.hero-feature-card{
  min-height:88px;
  padding:18px 20px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(7,59,105,.08);
  border-radius:16px;
  box-shadow:0 14px 34px rgba(5,39,69,.08);
  backdrop-filter:blur(8px);
}

.hero-feature-card strong{
  display:block;
  margin-bottom:5px;
  color:var(--blue);
  font-size:.96rem;
}

.hero-feature-card span{
  display:block;
  color:var(--muted);
  font-size:.84rem;
  line-height:1.5;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:992px){

  .hero-home{
    min-height:auto;
    padding:70px 0 30px;
    background:
      linear-gradient(
        90deg,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.92) 46%,
        rgba(255,255,255,.40) 100%
      ),
      url('../img/hero/servipack-hero-home.png')
      68% center / cover no-repeat;
  }

  .hero-home-shell{
    min-height:auto;
  }

  .hero-home-layout{
    min-height:auto;
  }

  .hero-home-content{
    width:68%;
    max-width:620px;
    padding:10px 0;
  }

  .hero-home h1{
    font-size:clamp(2.6rem,5.8vw,4rem);
  }

  .hero-feature-strip{
    grid-template-columns:repeat(3,1fr);
  }
}

/* =========================================
   MÓVIL
========================================= */

@media(max-width:700px){

  .hero-home{
    padding:42px 0 25px;
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.97) 0%,
        rgba(255,255,255,.92) 56%,
        rgba(255,255,255,.60) 100%
      ),
      url('../img/hero/servipack-hero-home.png')
      72% center / cover no-repeat;
  }

  .hero-home-content{
    width:100%;
    max-width:100%;
    padding:8px 0;
  }

  .eyebrow-on-hero{
    font-size:.68rem;
    line-height:1.5;
    letter-spacing:.12em;
    margin-bottom:12px;
  }

  .hero-home h1{
    max-width:100%;
    font-size:2.3rem;
    line-height:1.02;
    margin-bottom:16px;
  }

  .hero-home p{
    max-width:100%;
    font-size:.94rem;
    line-height:1.62;
  }

  .hero-home .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:11px;
    margin-top:22px;
  }

  .hero-home .btn,
  .hero-home .btn-secondary-hero{
    width:100%;
  }

  .hero-feature-strip{
    grid-template-columns:1fr;
    gap:10px;
    margin-top:22px;
  }

  .hero-feature-card{
    min-height:auto;
    padding:15px 17px;
  }
}

@media(max-width:400px){

  .hero-home h1{
    font-size:2rem;
  }
}

/* =========================================================
   PÁGINA EMPRESA SERVIPACK
========================================================= */
.empresa-hero{
  position:relative;
  overflow:hidden;
  min-height:620px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(4,42,76,.96) 0%,rgba(4,54,94,.88) 42%,rgba(4,48,84,.42) 68%,rgba(4,48,84,.15) 100%),
    url('../img/hero/servipack-hero-home.png') 70% center / cover no-repeat;
}

.empresa-hero::before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  left:-300px;
  top:70px;
  border:90px solid rgba(255,118,13,.16);
  transform:rotate(45deg);
}

.empresa-hero::after{
  content:"";
  position:absolute;
  inset:auto -120px -180px auto;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,118,13,.20),transparent 68%);
}

.empresa-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(4,34,62,.18));
}

.empresa-hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:70px;
  align-items:end;
  padding:105px 0 82px;
}

.empresa-hero-copy{
  max-width:760px;
}

.empresa-eyebrow{
  color:#ffad69;
}

.empresa-hero h1{
  margin:0 0 24px;
  max-width:760px;
  color:#fff;
  font-size:clamp(3.3rem,6vw,6.5rem);
  line-height:.95;
  letter-spacing:-.055em;
}

.empresa-hero-copy>p{
  max-width:650px;
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:1.12rem;
}

.empresa-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.empresa-btn-light{
  border:1px solid rgba(255,255,255,.52);
  color:#fff;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}

.empresa-btn-light:hover{
  background:#fff;
  color:var(--blue);
}

.empresa-hero-panel{
  padding:32px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:24px;
  background:rgba(255,255,255,.10);
  color:#fff;
  backdrop-filter:blur(12px);
  box-shadow:0 24px 55px rgba(0,0,0,.16);
}

.empresa-hero-panel span{
  color:#ffb070;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.empresa-hero-panel strong{
  display:block;
  margin:14px 0 12px;
  font-size:1.55rem;
  line-height:1.22;
}

.empresa-hero-panel p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.92rem;
}

.empresa-about{
  position:relative;
  overflow:hidden;
}

.empresa-about::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-180px;
  top:90px;
  border-radius:50%;
  background:rgba(7,59,105,.035);
}

.empresa-about-grid{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.empresa-about-visual{
  position:relative;
  min-height:560px;
}

.empresa-about-visual>img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:0 28px 65px rgba(5,39,69,.16);
}

.empresa-quote-float{
  position:absolute;
  right:-34px;
  bottom:0;
  width:min(360px,80%);
  padding:28px 30px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--blue),#0d5e99);
  color:#fff;
  box-shadow:0 22px 45px rgba(5,39,69,.25);
}

.empresa-quote-float span{
  color:#ffb070;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.empresa-quote-float p{
  margin:11px 0 0;
  font-size:1.22rem;
  line-height:1.4;
}

.empresa-about-copy h2,
.empresa-process-copy h2{
  margin:0 0 22px;
  color:var(--blue);
  font-size:clamp(2.5rem,4.4vw,4.5rem);
  line-height:1.02;
  letter-spacing:-.045em;
}

.empresa-about-copy>p,
.empresa-process-copy>p{
  color:var(--muted);
}

.empresa-capabilities{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:30px;
}

.empresa-capabilities div{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:70px;
  padding:15px 16px;
  border:1px solid #e1e8ed;
  border-radius:14px;
  background:#fff;
}

.empresa-capabilities span{
  color:var(--orange);
  font-size:.78rem;
  font-weight:800;
}

.empresa-capabilities strong{
  color:var(--blue);
  font-size:.88rem;
  line-height:1.35;
}

.empresa-pillars-section{
  background:
    linear-gradient(180deg,#f5f8fa,#eef3f6);
}

.empresa-pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.empresa-pillar{
  position:relative;
  overflow:hidden;
  min-height:320px;
  padding:34px;
  border:1px solid rgba(7,59,105,.07);
  border-radius:24px;
  background:#fff;
  box-shadow:0 15px 40px rgba(5,39,69,.06);
  transition:transform .3s ease,box-shadow .3s ease;
}

.empresa-pillar::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,var(--orange),#ffad66);
}

.empresa-pillar:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 55px rgba(5,39,69,.12);
}

.empresa-pillar-number{
  position:absolute;
  right:24px;
  top:18px;
  color:#edf2f5;
  font-size:3.8rem;
  font-weight:800;
  line-height:1;
}

.empresa-pillar-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,118,13,.10);
  color:var(--orange);
  font-size:1.5rem;
  font-weight:800;
}

.empresa-pillar h3{
  margin:28px 0 12px;
  color:var(--blue);
  font-size:1.35rem;
}

.empresa-pillar p{
  margin:0;
  color:var(--muted);
}

.empresa-process-section{
  background:#fff;
}

.empresa-process-grid{
  display:grid;
  grid-template-columns:.86fr 1.14fr;
  gap:80px;
  align-items:start;
}

.empresa-process{
  position:relative;
  display:grid;
  gap:18px;
}

.empresa-process::before{
  content:"";
  position:absolute;
  left:27px;
  top:45px;
  bottom:45px;
  width:2px;
  background:linear-gradient(var(--orange),rgba(7,59,105,.15));
}

.empresa-process-step{
  position:relative;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:20px;
  align-items:start;
  padding:22px 24px 22px 0;
}

.empresa-process-step>span{
  position:relative;
  z-index:2;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--blue);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  box-shadow:0 10px 24px rgba(7,59,105,.18);
}

.empresa-process-step strong{
  color:var(--blue);
  font-size:1.15rem;
}

.empresa-process-step p{
  margin:5px 0 0;
  color:var(--muted);
  font-size:.92rem;
}

.empresa-cta{
  position:relative;
  overflow:hidden;
  padding:76px 0;
  background:linear-gradient(115deg,#062f54,#0d5d98);
  color:#fff;
}

.empresa-cta::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-150px;
  width:420px;
  height:420px;
  border:72px solid rgba(255,255,255,.05);
  border-radius:50%;
}

.empresa-cta-inner{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.empresa-cta h2{
  max-width:850px;
  margin:0;
  font-size:clamp(2rem,4vw,3.8rem);
  line-height:1.05;
}

@media(max-width:900px){
  .empresa-hero-grid,
  .empresa-about-grid,
  .empresa-process-grid{
    grid-template-columns:1fr;
  }

  .empresa-hero-grid{
    gap:34px;
    padding:80px 0 55px;
  }

  .empresa-hero{
    min-height:auto;
    background-position:68% center;
  }

  .empresa-hero h1{
    max-width:680px;
  }

  .empresa-hero-panel{
    max-width:520px;
  }

  .empresa-about-grid,
  .empresa-process-grid{
    gap:50px;
  }

  .empresa-about-visual{
    min-height:500px;
  }

  .empresa-about-visual>img{
    height:460px;
  }

  .empresa-quote-float{
    right:20px;
  }

  .empresa-pillars{
    grid-template-columns:1fr 1fr;
  }

  .empresa-pillar:last-child{
    grid-column:1/-1;
  }
}

@media(max-width:560px){
  .empresa-hero{
    background:
      linear-gradient(180deg,rgba(4,42,76,.94),rgba(4,54,94,.82)),
      url('../img/hero/servipack-hero-home.png') 72% center / cover no-repeat;
  }

  .empresa-hero-grid{
    padding:60px 0 42px;
  }

  .empresa-hero h1{
    font-size:2.7rem;
    line-height:.98;
  }

  .empresa-hero-copy>p{
    font-size:.96rem;
  }

  .empresa-hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .empresa-hero-actions .btn{
    width:100%;
  }

  .empresa-hero-panel{
    padding:24px;
  }

  .empresa-about-visual{
    min-height:auto;
    padding-bottom:100px;
  }

  .empresa-about-visual>img{
    height:320px;
    border-radius:20px;
  }

  .empresa-quote-float{
    right:12px;
    left:12px;
    bottom:10px;
    width:auto;
    padding:22px;
  }

  .empresa-quote-float p{
    font-size:1.05rem;
  }

  .empresa-about-copy h2,
  .empresa-process-copy h2{
    font-size:2.35rem;
  }

  .empresa-capabilities,
  .empresa-pillars{
    grid-template-columns:1fr;
  }

  .empresa-pillar:last-child{
    grid-column:auto;
  }

  .empresa-pillar{
    min-height:auto;
    padding:28px;
  }

  .empresa-process-step{
    grid-template-columns:48px 1fr;
    gap:15px;
  }

  .empresa-process-step>span{
    width:48px;
    height:48px;
  }

  .empresa-process::before{
    left:23px;
  }

  .empresa-cta{
    padding:58px 0;
  }

  .empresa-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}
