/* ============ DEVRIAN LOGISTICS — Landing Page ============ */

:root{
  --navy: #0a1a35;
  --navy-deep: #071228;
  --blue: #1e56e8;
  --blue-light: #4f8bff;
  --sky: #eaf1ff;
  --gray-50: #f6f8fb;
  --gray-100: #eef1f6;
  --gray-300: #cfd7e3;
  --gray-500: #6b7688;
  --ink: #101828;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(10, 26, 53, .10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 53, .18);
  --ff-head: 'Sora', 'Manrope', sans-serif;
  --ff-body: 'Manrope', sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--ff-head); margin:0; color: var(--navy); line-height:1.15; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
.ic{ width:18px; height:18px; fill: currentColor; flex-shrink:0; }

.container{
  width:100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 44px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--ff-body);
  font-weight:700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary{ background: var(--blue); color:#fff; box-shadow: 0 8px 20px rgba(30,86,232,.35); }
.btn--primary:hover{ background:#1747c4; transform: translateY(-1px); }
.btn--outline{ background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover{ background: rgba(255,255,255,.12); }
.btn--whatsapp{ background:#25D366; color:#06341c; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn--whatsapp:hover{ background:#20bd5a; transform: translateY(-1px); }
.btn--lg{ padding:15px 28px; font-size:15.5px; }
.btn--block{ width:100%; }

/* ---------- Topbar ---------- */
.topbar{ background: var(--navy-deep); color: #c9d6ef; font-size:13px; }
.topbar__inner{ display:flex; align-items:center; justify-content:space-between; height:38px; }
.topbar__contact{ display:flex; align-items:center; gap:22px; }
.topbar__contact a{ display:flex; align-items:center; gap:6px; color:#c9d6ef; opacity:.9; }
.topbar__contact a:hover{ opacity:1; color:#fff; }
.topbar__contact .ic{ width:13px; height:13px; }
.topbar__tag{ letter-spacing:.14em; font-weight:700; font-size:11px; color:#5f7bc4; }

/* ---------- Header ---------- */
.header{
  position: sticky; top:0; z-index:100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--gray-100);
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; height:76px; gap:18px; }
.brand{ display:flex; align-items:center; }
.brand__logo{ height:60px; width:auto; }
.nav{ display:flex; align-items:center; gap:26px; }
.nav a{ font-size:14.5px; font-weight:600; color: var(--navy); opacity:.75; }
.nav a:hover{ opacity:1; color: var(--blue); }
.nav a.active{ opacity:1; color: var(--blue); }
.header__cta{ display:flex; align-items:center; gap:10px; }
.burger{ display:none; }

/* ---------- Hero ---------- */
.hero{
    position:relative;
    min-height: 88.1vh;
    overflow:hidden;
}


.hero__bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background-image:url('assets/hero-road.png');
    background-size:cover;
    background-position:center;
    z-index:-2;
    transform: scale(1.08);
    will-change: transform;
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(7,18,40,.94) 15%, rgba(7,18,40,.72) 45%, rgba(10,26,53,.35) 75%),
    linear-gradient(0deg, rgba(7,18,40,.55), rgba(7,18,40,.1) 45%);
}
.hero__content{ position:relative; z-index:2; padding: 200px 24px 70px; color:#fff; }
.eyebrow{
  display:inline-block; font-size:12.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:#9fb8f2; margin-bottom:16px;
}


.hero-title{
    display:flex;          
    flex-direction:column;
    gap:8px;
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight:800;
    line-height:1.1;
}

#typing{
    color:#fff;
    display:inline-block;
    white-space:nowrap;
    overflow:hidden;
    min-height:1.2em;
    animation:blink .8s infinite;
}

#second-line{
    color:#4f8bff;
    opacity:0;
    transform:translateY(20px);
    transition:opacity .6s ease, transform .6s ease;
}

#second-line.show{
    opacity:1;
    transform:translateY(0);
    animation: glow .8s ease;
    animation-delay: .6s;    
    animation-fill-mode: backwards;
}
#second-line.hide,
#typing.hide{
    opacity:0 !important;
    transform:translateY(-12px) !important;
}

@keyframes glow{
    0%{
        text-shadow:none;
    }
    50%{
        text-shadow:
            0 0 12px rgba(79,139,255,.9),
            0 0 30px rgba(79,139,255,.5);
    }
    100%{
        text-shadow:none;
    }
}

.eyebrow--dark{ color: var(--blue); }
.hero h1{ font-size: clamp(34px, 5.2vw, 58px); color:#fff; max-width:820px; font-weight:800; }
.hero h1 span{ color: var(--blue-light); }
.hero__lead{ margin-top:20px; font-size:17.5px; line-height:1.6; max-width:600px; color:#dbe4f7; }
.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:34px; }
.hero__stats{
  display:grid; grid-template-columns: repeat(4,1fr); gap:18px;
  margin-top:56px; max-width: 720px;
  border-top:1px solid rgba(255,255,255,.18); padding-top:26px;
}
.hero__stats strong{ display:block; font-family: var(--ff-head); font-size:22px; color:#fff; }
.hero__stats span{ display:block; font-size:12.5px; color:#a9bce0; margin-top:4px; }

/* ---------- Page banner (subpage hero) ---------- */
.page-banner{ position:relative; min-height: 850px; display:flex; align-items:center; overflow:hidden; }
.page-banner__bg{ position:absolute; inset:0; background-size:cover; background-position: center 100%;; transform: scale(1.04); will-change: transform; }
.page-banner__overlay{
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(7,18,40,.94) 25%, rgba(10,26,53,.6) 100%);
}
.page-banner__content{ position:relative; z-index:2; padding: 64px 24px; color:#fff; }
.page-banner .eyebrow{ color:#9fb8f2; }
.page-banner .eyebrow span{ color:#5f7bc4; margin:0 2px; }
.page-banner h1{ font-size: clamp(28px, 4vw, 44px); color:#fff; font-weight:800; margin-top:10px; }
.page-banner__lead{ margin-top:14px; max-width:400px; color:#dbe4f7; font-size:15.5px; line-height:1.65; }

/* ---------- Section head ---------- */
.section-head{ max-width: 1000px; margin-bottom: 46px; }
.section-head h2{ font-size: clamp(26px, 3.4vw, 38px); margin-top:10px; font-weight:800; }
.section-head--light .eyebrow{ color:#9fb8f2; }
.section-head--light h2{ color:#fff; }
.section-head__desc{ margin-top:16px; color:#b9c6e6; font-size:15.5px; line-height:1.7; }

/* ---------- Trust / Mission-Vision ---------- */
.trust{ padding: 100px 0 100px; background: var(--gray-50); }
.trust__grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; margin-bottom:56px; }
.trust__card{
  background:#fff; border-radius: var(--radius); padding:30px 26px;
  box-shadow: var(--shadow); border:1px solid var(--gray-100);
}
.trust__icon{
  width:50px; height:50px; border-radius:12px; background: var(--sky);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.trust__icon svg{ width:24px; height:24px; fill:none; stroke: var(--blue); stroke-width:1.7; }
.trust__card h3{ font-size:18px; margin-bottom:8px; }
.trust__card p{ font-size:14.5px; color: var(--gray-500); line-height:1.6; }

.mv{ display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
.mv__card{
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 34px;
    border: 1px solid #e2e8f0;
}
.mv__card--dark{ background: var(--navy); border-color: var(--navy); }
.mv__card--dark h3, .mv__card--dark p{ color:#fff; }
.mv__card--dark p{ color:#b9c6e6; }
.mv__icon{
  width:46px; height:46px; border-radius:50%; background: var(--sky);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.mv__card--dark .mv__icon{ background: rgba(255,255,255,.1); }
.mv__icon svg{ width:22px; height:22px; fill: var(--blue); }
.mv__card--dark .mv__icon svg{ fill: var(--blue-light); }
.mv__card h3{ font-size:19px; margin-bottom:10px; }
.mv__card p{ font-size:14.5px; line-height:1.7; color: var(--gray-500); }

/* ---------- Services ---------- */
.services{
  padding: 100px 0;
}

.services__layout{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.services__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-card{
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform .18s ease,
              box-shadow .18s ease,
              background .18s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: #fff;
}

.service-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg{
  width: 21px;
  height: 21px;
  fill: #fff;
}

.service-card h3{
  font-size: 16.5px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card p{
  font-size: 13.8px;
  color: var(--gray-500);
  line-height: 1.6;
}

.services__photo{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 500px;
}

.services__photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services__cta{
  text-align: center;
  margin-top: 48px;
}

/* ---------- Fleet / Unidad ---------- */
.fleet{ background: var(--navy); color:#fff; padding: 100px 0 0; overflow:hidden; }
.fleet__inner{ display:grid; grid-template-columns: 1fr 1.05fr; gap:56px; align-items:center; padding-bottom:70px; }
.fleet__photo{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-lg); }
.fleet__content h2{ color:#fff; font-size: clamp(28px,3.6vw,40px); margin-top:8px; }
.fleet__lead{ margin-top:18px; color:#b9c6e6; font-size:15.5px; line-height:1.7; }
.fleet__specs{ display:flex; gap:32px; margin-top:32px; padding:24px 0; border-top:1px solid rgba(255,255,255,.15); border-bottom:1px solid rgba(255,255,255,.15); }
.fleet__specs strong{ display:block; font-family: var(--ff-head); font-size:24px; color: var(--blue-light); }
.fleet__specs span{ display:block; font-size:12.5px; color:#a9bce0; margin-top:4px; }
.fleet__features{ margin-top:28px; display:flex; flex-direction:column; gap:14px; }
.fleet__features li{ font-size:14.5px; color:#dbe4f7; line-height:1.6; padding-left:24px; position:relative; }
.fleet__features li::before{ content:"›"; position:absolute; left:0; color: var(--blue-light); font-weight:800; font-size:18px; line-height:1.2; }
.fleet__strip{ width:100%; }
.fleet__strip img{ width:100%; height:auto; display:block; }

/* ---------- Technology ---------- */
.tech{ padding: 100px 0; background: var(--navy-deep); color:#fff; }
.tech__grid{ display:grid; grid-template-columns: repeat(5, 1fr); gap:16px; margin-bottom:56px; }
.tech__card{ background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding:24px 18px; }
.tech__num{ font-family: var(--ff-head); font-size:13px; color: var(--blue-light); font-weight:700; }
.tech__card h3{ color:#fff; font-size:15px; margin: 12px 0 8px; line-height:1.35; }
.tech__card p{ font-size:13px; color:#a9bce0; line-height:1.6; }
.tech__platform{
  background: linear-gradient(120deg, rgba(30,86,232,.18), rgba(30,86,232,.02));
  border:1px solid rgba(79,139,255,.25); border-radius: var(--radius);
  padding: 30px 34px;
}
.tech__platform h3{ color:#fff; font-size:17px; margin-bottom:18px; }
.tech__checks{ display:flex; flex-wrap:wrap; gap:14px 28px; }
.tech__checks span{ font-size:13.8px; color:#dbe4f7; }

/* ---------- Security ---------- */
.security{ padding: 100px 0; background: var(--gray-50); }
.security__inner{
  display:grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap:56px;
  align-items:center;
}

.security__content h2{ font-size: clamp(26px,3.4vw,36px); margin-top:10px; }
.security__list{ margin-top:32px; display:flex; flex-direction:column; gap:22px; }
.security__item{ padding-left:22px; border-left:3px solid var(--blue); }
.security__item h3{ font-size:16.5px; margin-bottom:6px; }
.security__item p{ font-size:14px; color: var(--gray-500); line-height:1.6; }
.security__badge{
  margin-top:34px; background: var(--navy); color:#fff; padding:16px 22px; border-radius: 12px;
  font-size:14.5px; display:inline-block;
}
.security__badge strong{ color: var(--blue-light); }
.security__photo{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-lg);}

/* ---------- Coverage ---------- */
.coverage{ padding: 100px 0; }
.coverage__grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:22px; }
.coverage__card{
  background: var(--gray-50); border:1px solid var(--gray-100); border-radius: var(--radius);
  padding:30px 28px;
}
.coverage__card--main{ background: var(--navy); border-color: var(--navy); color:#fff; grid-column: 1 / -1; }
.coverage__card--main h3{ color:#fff; }
.coverage__route{ font-size:20px; font-weight:700; margin-top:8px; color: var(--blue-light); }
.coverage__route span{ color:#fff; margin:0 8px; }
.coverage__stats{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; margin-top:26px; padding-top:26px; border-top:1px solid rgba(255,255,255,.15); }
.coverage__stats strong{ display:block; font-family: var(--ff-head); font-size:20px; color:#fff; }
.coverage__stats span{ display:block; font-size:12.5px; color:#a9bce0; margin-top:4px; }
.coverage__card h3{ font-size:17px; margin-bottom:10px; }
.coverage__card p{ font-size:14.5px; color: var(--gray-500); line-height:1.65; }
.coverage__mini{ margin-top:12px; color: var(--navy) !important; font-weight:700; }
.coverage__badges{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin-top:40px; }
.coverage__badges span{ background: var(--sky); color: var(--navy); font-size:13.5px; font-weight:700; padding:10px 18px; border-radius:999px; }

/* ---------- Contact ---------- */
.contact{ padding: 100px 0; background: var(--gray-50); }
.contact__inner{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:start; }
.contact h2{ font-size: clamp(26px,3.4vw,36px); margin-top:10px; }
.contact__lead{ margin-top:16px; color: var(--gray-500); font-size:15.5px; line-height:1.7; }
.contact__items{ margin-top:32px; display:flex; flex-direction:column; gap:14px; }
.contact__item{
  display:flex; align-items:center; gap:16px; background:#fff; border:1px solid var(--gray-100);
  border-radius:12px; padding:16px 18px; transition: box-shadow .15s ease, transform .15s ease;
}
.contact__item:not(.contact__item--static):hover{ box-shadow: var(--shadow); transform: translateY(-2px); }
.contact__item .ic{ width:22px; height:22px; fill: var(--blue); flex-shrink:0; }
.contact__item strong{ display:block; font-size:14.5px; }
.contact__item span{ display:block; font-size:12.8px; color: var(--gray-500); margin-top:2px; }

.contact__form-card{
  background:#fff; border-radius: var(--radius); padding:34px; box-shadow: var(--shadow-lg);
  border:1px solid var(--gray-100);
}
.contact__form-card h3{ font-size:19px; }
.contact__form-card > p{ margin-top:8px; color: var(--gray-500); font-size:14px; line-height:1.6; }
.contact__form{ margin-top:24px; display:flex; flex-direction:column; gap:16px; }
.contact__form label{ font-size:13px; font-weight:700; color: var(--navy); display:flex; flex-direction:column; gap:7px; }
.contact__form input, .contact__form textarea{
  font-family: var(--ff-body); font-size:14.5px; padding:12px 14px; border-radius:10px;
  border:1px solid var(--gray-300); background: var(--gray-50); resize:vertical;
}
.contact__form input:focus, .contact__form textarea:focus{ outline:2px solid var(--blue); outline-offset:1px; background:#fff; }

/* ---------- Footer ---------- */
.footer{ background: var(--navy-deep); color:#c9d6ef; padding-top:70px; }
.footer__inner{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:40px; padding-bottom:50px; }
.footer__logo{ height:100px; width:auto; margin-bottom:16px; filter: brightness(0) invert(1); align-items: center;}
.footer__brand p{ font-size:13.8px; line-height:1.7; color:#8ea0c9; max-width:340px; }
.footer__col h4{ color:#fff; font-size:14.5px; margin-bottom:18px; }
.footer__col{ display:flex; flex-direction:column; gap:11px; font-size:13.8px; }
.footer__col a{ color:#a9bce0; }
.footer__col a:hover{ color:#fff; }
.footer__col span{ color:#8ea0c9; line-height:1.6; }
.footer__bottom{ border-top:1px solid rgba(255,255,255,.08); padding:22px 0; }
.footer__bottom-inner{ display:flex; justify-content:space-between; font-size:12.5px; color:#7488b3; flex-wrap:wrap; gap:8px; }

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp{
  position:fixed; right:22px; bottom:22px; z-index:200;
  width:58px; height:58px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(37,211,102,.45);
  transition: transform .15s ease;
}
.fab-whatsapp:hover{ transform: scale(1.07); }
.fab-whatsapp svg{ width:28px; height:28px; fill:#fff; }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }
.reveal--left{ transform: translateX(-28px); }
.reveal--left.is-visible{ transform: translateX(0); }
.reveal--right{ transform: translateX(28px); }
.reveal--right.is-visible{ transform: translateX(0); }
.reveal--scale{ transform: scale(.94); }
.reveal--scale.is-visible{ transform: scale(1); }

/* ---------- Scroll progress bar ---------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  z-index: 999; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(79,139,255,.6);
}

/* ---------- Nav link underline animation ---------- */
.nav a{ position:relative; }
.nav a::after{
  content:""; position:absolute; left:0; bottom:-6px; width:100%; height:2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a.active::after{ transform: scaleX(1); }

/* ---------- Button interactions ---------- */
.btn{ position:relative; overflow:hidden; }
.btn span.ripple{
  position:absolute; border-radius:50%; transform: scale(0);
  background: rgba(255,255,255,.55); animation: ripple .6s ease-out forwards;
  pointer-events:none;
}
@keyframes ripple{ to{ transform: scale(2.6); opacity:0; } }
.btn--primary:active, .btn--whatsapp:active, .btn--outline:active{ transform: translateY(0) scale(.97); }

/* ---------- Card hover polish (tech feel) ---------- */
.trust__card, .mv__card, .service-card, .tech__card, .coverage__card, .contact__item, .contact__form-card{
  transition: transform .28s cubic-bezier(.16,.8,.24,1), box-shadow .28s ease, background .28s ease, border-color .28s ease;
}
.trust__card:hover, .service-card:hover, .coverage__card:not(.coverage__card--main):hover{
  border-color: rgba(30,86,232,.35);
}
.tech__card{ transition: transform .28s cubic-bezier(.16,.8,.24,1), background .28s ease, border-color .28s ease; }
.tech__card:hover{ transform: translateY(-4px); background: rgba(79,139,255,.08); border-color: rgba(79,139,255,.35); }

/* ---------- Animated counters ---------- */
.hero__stats strong, .fleet__specs strong, .coverage__stats strong{ font-variant-numeric: tabular-nums; }

/* ---------- Page transition ---------- */
body{ opacity:0; animation: page-in .5s ease forwards; }
@keyframes page-in{ from{ opacity:0; transform: translateY(6px); } to{ opacity:1; transform: translateY(0); } }
body.page-out{ animation: page-out .35s ease forwards; }
@keyframes page-out{ to{ opacity:0; transform: translateY(-6px); } }

/* ---------- Mobile nav ---------- */
.burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:30px; height:24px; background:none; border:none; padding:0; cursor:pointer; z-index:150;
}
.burger span{
  display:block; height:2px; width:100%; background: var(--navy); border-radius:2px;
  transition: transform .3s cubic-bezier(.16,.8,.24,1), opacity .2s ease;
}
.nav.open ~ .burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open ~ .burger span:nth-child(2){ opacity:0; }
.nav.open ~ .burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ================= Responsive ================= */
@media (max-width: 1080px){
  .container{ padding: 0 28px; }
  .trust__grid{ grid-template-columns: repeat(2,1fr); }
  .mv{ grid-template-columns: 1fr; }
  .services__layout{ grid-template-columns: 1fr; }
  .services__photo{ min-height: 320px; order:-1; }
  .fleet__inner{ grid-template-columns: 1fr; }
  .fleet__photo{ order:-1; }
  .tech__grid{ grid-template-columns: repeat(3,1fr); }
  .security__inner{ grid-template-columns: 1fr; gap:36px; }
  .security__photo{ order:-1; }
  .coverage__grid{ grid-template-columns: 1fr; }
  .contact__inner{ grid-template-columns: 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .hero__stats{ grid-template-columns: repeat(2,1fr); max-width:100%; }
}

@media (max-width: 860px){
  .header__cta{ display:none; }
  .burger{ display:flex; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; flex-direction:column; align-items:flex-start; gap:0;
    padding: 6px 28px 18px; border-bottom:1px solid var(--gray-100);
    box-shadow: 0 16px 30px rgba(10,26,53,.10);
    opacity:0; transform: translateY(-8px); pointer-events:none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav a{ width:100%; padding:12px 0; border-bottom:1px solid var(--gray-100); }
  .nav a:last-child{ border-bottom:none; }
  .nav.open{ opacity:1; transform: translateY(0); pointer-events:auto; }
  .topbar__tag{ display:none; }
}

@media (max-width: 720px){
  .container{ padding: 0 20px; }
  .topbar__contact a:last-child{ display:none; }
  .hero{ min-height: 92vh; }
  .hero__content{ padding: 140px 4px 56px; }
  .hero__stats{ grid-template-columns: 1fr 1fr; gap:22px; }
  .trust__grid{ grid-template-columns: 1fr; }
  .tech__grid{ grid-template-columns: repeat(2,1fr); }
  .tech__checks{ gap:10px 20px; }
  .services__grid{ grid-template-columns: 1fr; }
  .coverage__stats{ grid-template-columns: repeat(2,1fr); }
  .footer__inner{ grid-template-columns: 1fr; gap:28px; }
  .page-banner{ min-height: 460px; }
  .fab-whatsapp{ width:52px; height:52px; right:16px; bottom:16px; }
}

@media (max-width: 480px){
  .tech__grid{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: 1fr 1fr; }
  .coverage__stats{ grid-template-columns: 1fr 1fr; }
}

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