/* ==========================================================
   SEGUiSAT Web Profesional
   Landing page responsive - sin dependencias externas
   ========================================================== */

:root{
  --bg:#07111f;
  --bg2:#0b1828;
  --panel:#0f1c2e;
  --panel2:#13243a;
  --text:#f7f8fb;
  --muted:#aeb8c8;
  --line:rgba(255,255,255,.12);
  --red:#ff321f;
  --red2:#ff5a35;
  --blue:#35a8ff;
  --green:#36d27e;
  --shadow:0 24px 70px rgba(0,0,0,.35);
  --radius:24px;
  --max:1460px;
  --gutter:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}

.site-header{
  position:fixed;
  inset:0 0 auto;
  height:82px;
  z-index:1000;
  background:rgba(5,12,22,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
}
.site-header.scrolled{
  height:72px;
  background:rgba(5,12,22,.93);
  box-shadow:0 12px 36px rgba(0,0,0,.28);
}
.header-inner{
  width:min(var(--max), calc(100% - var(--gutter)));
  height:100%;
  margin:auto;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand img{
  width:205px;
  height:auto;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,.35));
}
.main-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  font-weight:650;
}
.main-nav > a{
  opacity:.9;
  position:relative;
  padding:30px 0;
  transition:.2s ease;
}
.main-nav > a:hover,
.main-nav > a.active{color:#fff}
.main-nav > a.active::after,
.main-nav > a:hover::after{
  content:"";
  position:absolute;
  left:0;
  bottom:22px;
  width:100%;
  height:2px;
  border-radius:2px;
  background:var(--red);
}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--red),var(--red2));
  font-weight:800;
  box-shadow:0 14px 30px rgba(255,50,31,.28);
}

.login-dropdown{
  position:relative;
  flex:0 0 auto;
}
.login-trigger{
  min-height:44px;
  padding:0 17px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.045);
  color:#fff;
  font-weight:850;
  cursor:pointer;
  transition:.2s ease;
}
.login-trigger:hover,
.login-trigger.active{
  border-color:rgba(255,90,53,.78);
  background:rgba(255,50,31,.12);
}
.login-panel{
  position:absolute;
  top:calc(100% + 16px);
  right:0;
  width:320px;
  padding:18px;
  border-radius:18px;
  background:rgba(6,13,24,.98);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 26px 70px rgba(0,0,0,.46);
  display:none;
  z-index:1200;
}
.login-panel.open{display:block;animation:loginDrop .18s ease both}
@keyframes loginDrop{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
.login-panel::before{
  content:"";
  position:absolute;
  right:32px;
  top:-9px;
  width:18px;height:18px;
  background:rgba(6,13,24,.98);
  border-left:1px solid rgba(255,255,255,.12);
  border-top:1px solid rgba(255,255,255,.12);
  transform:rotate(45deg);
}
.login-panel-head{
  display:flex;
  align-items:center;
  gap:11px;
  margin-bottom:15px;
}
.login-panel-head img{
  width:42px;height:42px;
  object-fit:contain;
  background:rgba(255,255,255,.06);
  border-radius:12px;
  padding:5px;
}
.login-panel-head strong{display:block;color:#fff;font-size:15px;line-height:1.2}
.login-panel-head small{display:block;color:#98a8bd;font-size:12px;margin-top:2px}
.login-panel label{
  display:grid;
  gap:7px;
  color:#d9e3f1;
  font-weight:800;
  font-size:12px;
  margin-bottom:12px;
}
.login-panel input[type="email"],
.login-panel input[type="password"],
.login-panel input[type="text"]{
  width:100%;
  min-height:42px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:11px;
  background:#0f1b2d;
  color:#fff;
  padding:0 12px;
  outline:none;
}
.login-panel input:focus{
  border-color:rgba(255,90,53,.9);
  box-shadow:0 0 0 4px rgba(255,50,31,.12);
}
.password-field{
  display:grid;
  grid-template-columns:1fr 58px;
  gap:8px;
}
.show-pass{
  border:1px solid rgba(255,255,255,.14);
  background:#15243a;
  color:#dce8f8;
  border-radius:11px;
  cursor:pointer;
  font-weight:800;
}
.remember-row{
  display:flex!important;
  grid-template-columns:none!important;
  flex-direction:row;
  align-items:center;
  gap:9px!important;
  color:#aebbd0!important;
  font-weight:700!important;
}
.remember-row input{accent-color:var(--red)}
.login-submit{
  width:100%;
  min-height:44px;
  border:0;
  border-radius:12px;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 14px 32px rgba(255,50,31,.24);
}
.login-full{
  display:block;
  text-align:center;
  color:#8fcaff;
  margin-top:12px;
  font-size:12px;
  font-weight:800;
}

.menu-toggle{
  margin-left:auto;
  display:none;
  width:44px;height:44px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:10px;
}
.menu-toggle span{
  display:block;
  height:2px;
  background:#fff;
  border-radius:2px;
  margin:6px 0;
}

/* HERO */
.hero{
  position:relative;
  min-height:840px;
  padding:128px 0 66px;
  overflow:hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(53,168,255,.22), transparent 32%),
    radial-gradient(circle at 25% 60%, rgba(255,50,31,.14), transparent 32%),
    linear-gradient(145deg, #050b14 0%, #081421 45%, #0c1525 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom, black, transparent 85%);
  opacity:.28;
}
.hero-bg{
  position:absolute;
  inset:0;
  opacity:.26;
  background:
    linear-gradient(90deg, rgba(5,11,20,.98) 0%, rgba(5,11,20,.9) 43%, rgba(5,11,20,.45) 100%),
    url("../../assets/img/slide/N1.jpg") center right/cover no-repeat;
  transform:scale(1.04);
}
.hero-grid{
  position:relative;
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:auto;
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  gap:36px;
  align-items:center;
}
.eyebrow,
.section-title span{
  color:var(--red2);
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}
.hero h1{
  margin:18px 0 18px;
  font-size:clamp(43px, 6.2vw, 76px);
  line-height:.98;
  letter-spacing:-.055em;
  text-wrap:balance;
}
.hero h1 strong{
  display:block;
  color:var(--red);
  font-style:normal;
}
.hero p{
  max-width:565px;
  color:#d7dfeb;
  font-size:18px;
  margin:0 0 30px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:850;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn svg{width:20px;height:20px;fill:currentColor}
.btn-primary{
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  box-shadow:0 18px 38px rgba(255,50,31,.28);
}
.btn-ghost{
  border-color:rgba(255,90,53,.78);
  background:rgba(5,12,22,.38);
  color:#fff;
}
.btn-outline-red{
  border-color:rgba(255,50,31,.85);
  color:#ff674c;
  background:rgba(255,50,31,.05);
}
.trust-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  max-width:650px;
}
.trust-points div{
  display:flex;
  align-items:center;
  gap:11px;
  color:#e9eef8;
}
.trust-points b{display:block;font-size:13px}
.trust-points small{display:block;color:var(--muted);font-size:12px}
.mini-icon{
  width:35px;height:35px;
  border:2px solid rgba(53,168,255,.9);
  border-radius:10px;
  position:relative;
  flex:0 0 35px;
}
.mini-icon.shield{border-radius:12px 12px 16px 16px}
.mini-icon.shield::after{
  content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#87d2ff;font-weight:900
}
.mini-icon.cloud{
  border:0;
}
.mini-icon.cloud::before{
  content:"☁";position:absolute;inset:-7px 0 0;display:grid;place-items:center;color:#56b9ff;font-size:34px
}
.mini-icon.phone::before{
  content:"";position:absolute;inset:5px 9px;border:2px solid #56b9ff;border-radius:4px;
}

/* Hero visual */
.hero-visual{
  min-height:575px;
  position:relative;
}
.map-network{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 16%, rgba(53,168,255,.35), transparent 4%),
    radial-gradient(circle at 84% 28%, rgba(53,168,255,.24), transparent 8%),
    radial-gradient(circle at 44% 22%, rgba(255,255,255,.10), transparent 10%);
}
.node{
  position:absolute;
  width:66px;height:66px;
  border:1px solid rgba(53,168,255,.38);
  border-radius:50%;
  box-shadow:0 0 36px rgba(53,168,255,.18);
}
.node::before{
  content:"";
  position:absolute;inset:18px;
  border-radius:50%;
  background:rgba(53,168,255,.18);
  border:1px solid rgba(53,168,255,.55);
}
.n1{left:33%;top:23%}.n2{right:12%;top:15%}.n3{right:22%;top:43%}
.line{
  position:absolute;
  height:1px;
  width:250px;
  border-top:2px dashed rgba(53,168,255,.26);
  transform-origin:left center;
}
.l1{left:38%;top:29%;transform:rotate(-18deg)}
.l2{left:48%;top:31%;transform:rotate(24deg);width:300px}
.l3{right:18%;top:25%;transform:rotate(78deg);width:190px}
.satellite-card{
  position:absolute;
  left:34%;
  top:4%;
  width:185px;
  height:118px;
  transform:rotate(-18deg);
  opacity:.95;
  filter:drop-shadow(0 16px 26px rgba(0,0,0,.45));
}
.sat-body{
  position:absolute;
  left:72px;top:44px;
  width:38px;height:34px;
  border-radius:10px;
  background:linear-gradient(135deg,#e4edf9,#768ea8);
  border:2px solid rgba(255,255,255,.35);
}
.sat-panel{
  position:absolute;
  top:34px;
  width:76px;height:46px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),
    linear-gradient(135deg,#123a73,#1d69bd);
  background-size:19px 100%,100% 15px,auto;
  border:1px solid rgba(143,196,255,.6);
}
.sat-panel.left{left:0}.sat-panel.right{right:0}
.sat-wave{
  position:absolute;left:82px;top:82px;
  width:50px;height:50px;
  border-bottom:3px solid rgba(53,168,255,.8);
  border-radius:50%;
  transform:rotate(18deg);
}
.truck-card{
  position:absolute;
  right:0;
  top:122px;
  width:86%;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 36px 90px rgba(0,0,0,.42);
  mask-image:linear-gradient(to left, black 75%, transparent);
}
.truck-card::after{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(7,17,31,.1),rgba(7,17,31,.38)),
    radial-gradient(circle at 60% 50%, rgba(255,50,31,.24), transparent 34%);
}
.truck-card img{
  width:100%;
  height:410px;
  object-fit:cover;
  object-position:center;
  transform:scale(1.09);
}
.device-stack{
  position:absolute;
  right:18px;
  bottom:5px;
  width:560px;
  height:230px;
  z-index:5;
}
.laptop{
  position:absolute;
  left:0;bottom:0;
  width:460px;
}
.screen{
  height:252px;
  padding:13px;
  display:grid;
  grid-template-columns:92px 1fr;
  gap:12px;
  border:8px solid #0a0f17;
  border-radius:18px 18px 10px 10px;
  background:#0c182a;
  box-shadow:0 20px 50px rgba(0,0,0,.55);
}
.base{
  display:block;
  height:12px;
  margin:0 -30px;
  border-radius:0 0 30px 30px;
  background:linear-gradient(90deg,#1a2638,#758094,#1b2639);
}
.dash-sidebar{
  background:#0b1220;border-radius:10px;padding:11px;
  border:1px solid rgba(255,255,255,.06)
}
.dash-sidebar b{font-size:12px;color:#fff;display:block;margin-bottom:16px}
.dash-sidebar span{height:8px;border-radius:9px;background:#1c314b;display:block;margin:11px 0}
.dash-main{display:grid;grid-template-rows:55px 1fr;gap:12px}
.dash-top{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.dash-top span{
  font-size:8px;color:#9fb0c5;padding:8px;border-radius:9px;background:#111f34
}
.dash-top b{display:block;color:#fff;font-size:19px}
.dash-map,.dark-map{
  position:relative;
  overflow:hidden;
  border-radius:13px;
  background:
    linear-gradient(135deg, rgba(53,168,255,.09), transparent 45%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #0b1524;
  background-size:auto,34px 34px,34px 34px,auto;
}
.dash-map svg,.dark-map svg{
  position:absolute;inset:0;width:100%;height:100%;
}
.dash-map path,.dark-map path{
  fill:none;stroke:#ffce4a;stroke-width:5;stroke-linecap:round;
  filter:drop-shadow(0 0 8px rgba(255,206,74,.28));
}
.dash-map .path-secondary,.dark-map .path-secondary{stroke:#35a8ff;opacity:.45}
.pin{
  position:absolute;
  width:18px;height:18px;border-radius:50% 50% 50% 4px;
  transform:rotate(-45deg);
  z-index:2;
  box-shadow:0 0 0 4px rgba(255,255,255,.12);
}
.pin::after{
  content:"";position:absolute;inset:5px;border-radius:50%;background:#fff;
}
.pin.green{background:var(--green)}
.pin.red{background:var(--red)}
.pin.blue{background:var(--blue)}
.mobile{
  position:absolute;
  right:0;bottom:-10px;
  width:124px;height:234px;
  padding:12px 8px 16px;
  border-radius:26px;
  border:7px solid #090d13;
  background:#0e192b;
  box-shadow:0 18px 50px rgba(0,0,0,.6);
}
.mobile-map{
  height:132px;
  border-radius:15px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg,rgba(53,168,255,.18),transparent),
    linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px),
    #12243a;
  background-size:auto,24px 24px,24px 24px,auto;
  margin-bottom:12px;
}
.mobile > span{
  display:block;height:10px;border-radius:8px;background:#1c314b;margin:9px 6px;
}

/* Sections */
.section-light{
  background:
    radial-gradient(circle at 50% 0, rgba(53,168,255,.06), transparent 28%),
    #f6f8fb;
  color:#101827;
  padding:72px 0 88px;
}
.section-title{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:0 auto 30px;
  text-align:center;
}
.section-title h2{
  margin:7px 0 8px;
  font-size:clamp(27px,4vw,42px);
  line-height:1.12;
  letter-spacing:-.035em;
}
.section-title p{margin:0 auto;color:#586477;max-width:650px}
.feature-grid{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:auto;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.feature-card{
  background:#fff;
  border:1px solid #e6ebf2;
  border-radius:16px;
  padding:28px 18px 24px;
  text-align:center;
  min-height:220px;
  box-shadow:0 12px 32px rgba(16,24,39,.08);
  transition:.25s ease;
}
.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 44px rgba(16,24,39,.12);
}
.feature-card h3{
  margin:18px 0 9px;
  font-size:17px;
  line-height:1.2;
}
.feature-card p{
  margin:0;
  color:#536070;
  font-size:14px;
}
.icon{
  margin:auto;
  width:56px;height:56px;
  display:grid;place-items:center;
  color:#0068c9;
  border:3px solid #0068c9;
  border-radius:18px;
  font-weight:900;
  position:relative;
}
.circle-24{border-radius:50%;font-size:15px}
.bell{border-color:var(--red);color:var(--red);border-radius:50% 50% 16px 16px}
.bell::after{content:"";position:absolute;bottom:-8px;width:15px;height:4px;border-radius:5px;background:var(--red)}
.geofence{border-radius:50% 50% 50% 8px;transform:rotate(-45deg)}
.geofence::after{content:"";width:14px;height:14px;border-radius:50%;background:#0068c9}
.route{border-color:var(--red);border-radius:50%;border-style:dashed}
.route::after{content:"";width:34px;height:34px;border-top:4px dotted var(--red);transform:rotate(35deg)}
.app::after{content:"";position:absolute;inset:8px 15px;border:3px solid #0068c9;border-radius:6px}
.report{border-color:var(--red);border-radius:10px}
.report::after{content:"";position:absolute;bottom:11px;left:13px;width:7px;height:22px;background:var(--red);box-shadow:12px -8px 0 var(--red),24px -17px 0 var(--red)}

/* Platform */
.platform{
  position:relative;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,50,31,.13), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(53,168,255,.14), transparent 35%),
    linear-gradient(180deg,#07111f,#050b14);
  padding:86px 0 66px;
}
.platform-grid{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:auto;
  display:grid;
  grid-template-columns: 330px 1fr;
  gap:38px;
  align-items:center;
}
.platform-copy h2{
  margin:14px 0;
  font-size:clamp(30px,4vw,47px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.platform-copy p{color:#c6cfdd}
.check-list{
  list-style:none;
  padding:0;margin:26px 0 28px;
  display:grid;gap:13px;
}
.check-list li{
  position:relative;
  padding-left:31px;
  color:#e7edf7;
}
.check-list li::before{
  content:"✓";
  position:absolute;left:0;top:0;
  width:21px;height:21px;border-radius:50%;
  display:grid;place-items:center;
  color:var(--red2);
  border:1px solid var(--red);
  font-size:13px;font-weight:900;
}
.dashboard{
  min-height:520px;
  display:grid;
  grid-template-columns:170px 1fr;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(18,33,55,.92),rgba(9,17,30,.94));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.dashboard aside{
  padding:24px 15px;
  background:rgba(5,12,22,.64);
  border-right:1px solid rgba(255,255,255,.09);
}
.dashboard aside img{
  width:118px;
  margin:0 auto 22px;
}
.dashboard aside a{
  display:block;
  color:#b5c1d2;
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
  margin-bottom:4px;
}
.dashboard aside a.selected{
  background:linear-gradient(135deg,rgba(255,50,31,.95),rgba(255,90,53,.72));
  color:#fff;
}
.dashboard-content{padding:20px}
.dashboard-head{
  display:flex;align-items:end;justify-content:space-between;gap:15px;margin-bottom:13px
}
.dashboard-head h3{margin:0;font-size:20px}
.dashboard-head span{font-size:12px;color:#8090a7}
.kpi-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:12px
}
.kpi-grid div,
.panel{
  background:#111f34;
  border:1px solid rgba(255,255,255,.07);
  border-radius:13px;
}
.kpi-grid div{padding:12px}
.kpi-grid small{display:block;color:#8ea0b9;font-size:12px}
.kpi-grid b{display:block;font-size:31px;line-height:1.1}
.kpi-grid em{font-style:normal;color:var(--green);font-size:12px;font-weight:800}
.kpi-grid em.warning{color:var(--red2)}
.dashboard-main-grid{
  display:grid;
  grid-template-columns:1.4fr .86fr;
  grid-template-rows:220px 140px;
  gap:12px;
}
.panel{padding:13px;overflow:hidden}
.panel-title{
  display:flex;justify-content:space-between;align-items:center;
  color:#dce5f2;
  font-weight:800;
  font-size:13px;
  margin-bottom:10px;
}
.panel-title span{font-size:11px;color:#7ea1c9;font-weight:700}
.dark-map{height:176px}
.status-panel ul,
.history-panel ul{
  list-style:none;padding:0;margin:0;display:grid;gap:9px;
}
.status-panel li{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:8px;
  align-items:center;
  font-size:12px;
  color:#c7d0df;
}
.status-panel em{
  font-style:normal;font-weight:800;font-size:11px;
}
.status-panel .ok{color:var(--green)}
.status-panel .stop{color:var(--red2)}
.history-panel li{
  display:grid;grid-template-columns:74px 1fr auto;gap:9px;font-size:12px;color:#c7d0df
}
.history-panel em{font-style:normal;color:#7ea1c9}
.chart-panel strong{display:block;font-size:31px;line-height:1;margin-top:18px}
.chart-panel small{color:var(--green);font-weight:800}
.chart-panel svg{width:100%;height:58px;margin-top:8px}
.chart-panel path{fill:none;stroke:var(--blue);stroke-width:5;stroke-linecap:round;filter:drop-shadow(0 0 12px rgba(53,168,255,.28))}
.metrics{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:42px auto 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:linear-gradient(135deg,rgba(22,38,62,.96),rgba(11,21,36,.96));
  border:1px solid rgba(255,255,255,.09);
  border-radius:18px;
  box-shadow:0 20px 48px rgba(0,0,0,.24);
  overflow:hidden;
}
.metrics div{
  padding:25px 26px;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:14px;
  align-items:center;
  border-right:1px solid rgba(255,255,255,.1);
}
.metrics div:last-child{border-right:0}
.metrics b{
  font-size:32px;
  line-height:1;
}
.metrics p{
  margin:5px 0 0;
  color:#c8d2df;
  grid-column:2;
  font-size:14px;
}
.metric-icon{
  grid-row:1 / span 2;
  width:52px;height:52px;
  border:3px solid var(--red);
  border-radius:14px;
  position:relative;
}
.metric-icon.truck::before{content:"";position:absolute;left:9px;top:18px;width:25px;height:15px;border:3px solid var(--red);border-radius:4px}
.metric-icon.truck::after{content:"";position:absolute;left:14px;bottom:7px;width:7px;height:7px;border-radius:50%;background:var(--red);box-shadow:20px 0 0 var(--red)}
.metric-icon.headset{border-radius:50% 50% 16px 16px;border-bottom-color:transparent}
.metric-icon.secure{border-radius:14px 14px 20px 20px}
.metric-icon.secure::after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:var(--red);font-size:24px;font-weight:900}
.metric-icon.coverage{border-radius:50% 50% 50% 8px;transform:rotate(-45deg)}
.metric-icon.coverage::after{content:"";position:absolute;inset:14px;border-radius:50%;background:var(--red)}

/* Contact */
.contact-section{
  padding:86px 0;
  background:#f6f8fb;
  color:#101827;
}
.contact-card{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:auto;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:40px;
  align-items:center;
  padding:44px 46px;
  background:#fff;
  border-radius:28px;
  box-shadow:0 18px 60px rgba(16,24,39,.12);
  border:1px solid #e6ebf2;
}
.contact-card h2{
  margin:13px 0;
  font-size:clamp(29px,4vw,48px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.contact-card p{color:#566274;font-size:17px}
.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
.contact-form label{
  display:grid;
  gap:7px;
  color:#263244;
  font-weight:800;
  font-size:13px;
}
.contact-form label:nth-child(4),
.contact-form button,
.contact-form small{grid-column:1/-1}
.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #dbe2ec;
  border-radius:12px;
  padding:13px 14px;
  color:#101827;
  outline:none;
  transition:.2s ease;
  background:#fbfcfe;
}
.contact-form input:focus,
.contact-form textarea:focus{
  border-color:var(--red2);
  box-shadow:0 0 0 4px rgba(255,50,31,.1);
}
.contact-form textarea{resize:vertical}
.contact-form small{color:#6b7585}

/* Footer */
.site-footer{
  background:#050b14;
  border-top:1px solid rgba(255,255,255,.08);
  padding:54px 0 0;
}
.footer-grid{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:44px;
}
.footer-logo{width:210px;margin-bottom:18px}
.site-footer p{color:#aab6c6;margin:0 0 14px}
.site-footer h4{
  margin:0 0 16px;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.08em;
}
.site-footer a{
  display:block;
  color:#bdc7d6;
  margin:9px 0;
  transition:.2s ease;
}
.site-footer a:hover{color:#fff}
.socials{display:flex;gap:9px;margin-top:18px}
.socials a{
  width:36px;height:36px;
  border-radius:50%;
  display:grid;place-items:center;
  background:#142033;
  color:#fff;
  font-weight:900;
  margin:0;
}
.contact-line{margin:10px 0!important}
.footer-bottom{
  width:min(var(--max), calc(100% - var(--gutter)));
  margin:38px auto 0;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:#78869a;
  font-size:13px;
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:999;
  width:62px;height:62px;
  border-radius:50%;
  display:grid;place-items:center;
  background:linear-gradient(135deg,#25d366,#14b955);
  color:#fff;
  box-shadow:0 18px 40px rgba(37,211,102,.35);
  border:3px solid rgba(255,255,255,.25);
}
.whatsapp-float svg{
  width:31px;height:31px;fill:#fff;
}

/* Animations */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* Responsive */
@media (max-width: 1100px){
  .hero-grid,.platform-grid{grid-template-columns:1fr}
  .hero{padding-top:118px}
  .hero-copy{max-width:760px}
  .hero-visual{min-height:610px}
  .truck-card{width:100%}
  .device-stack{right:50%;transform:translateX(50%)}
  .feature-grid{grid-template-columns:repeat(3,1fr)}
  .platform-copy{max-width:760px}
  .metrics{grid-template-columns:repeat(2,1fr)}
  .metrics div:nth-child(2){border-right:0}
  .metrics div:nth-child(1),
  .metrics div:nth-child(2){border-bottom:1px solid rgba(255,255,255,.1)}
}

@media (max-width: 900px){
  .header-inner{width:min(calc(100% - 18px), var(--max));gap:10px}
  .brand img{width:175px}
  .header-cta{display:none}
  
  .login-dropdown{margin-left:auto}
  .login-trigger{min-height:40px;padding:0 13px}
  .login-panel{
    position:fixed;
    left:14px;
    right:14px;
    top:82px;
    width:auto;
  }
  .login-panel::before{display:none}

  .menu-toggle{display:block}
  .main-nav{
    position:absolute;
    left:14px;right:14px;top:78px;
    margin:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    border-radius:18px;
    background:rgba(5,12,22,.97);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 22px 55px rgba(0,0,0,.42);
  }
  .main-nav.open{display:flex}
  .main-nav > a{padding:14px 12px}
  .main-nav > a::after{display:none}
  .trust-points{grid-template-columns:1fr}
  .dashboard{
    grid-template-columns:1fr;
  }
  .dashboard aside{
    display:flex;
    overflow:auto;
    gap:8px;
    padding:14px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.09);
  }
  .dashboard aside img{display:none}
  .dashboard aside a{white-space:nowrap}
  .dashboard-main-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .dark-map{height:240px}
  .contact-card{grid-template-columns:1fr;padding:28px}
  .footer-grid{grid-template-columns:1fr 1fr}
}

@media (max-width: 650px){
  .site-header{height:74px}
  .brand img{width:150px}
  .hero{
    min-height:auto;
    padding:104px 0 44px;
  }
  .hero-grid,
  .section-title,
  .feature-grid,
  .platform-grid,
  .metrics,
  .contact-card,
  .footer-grid,
  .footer-bottom{
    width:calc(100% - 18px);
  }
  .hero h1{font-size:44px}
  .hero p{font-size:16px}
  .hero-actions .btn{width:100%}
  .hero-visual{min-height:430px}
  .satellite-card{left:8%;top:8%;transform:scale(.75) rotate(-18deg)}
  .truck-card{top:75px;border-radius:18px;mask-image:none}
  .truck-card img{height:260px}
  .device-stack{
    width:330px;
    height:160px;
    bottom:4px;
  }
  .laptop{width:285px}
  .screen{
    height:158px;
    border-width:6px;
    grid-template-columns:54px 1fr;
    gap:7px;
    padding:7px;
  }
  .dash-sidebar{padding:7px}
  .dash-sidebar b{font-size:8px;margin-bottom:7px}
  .dash-sidebar span{height:5px;margin:6px 0}
  .dash-top span{font-size:6px;padding:4px}
  .dash-top b{font-size:12px}
  .mobile{
    width:76px;height:145px;border-width:5px;border-radius:17px;padding:7px 4px;
  }
  .mobile-map{height:77px;border-radius:9px}
  .mobile > span{height:6px;margin:5px}
  .section-light{padding:45px 0 52px}
  .feature-grid{grid-template-columns:1fr}
  .feature-card{min-height:auto}
  .platform{padding:52px 0}
  .kpi-grid{grid-template-columns:1fr 1fr}
  .dashboard-content{padding:14px}
  .metrics{grid-template-columns:1fr}
  .metrics div{
    border-right:0!important;
    border-bottom:1px solid rgba(255,255,255,.1);
  }
  .metrics div:last-child{border-bottom:0}
  .contact-section{padding:48px 0}
  .contact-form{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}


.contact-status{
  grid-column:1/-1;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  font-size:14px;
}
.contact-status.ok{
  color:#116329;
  background:#dcfce7;
  border:1px solid #86efac;
}
.contact-status.error{
  color:#991b1b;
  background:#fee2e2;
  border:1px solid #fecaca;
}

.captcha-field{
  grid-column:1/-1;
}
.captcha-question{
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  padding:5px 10px;
  border-radius:999px;
  background:#fff4ed;
  color:#c2410c;
  border:1px solid #fed7aa;
  font-weight:900;
}

/* Campo antispam oculto: no debe verse para el usuario */
.contact-hp{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
}
.contact-hp input{
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}







/* Mensaje visual de contacto sin recarga */
.contact-feedback{
  grid-column:1/-1;
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  font-weight:800;
  line-height:1.35;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  margin-bottom:6px;
}
.contact-feedback::before{
  width:28px;
  height:28px;
  flex:0 0 28px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:900;
  color:#fff;
}
.contact-feedback.ok{
  color:#14532d;
  background:linear-gradient(135deg,#dcfce7,#f0fdf4);
  border:1px solid #86efac;
}
.contact-feedback.ok::before{
  content:"✓";
  background:#22c55e;
}
.contact-feedback.error{
  color:#7f1d1d;
  background:linear-gradient(135deg,#fee2e2,#fff7ed);
  border:1px solid #fecaca;
}
.contact-feedback.error::before{
  content:"!";
  background:#ef4444;
}
.contact-feedback.sending{
  color:#1e3a8a;
  background:linear-gradient(135deg,#dbeafe,#eff6ff);
  border:1px solid #bfdbfe;
}
.contact-feedback.sending::before{
  content:"";
  border:3px solid rgba(37,99,235,.25);
  border-top-color:#2563eb;
  background:transparent;
  animation:seguisatSpin .8s linear infinite;
}
@keyframes seguisatSpin{
  to{ transform:rotate(360deg); }
}
#contactSubmit.is-loading{
  opacity:.75;
  pointer-events:none;
}
