:root {
  --orange: #ff8903;
  --blue: #004a90;
  --blue-dark: #002f5e;
  --black: #050505;
  --ink: #141414;
  --muted: #666;
  --soft: #f4f5f7;
  --white: #fff;
  --radius: 8px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --shadow-sm: 0 10px 24px rgba(0,0,0,.1);
  --shadow-md: 0 18px 44px rgba(0,0,0,.16);
  --shadow-lg: 0 28px 70px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.section, .blog-preview, .contact-slab, .services-home { position:relative; }
.section::before, .blog-preview::before, .contact-slab::before {
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(0,74,144,.045) 96% 100%),
    linear-gradient(0deg, transparent 0 96%, rgba(255,137,3,.035) 96% 100%);
  background-size:34px 34px;
  mask-image:linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.wrap { width: min(1140px, calc(100% - 34px)); margin: 0 auto; }
.topbar { position:relative; z-index:35; background:#1f1c1c; color:var(--white); }
.topbar::before,
.topbar::after { content:none; }
.topbar-inner { min-height:42px; display:grid; grid-template-columns:auto 1fr auto; gap:24px; align-items:center; font-family:Barlow,sans-serif; font-size:16px; font-weight:800; }
.topbar-item:first-child::before { content:"\2022"; color:var(--orange); margin-right:9px; }
.topbar-message { text-align:center; }
.topbar-message::before { content:"\2192"; color:var(--orange); margin-right:10px; font-size:23px; vertical-align:-1px; }
.site-header { position:sticky; top:0; z-index:34; background:#fff; box-shadow:0 12px 28px rgba(0,0,0,.1); transition:box-shadow .25s var(--ease), transform .25s var(--ease); }
.site-header.is-scrolled { box-shadow:0 16px 44px rgba(0,0,0,.16); }
.nav-shell { position:relative; min-height:92px; display:flex; align-items:center; gap:30px; padding:10px 36px; background:#fff; }
.nav-shell::before { content:none; }
.brand { position:relative; z-index:1; display:flex; align-items:center; flex:0 0 auto; }
.brand img { width:148px; height:auto; object-fit:contain; transition:transform .25s var(--ease), filter .25s var(--ease); }
.brand:hover img { transform:translateY(-2px); filter:drop-shadow(0 8px 14px rgba(0,74,144,.18)); }
.main-nav { display:flex; gap:28px; margin-left:auto; align-items:center; font-family:Barlow,sans-serif; font-weight:900; font-size:17px; }
.nav-item { position:relative; display:flex; align-items:center; }
.main-nav a { padding:38px 0 34px; position:relative; color:#090909; transition:color .2s ease, transform .2s var(--ease); }
.main-nav a:hover { transform:translateY(-1px); }
.main-nav a.active, .main-nav a:hover { color:var(--orange); }
.main-nav a.active::after, .main-nav a:hover::after { content:""; position:absolute; left:0; right:0; bottom:25px; height:4px; background:var(--orange); border-radius:99px; box-shadow:10px 0 0 var(--orange); }
.nav-has-dropdown > a { padding-right:16px; }
.nav-has-dropdown > a::before {
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-65%) rotate(45deg);
  transition:transform .22s var(--ease);
}
.nav-has-dropdown:hover > a::before,
.nav-has-dropdown.open > a::before {
  transform:translateY(-35%) rotate(225deg);
}
.nav-dropdown {
  position:absolute;
  left:50%;
  top:calc(100% - 18px);
  z-index:50;
  width:286px;
  padding:8px;
  background:#fff;
  border-top:3px solid var(--orange);
  border-radius:6px;
  box-shadow:0 18px 42px rgba(7,25,45,.16);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%, 8px);
  transition:opacity .22s ease, transform .22s var(--ease), visibility .22s ease;
}
.nav-dropdown::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-22px;
  height:22px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown {
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
}
.main-nav .nav-dropdown a {
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:10px;
  align-items:center;
  padding:10px 11px;
  border-radius:4px;
  color:#172331;
  line-height:1.1;
  transition:background .2s ease, color .2s ease, transform .22s var(--ease);
}
.main-nav .nav-dropdown a::after,
.main-nav .nav-dropdown a::before {
  content:none;
}
.main-nav .nav-dropdown a:hover {
  background:#eef3f7;
  color:var(--blue);
  transform:translateX(2px);
}
.nav-dropdown span {
  display:grid;
  place-items:center;
  width:30px;
  height:30px;
  background:rgba(255,137,3,.12);
  color:var(--orange);
  border-radius:4px;
  font-family:Barlow,sans-serif;
  font-weight:900;
  font-size:12px;
}
.nav-dropdown a:hover span {
  background:var(--orange);
  color:white;
}
.nav-dropdown b {
  display:block;
  font-size:15px;
}
.nav-cta, .btn { border:0; display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:12px 20px; border-radius:2px; font-family:Barlow,sans-serif; font-weight:900; cursor:pointer; transition:transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease); }
.nav-cta { position:relative; min-height:60px; padding:16px 58px 16px 32px; margin-left:8px; background:var(--blue); color:var(--white); font-size:17px; text-transform:uppercase; overflow:hidden; }
.nav-cta::after { content:""; position:absolute; right:0; top:0; width:42px; height:100%; background:var(--orange); clip-path:polygon(28% 0,100% 0,100% 100%,0 100%); }
.nav-cta span { position:absolute; right:13px; z-index:1; font-size:24px; }
.nav-cta:hover, .btn:hover, .small-btn:hover, .brochure-btn:hover { transform:translateY(-3px); box-shadow:0 14px 28px rgba(0,74,144,.2); }
.btn-orange:hover, .small-btn:hover, .brochure-btn:hover { box-shadow:0 14px 30px rgba(255,137,3,.28); }
.menu-btn { display:none; width:48px; height:48px; background:var(--blue); border:0; border-radius:4px; margin-left:auto; }
.menu-btn span { display:block; width:24px; height:3px; background:white; margin:5px auto; border-radius:99px; }

.hero { position: relative; min-height: 540px; overflow:hidden; background:#111; }
.hero-home .slide { position:absolute; inset:0; opacity:0; transition:opacity .75s ease, transform 5.8s linear; background-position:center; background-size:cover; transform:scale(1.015); }
.hero-home .slide.is-active { opacity:1; }
.hero-home .slide.is-active { transform:scale(1.04); }
.hero-grid { min-height: 540px; display:grid; align-items:center; }
.hero-copy { width:min(520px, 100%); color:var(--white); }
.tag { display:inline-block; background:var(--orange); color:#111; padding:8px 18px; margin-bottom:18px; font-family:Barlow,sans-serif; font-weight:900; clip-path: polygon(7% 0,100% 0,93% 100%,0 100%); box-shadow:0 10px 24px rgba(255,137,3,.25); }
h1,h2,h3,p { margin-top:0; }
h1 { font-family:Barlow,sans-serif; font-size:clamp(42px,7vw,76px); line-height:.9; margin-bottom:18px; color:inherit; }
h2 { font-family:Barlow,sans-serif; font-size:clamp(34px,4vw,54px); line-height:1; margin-bottom:16px; }
h3 { font-family:Barlow,sans-serif; font-size:28px; line-height:1.05; margin-bottom:12px; }
.hero-copy p { color:#f1f1f1; line-height:1.75; margin-bottom:26px; }
.btn-orange { background:var(--orange); color:var(--white); }
.btn-blue { background:var(--blue); color:var(--white); }
.btn-dark { background:#111; color:var(--white); }
.slider-dots { position:absolute; left:50%; bottom:28px; transform:translateX(-50%); display:flex; gap:10px; }
.slider-dots button { width:12px; height:12px; border-radius:50%; border:2px solid #fff; background:transparent; padding:0; transition:width .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.slider-dots button.active { width:30px; background:var(--orange); border-color:var(--orange); border-radius:999px; }

.info-strip { position:relative; z-index:3; margin-top:-48px; }
.strip-grid { background:rgba(255,255,255,.95); min-height:96px; display:grid; grid-template-columns:1.3fr repeat(3,1fr); align-items:center; box-shadow:var(--shadow-md); backdrop-filter:blur(14px); }
.strip-grid > div { padding:18px 24px; border-right:1px solid #ddd; }
.strip-grid > div { transition:background .22s var(--ease), transform .22s var(--ease); }
.strip-grid > div:hover { background:#fff; transform:translateY(-4px); }
.strip-grid b { display:block; color:var(--blue); font-family:Barlow,sans-serif; text-transform:uppercase; }
.strip-grid span { color:#333; }
.experience { display:flex; align-items:center; gap:14px; text-transform:uppercase; font-family:Barlow,sans-serif; font-weight:900; }
.experience strong { color:var(--orange); font-size:56px; line-height:1; }

.section { padding:92px 0; }
.two-col { display:grid; grid-template-columns:.95fr 1.05fr; gap:70px; align-items:center; }
.mini { display:block; color:var(--orange); font-family:Barlow,sans-serif; font-weight:900; text-transform:uppercase; font-size:13px; margin-bottom:8px; }
.section-text p { color:var(--muted); line-height:1.8; }
.photo-stack { position:relative; padding:0 0 50px 45px; }
.photo-stack img:first-child { border-radius:var(--radius); height:420px; width:85%; object-fit:cover; box-shadow:var(--shadow-lg); transition:transform .45s var(--ease), filter .45s var(--ease); }
.photo-stack img:last-child { position:absolute; left:0; bottom:0; width:230px; height:180px; object-fit:cover; border:8px solid white; border-radius:var(--radius); box-shadow:var(--shadow-md); transition:transform .45s var(--ease); }
.photo-stack:hover img:first-child { transform:translateY(-6px) scale(1.015); filter:saturate(1.08) contrast(1.03); }
.photo-stack:hover img:last-child { transform:translate(6px,-6px); }
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:24px 0; }
.feature-grid span { padding-left:34px; position:relative; font-weight:800; transition:color .2s ease, transform .2s var(--ease); }
.feature-grid span::before { content:""; position:absolute; left:0; top:3px; width:17px; height:17px; background:var(--orange); border-radius:50%; }
.feature-grid span::after { content:""; position:absolute; left:5px; top:8px; width:7px; height:4px; border-left:2px solid #fff; border-bottom:2px solid #fff; transform:rotate(-45deg); }
.feature-grid span:hover { color:var(--blue); transform:translateX(3px); }
.metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; padding:0 0 70px; }
.metrics div { display:flex; gap:12px; align-items:flex-end; justify-content:center; transition:transform .25s var(--ease); }
.metrics div:hover { transform:translateY(-5px); }
.metrics strong { font-family:Barlow,sans-serif; font-size:48px; color:#cfcfcf; line-height:.8; }
.metrics span { font-family:Barlow,sans-serif; font-weight:900; text-transform:uppercase; font-size:13px; }

.services-home {
  padding:88px 0 96px;
  color:#111;
  background:#eef3f7;
  overflow:hidden;
}
.services-home::after {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:360px;
  z-index:0;
  background:
    linear-gradient(90deg, rgba(255,137,3,.88) 0 8px, transparent 8px 100%),
    linear-gradient(135deg,#07192d 0%,#0a3158 60%,#004a90 100%);
}
.service-title {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,430px);
  gap:36px 58px;
  align-items:center;
  margin-bottom:42px;
}
.service-title .mini { margin-bottom:10px; }
.service-title h2 {
  margin:0;
  color:white;
  font-size:clamp(48px,7vw,82px);
  letter-spacing:0;
  text-shadow:0 14px 32px rgba(0,0,0,.2);
}
.service-title h2::after {
  content:"";
  display:block;
  width:88px;
  height:6px;
  margin-top:16px;
  background:var(--orange);
  border-radius:999px;
  box-shadow:38px 0 0 rgba(255,255,255,.22);
}
.service-intro {
  padding:26px 28px;
  border-left:5px solid var(--orange);
  background:rgba(255,255,255,.1);
  box-shadow:0 18px 42px rgba(0,0,0,.12);
  backdrop-filter:blur(10px);
}
.service-title p {
  margin:0 0 18px;
  color:rgba(255,255,255,.9);
  line-height:1.75;
  font-weight:600;
}
.service-showcase {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  align-items:stretch;
}
.service-card {
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#fff;
  border-radius:8px;
  border:1px solid rgba(7,25,45,.08);
  box-shadow:0 24px 60px rgba(4,21,38,.16);
  isolation:isolate;
  transition:transform .32s var(--ease), box-shadow .32s var(--ease);
}
.service-card::before {
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  z-index:3;
  background:var(--orange);
}
.service-card::after {
  content:"";
  position:absolute;
  right:-64px;
  bottom:-72px;
  width:170px;
  height:170px;
  border:26px solid rgba(0,74,144,.055);
  border-radius:50%;
  pointer-events:none;
}
.service-card.featured { background:#fff; color:var(--ink); }
.service-card:hover {
  transform:translateY(-10px);
  box-shadow:0 32px 80px rgba(4,21,38,.22);
}
.service-card.reveal.visible:hover { transform:translateY(-10px); }
.service-copy {
  position:relative;
  display:flex;
  flex:1;
  flex-direction:column;
  padding:30px 28px 28px;
  background:linear-gradient(180deg,#fff 0%,#f8fbfd 100%);
}
.service-kicker {
  display:inline-flex;
  width:max-content;
  max-width:100%;
  margin-bottom:15px;
  padding:8px 11px;
  background:#edf4fa;
  color:var(--blue);
  border-radius:4px;
  font-family:Barlow,sans-serif;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}
.service-card.featured .service-kicker { background:#edf4fa; color:var(--blue); }
.service-copy h3 {
  margin-bottom:12px;
  color:#111;
  font-size:clamp(24px,2vw,30px);
  line-height:1.06;
  min-height:68px;
  overflow-wrap:anywhere;
  hyphens:auto;
}
.service-copy p {
  line-height:1.78;
  color:#44515d;
  opacity:1;
  font-weight:600;
}
.service-points {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:4px 0 18px;
}
.service-points span {
  padding:8px 10px;
  background:#eef3f7;
  color:#273847;
  border-radius:4px;
  font-size:13px;
  font-weight:800;
}
.service-card.featured .service-points span { background:#eef3f7; color:#273847; }
.service-media {
  position:relative;
  margin:0;
  min-height:210px;
  overflow:hidden;
}
.service-media::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,74,144,.08), rgba(0,0,0,.22));
  pointer-events:none;
}
.service-media img {
  width:100%;
  height:240px;
  object-fit:cover;
  transition:transform .55s var(--ease), filter .55s var(--ease);
}
.service-card:hover .service-media img {
  transform:scale(1.07);
  filter:saturate(1.14) contrast(1.04);
}
.small-btn {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:10px;
  background:white;
  color:#111;
  padding:12px 18px;
  font-family:Barlow,sans-serif;
  font-weight:900;
  border-radius:4px;
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease, color .22s ease;
}
.service-copy .small-btn { margin-top:auto; width:max-content; }
.small-btn span { transition:transform .22s var(--ease); }
.small-btn:hover span { transform:translateX(4px); }
.services-home .small-btn { background:var(--orange); color:white; }
.services-home .small-btn:hover { background:var(--blue); color:white; }
.service-card.featured .small-btn:hover { background:var(--blue); color:white; }

.center { text-align:center; }
.process-grid { margin-top:42px; display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.process-grid div { text-align:center; padding:18px 14px; border-radius:var(--radius); transition:transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease); }
.process-grid div:hover { transform:translateY(-8px); background:#fff; box-shadow:var(--shadow-sm); }
.process-grid b { display:grid; place-items:center; width:58px; height:58px; margin:0 auto 20px; background:var(--orange); color:white; border-radius:50%; font-family:Barlow,sans-serif; font-size:24px; box-shadow:0 10px 22px rgba(255,137,3,.3); transition:transform .25s var(--ease); }
.process-grid div:hover b { transform:rotate(8deg) scale(1.06); }
.process-grid h3 { font-size:21px; }
.process-grid p { color:var(--muted); line-height:1.6; }
.cta-dark { padding:95px 0; text-align:center; color:white; background:linear-gradient(rgba(0,0,0,.74),rgba(0,0,0,.82)), url('../img/redes-telecomunicaciones.png') center/cover fixed; border-bottom:12px solid var(--orange); }
.cta-dark h2 { max-width:700px; margin:0 auto 24px; }
.cta-pills { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:28px; }
.cta-pills span { padding:9px 14px; background:rgba(255,137,3,.92); border-radius:30px; font-weight:800; font-size:13px; box-shadow:0 8px 18px rgba(255,137,3,.18); transition:transform .22s var(--ease), background .22s ease; }
.cta-pills span:hover { transform:translateY(-3px); background:var(--blue); }
.blog-preview { background:#fff; }
.cards-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:38px; }
.cards-3 article { position:relative; background:white; box-shadow:0 14px 35px rgba(0,0,0,.1); padding-bottom:24px; border-radius:var(--radius); overflow:hidden; transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.cards-3 article:hover { transform:translateY(-10px); box-shadow:var(--shadow-lg); }
.cards-3 img { height:190px; width:100%; object-fit:cover; transition:transform .45s var(--ease), filter .45s var(--ease); }
.cards-3 article:hover img { transform:scale(1.06); filter:saturate(1.1); }
.cards-3 article span { display:inline-block; background:var(--orange); color:white; padding:9px 12px; margin:-22px 0 18px 22px; position:relative; font-weight:900; }
.cards-3 h3 { padding:0 22px; font-size:23px; }
.cards-3 a { margin-left:22px; color:var(--blue); font-weight:900; transition:color .2s ease, letter-spacing .2s ease; }
.cards-3 a:hover { color:var(--orange); letter-spacing:.3px; }
.contact-slab { background:#f6f6f6; padding:90px 0; overflow:hidden; }
.contact-slab-grid { display:grid; grid-template-columns:1fr .9fr; gap:50px; align-items:center; }
.contact-slab h2 { max-width:430px; }
.contact-slab img { height:430px; object-fit:cover; object-position:center; border-radius:var(--radius); box-shadow:var(--shadow-md); transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
.contact-slab img:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.mini-form { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.mini-form input,.mini-form textarea { border:1px solid #ddd; padding:14px; min-width:0; border-radius:4px; background:#fff; transition:border-color .2s ease, box-shadow .2s ease, transform .2s var(--ease); }
.mini-form input:focus,.mini-form textarea:focus { outline:0; border-color:var(--blue); box-shadow:0 0 0 4px rgba(0,74,144,.11); transform:translateY(-1px); }
.mini-form input::placeholder,.mini-form textarea::placeholder { color:#999; }
.mini-form textarea { grid-column:1/-1; min-height:130px; resize:vertical; }
.mini-form button { width:max-content; }
.mini-form button:disabled { opacity:.72; cursor:not-allowed; transform:none; }
.form-status {
  grid-column:1/-1;
  margin:2px 0 0;
  padding:12px 14px;
  border-radius:4px;
  font-weight:800;
  line-height:1.45;
}
.form-status.success {
  background:rgba(45,183,66,.12);
  color:#19752a;
}
.form-status.error {
  background:rgba(210,42,42,.1);
  color:#9c1f1f;
}
.footer { position:relative; background:#060606 url('../../img/bg-footer.png') center/cover no-repeat; color:white; overflow:hidden; }
.footer::before { content:""; position:absolute; inset:40px 0 64px; background:rgba(0,0,0,.48); pointer-events:none; }
.footer-cta {
  position:relative;
  z-index:1;
  cursor:pointer;
  height:64px;
  min-height:64px;
  display:block;
  padding:0 18px;
  background:var(--orange);
  color:white;
  text-align:center;
  font-family:Barlow,sans-serif;
  font-size:18px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  transition:background .2s ease, filter .2s ease;
}
.footer-cta:hover {
  background:#f58200;
  filter:saturate(1.04);
}
.footer-cta span {
  position:absolute;
  left:50%;
  top:50%;
  display:inline-block;
  width:min(100% - 36px, 900px);
  line-height:1.05;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  transform:translate(-50%, -50%);
}
.service-page .footer-cta span { margin-top:-6px; }
.footer-grid { position:relative; z-index:1; display:grid; grid-template-columns:1.1fr 1.15fr 1.1fr 1.45fr; gap:58px; padding:78px 0 86px; align-items:start; }
.footer h3 { margin-bottom:20px; color:white; font-size:25px; }
.footer p { margin-bottom:12px; color:white; font-size:14px; font-weight:700; line-height:1.7; }
.footer-about img { width:150px; margin-bottom:18px; }
.footer-about b { color:var(--orange); }
.brochure-btn { display:inline-flex; align-items:center; gap:8px; min-height:40px; margin-top:6px; padding:11px 18px; border-radius:4px; background:var(--orange); color:white; font-family:Barlow,sans-serif; font-weight:900; }
.brochure-btn::before { content:"\25A3"; font-size:13px; }
.footer-contact p { position:relative; padding-left:28px; }
.footer-contact p::before { content:""; position:absolute; left:0; top:4px; width:15px; height:15px; border-radius:2px; background:var(--orange); }
.social-row { display:flex; gap:8px; margin-top:18px; }
.social-row a { display:grid; place-items:center; width:34px; height:34px; border-radius:4px; color:white; font-family:Inter,Arial,sans-serif; font-weight:900; font-size:16px; transition:transform .22s var(--ease), filter .22s ease; }
.social-row a:hover { transform:translateY(-3px); filter:saturate(1.08); }
.social-row a:nth-child(1){ background:#20c66b; }
.social-row a:nth-child(2){ background:#ef4b3f; }
.social-row a:nth-child(3){ background:#3b5998; }
.social-row a:nth-child(4){ background:#0a79b8; }
.social-row a:nth-child(1),
.social-row a:nth-child(2) { font-size:18px; }
.footer-facebook img { width:260px; max-width:100%; }
.copyright { position:relative; z-index:1; text-align:center; padding:22px; background:linear-gradient(90deg,#0a0a0a,#5b5b5b,#0a0a0a); color:white; font-size:13px; font-weight:700; }
.copyright a { color:white; font-weight:900; transition:color .2s ease; }
.copyright a:hover { color:var(--orange); }
.floating-actions {
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:60;
  display:grid;
  gap:8px;
}
.floating-actions a {
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  border-radius:50%;
  box-shadow:0 8px 18px rgba(0,0,0,.22);
  transition:transform .22s var(--ease), box-shadow .22s var(--ease), filter .22s ease;
}
.float-call { background:#fed008; }
.float-wa { background:#2db742; }
.float-call img {
  width:72%;
  height:72%;
}
.float-wa img {
  width:76%;
  height:76%;
  transform:none;
}
.floating-actions a:hover {
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
  filter:saturate(1.08);
}
.floating-actions img {
  display:block;
  object-fit:contain;
}
.reveal { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); transition-delay:var(--delay,0ms); }
.reveal.visible { opacity:1; transform:none; }

.page-hero { min-height:340px; display:grid; align-items:center; color:white; background-position:center; background-size:cover; }
.page-hero h1 { margin:0; }
.content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.content-card { padding:30px; background:white; border-top:5px solid var(--orange); box-shadow:0 16px 36px rgba(0,0,0,.1); border-radius:var(--radius); transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; }
.content-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-top-color:var(--blue); }
.content-card p,.content-card li { color:var(--muted); line-height:1.75; }
.content-card ul { padding-left:18px; }
.content-card .small-btn { background:var(--orange); color:white; }
.content-card .small-btn:hover { background:var(--blue); color:white; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.gallery-grid img { height:280px; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow-sm); transition:transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease); }
.gallery-grid img:hover { transform:translateY(-8px) scale(1.02); box-shadow:var(--shadow-lg); filter:saturate(1.12) contrast(1.03); }
.contact-page { display:grid; grid-template-columns:.85fr 1.15fr; gap:40px; }
.contact-box { background:linear-gradient(135deg,var(--blue),var(--blue-dark)); color:white; padding:36px; border-radius:var(--radius); box-shadow:var(--shadow-md); position:relative; overflow:hidden; }
.contact-box::after { content:""; position:absolute; right:-60px; bottom:-60px; width:180px; height:180px; border:28px solid rgba(255,255,255,.07); border-radius:50%; }
.contact-box p { line-height:1.9; }

.service-detail-hero {
  position:relative;
  min-height:560px;
  overflow:hidden;
  color:white;
  background:#061421;
}
.service-detail-hero .slide {
  position:absolute;
  inset:0;
  opacity:0;
  background-position:center;
  background-size:cover;
  transform:scale(1.02);
  transition:opacity .75s ease, transform 5.8s linear;
}
.service-detail-hero .slide.is-active {
  opacity:1;
  transform:scale(1.055);
}
.service-detail-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(3,12,22,.88) 0%, rgba(3,12,22,.62) 48%, rgba(3,12,22,.24) 100%),
    linear-gradient(180deg, transparent 62%, rgba(6,20,33,.92) 100%);
  pointer-events:none;
}
.service-detail-hero .wrap {
  position:relative;
  z-index:2;
  min-height:560px;
  display:grid;
  align-items:center;
}
.service-hero-copy {
  width:min(650px,100%);
  padding:72px 0;
}
.service-hero-copy h1 {
  max-width:720px;
  margin-bottom:20px;
}
.service-hero-copy p {
  max-width:620px;
  color:#eef4f9;
  font-size:18px;
  line-height:1.75;
  font-weight:600;
}
.service-summary {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:28px 0 30px;
}
.service-summary span {
  padding:9px 13px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:4px;
  color:white;
  font-size:13px;
  font-weight:800;
}
.service-detail {
  background:#f3f6f9;
  padding:92px 0;
}
.service-detail-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.86fr);
  gap:58px;
  align-items:center;
}
.service-detail-copy h2 {
  color:#07192d;
}
.service-detail-copy p {
  color:#4d5964;
  line-height:1.82;
  font-weight:600;
}
.service-checks {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:28px 0;
}
.service-checks span {
  position:relative;
  padding:14px 14px 14px 42px;
  background:white;
  border-left:4px solid var(--orange);
  border-radius:6px;
  box-shadow:0 12px 28px rgba(7,25,45,.08);
  color:#1b2d3e;
  font-weight:800;
}
.service-checks span::before {
  content:"";
  position:absolute;
  left:16px;
  top:18px;
  width:12px;
  height:12px;
  background:var(--blue);
  border-radius:2px;
}
.service-detail-photo {
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:8px;
  box-shadow:0 28px 70px rgba(7,25,45,.22);
}
.service-detail-photo::before {
  content:"";
  position:absolute;
  inset:14px;
  z-index:1;
  border:1px solid rgba(255,255,255,.42);
  border-radius:6px;
  pointer-events:none;
}
.service-detail-photo img {
  width:100%;
  height:470px;
  object-fit:cover;
}
.service-process {
  padding:86px 0;
  background:white;
}
.service-process-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:36px;
}
.service-process-grid article {
  padding:28px;
  border-top:5px solid var(--orange);
  background:#f7f9fb;
  border-radius:8px;
  box-shadow:0 16px 38px rgba(7,25,45,.08);
}
.service-process-grid b {
  display:block;
  margin-bottom:18px;
  color:var(--blue);
  font-family:Barlow,sans-serif;
  font-size:38px;
  line-height:1;
}
.service-process-grid h3 {
  font-size:24px;
}
.service-process-grid p {
  color:#58636d;
  line-height:1.7;
}

.blog-detail-hero {
  position:relative;
  min-height:560px;
  background:#061421;
  color:white;
  overflow:hidden;
}
.blog-detail-hero .slide {
  position:absolute;
  inset:0;
  opacity:0;
  background-position:center;
  background-size:cover;
  transform:scale(1.02);
  transition:opacity .75s ease, transform 5.8s linear;
}
.blog-detail-hero .slide.is-active {
  opacity:1;
  transform:scale(1.055);
}
.blog-detail-hero:not([data-slider]) .slide.is-active {
  transform:scale(1.02);
}
.blog-detail-hero::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(3,12,22,.9) 0%, rgba(3,12,22,.72) 46%, rgba(3,12,22,.22) 100%),
    linear-gradient(180deg, transparent 58%, rgba(6,20,33,.92) 100%);
  pointer-events:none;
}
.blog-hero-grid {
  position:relative;
  z-index:2;
  min-height:560px;
  display:grid;
  grid-template-columns:minmax(0,720px);
  gap:0;
  align-items:center;
}
.blog-hero-copy {
  padding:72px 0;
}
.blog-meta {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 24px;
}
.blog-meta span {
  padding:8px 12px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  border-radius:4px;
  font-weight:800;
  font-size:13px;
}
.blog-hero-copy p {
  max-width:620px;
  color:#eaf1f7;
  line-height:1.78;
  font-weight:600;
  font-size:18px;
}
.blog-detail-hero .slider-dots {
  z-index:3;
  bottom:34px;
}
.blog-detail-hero .slider-dots button {
  width:34px;
  height:5px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.42);
}
.blog-detail-hero .slider-dots button.active {
  width:54px;
  background:var(--orange);
}
.blog-hero-copy::after {
  content:"";
  position:absolute;
  right:-90px;
  top:50%;
  width:230px;
  height:230px;
  border:34px solid rgba(255,255,255,.055);
  border-radius:50%;
  transform:translateY(-50%);
  pointer-events:none;
}
.blog-article {
  padding:88px 0;
  background:#f3f6f9;
}
.blog-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:46px;
  align-items:start;
}
.blog-content {
  padding:44px;
  background:white;
  border-radius:8px;
  box-shadow:0 20px 55px rgba(7,25,45,.1);
}
.blog-content h2 {
  margin-top:34px;
  color:#07192d;
  font-size:clamp(30px,3vw,42px);
}
.blog-content h2:first-child { margin-top:0; }
.blog-content p,
.blog-content li {
  color:#4f5d68;
  line-height:1.86;
  font-weight:600;
}
.blog-content ul {
  padding-left:20px;
}
.blog-callout {
  margin:34px 0;
  padding:24px;
  background:linear-gradient(135deg,#07192d,#0a3158);
  color:white;
  border-left:6px solid var(--orange);
  border-radius:8px;
}
.blog-callout p {
  margin:0;
  color:white;
}
.blog-sidebar {
  position:sticky;
  top:118px;
  display:grid;
  gap:18px;
}
.blog-side-card {
  padding:26px;
  background:white;
  border-radius:8px;
  box-shadow:0 18px 42px rgba(7,25,45,.09);
}
.blog-side-card h3 {
  color:#07192d;
  font-size:24px;
}
.blog-side-card p {
  color:#5a6670;
  line-height:1.7;
  font-weight:600;
}
.blog-side-list {
  display:grid;
  gap:10px;
}
.blog-side-list a {
  padding:13px 14px;
  background:#eef3f7;
  border-left:4px solid var(--orange);
  border-radius:4px;
  color:#1b2d3e;
  font-weight:900;
  transition:background .2s ease, color .2s ease, transform .22s var(--ease);
}
.blog-side-list a:hover {
  background:var(--blue);
  color:white;
  transform:translateX(3px);
}

@media (max-width: 960px) {
  .topbar-inner { min-height:38px; grid-template-columns:1fr; text-align:center; font-size:14px; }
  .topbar-item { display:none; }
  .nav-shell { min-height:74px; padding:8px 18px; }
  .brand img { width:118px; }
  .menu-btn { display:block; }
  .main-nav {
    position:absolute;
    left:50%;
    top:calc(100% + 10px);
    z-index:80;
    display:none;
    width:min(360px, calc(100vw - 28px));
    max-height:calc(100vh - 116px);
    overflow:auto;
    background:white;
    padding:14px;
    border-top:4px solid var(--orange);
    border-radius:0 0 8px 8px;
    box-shadow:0 18px 42px rgba(7,25,45,.18);
    transform:translateX(-50%);
  }
  .main-nav.open { display:grid; gap:2px; }
  .nav-item { display:grid; align-items:stretch; }
  .main-nav a { padding:14px; }
  .main-nav a.active::after,
  .main-nav a:hover::after { left:14px; right:auto; bottom:8px; width:42px; box-shadow:none; }
  .nav-has-dropdown > a { padding-right:34px; }
  .nav-has-dropdown > a::before { right:16px; }
  .nav-has-dropdown:hover > a::before { transform:translateY(-65%) rotate(45deg); }
  .nav-has-dropdown.open > a::before { transform:translateY(-35%) rotate(225deg); }
  .nav-dropdown {
    position:relative;
    left:auto;
    top:auto;
    width:100%;
    max-height:0;
    padding:0 0 0 12px;
    border-top:0;
    border-left:4px solid var(--orange);
    border-radius:0;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    overflow:hidden;
    transform:none;
    transition:max-height .28s var(--ease), padding .28s var(--ease);
  }
  .nav-dropdown::before { content:none; }
  .nav-has-dropdown:hover .nav-dropdown {
    max-height:0;
    padding:0 0 0 12px;
    transform:none;
  }
  .nav-has-dropdown.open .nav-dropdown {
    max-height:260px;
    padding:8px 0 10px 12px;
    transform:none;
  }
  .main-nav .nav-dropdown a {
    grid-template-columns:34px minmax(0,1fr);
    padding:11px 12px;
  }
  .nav-dropdown span { width:30px; height:30px; }
  .nav-cta { display:none; }
  .strip-grid,.two-col,.process-grid,.cards-3,.contact-slab-grid,.footer-grid,.content-grid,.gallery-grid,.contact-page,.service-detail-grid,.service-process-grid,.blog-hero-grid,.blog-layout { grid-template-columns:1fr; }
  .info-strip { margin-top:0; }
  .services-home { padding-top:64px; }
  .service-title { grid-template-columns:1fr; gap:18px; }
  .service-title h2 { font-size:70px; }
  .service-intro { padding:22px 24px; }
  .service-showcase { grid-template-columns:1fr; }
  .service-copy { padding:26px; }
  .service-media img { height:280px; }
  .service-detail-hero,
  .service-detail-hero .wrap { min-height:520px; }
  .service-detail { padding:70px 0; }
  .service-detail-photo img { height:360px; }
  .blog-detail-hero,
  .blog-hero-grid { min-height:520px; }
  .blog-sidebar { position:relative; top:auto; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 390px); }
  .topbar { border-top-width:3px; }
  .topbar-inner { font-size:13px; line-height:1.15; padding:6px 18px; }
  .nav-shell { min-height:66px; padding:7px 14px; }
  .brand img { width:102px; }
  .menu-btn { width:42px; height:42px; }
  .main-nav { top:calc(100% + 8px); left:50%; right:auto; }
  .hero,.hero-grid { min-height:560px; }
  h1 { font-size:46px; }
  h2 { font-size:36px; }
  .services-home { padding:52px 0; }
  .services-home::after { height:410px; }
  .service-title h2 { font-size:50px; }
  .service-title p { font-size:15px; }
  .service-title h2::after { width:72px; height:6px; margin-top:14px; box-shadow:30px 0 0 rgba(0,74,144,.22); }
  .service-intro { padding:20px; }
  .service-copy { padding:22px; }
  .service-copy h3 { font-size:26px; }
  .service-points span { font-size:12px; }
  .service-media img { height:225px; }
  .service-detail-hero,
  .service-detail-hero .wrap { min-height:560px; }
  .service-hero-copy { padding:54px 0; }
  .service-hero-copy h1 {
    max-width:100%;
    overflow-wrap:anywhere;
  }
  .mobile-break-word {
    display:block;
    overflow-wrap:anywhere;
    word-break:break-word;
    hyphens:auto;
  }
  .service-hero-copy p { font-size:16px; }
  .service-checks { grid-template-columns:1fr; }
  .service-detail-photo img { height:280px; }
  .blog-article { padding:58px 0; }
  .blog-content { padding:28px 22px; }
  .blog-detail-hero,
  .blog-hero-grid { min-height:560px; }
  .blog-hero-copy p { font-size:16px; }
  .footer-cta {
    height:68px;
    min-height:68px;
    padding:13px 18px;
  }
  .footer-cta span {
    width:calc(100% - 36px);
    white-space:normal;
    line-height:1.15;
  }
  .strip-grid > div { border-right:0; border-bottom:1px solid #ddd; }
  .photo-stack { padding-left:0; }
  .photo-stack img:first-child { width:100%; height:330px; }
  .photo-stack img:last-child { width:190px; height:140px; }
  .feature-grid,.metrics,.mini-form { grid-template-columns:1fr; }
  .metrics div { justify-content:flex-start; }
  .contact-slab img { height:260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .hero-home .slide,
  .hero-home .slide.is-active {
    transform:none;
  }
}
