/* =========================================================
   SIRS GLOBAL - MAIN CSS
   ========================================================= */


/* =========================================================
   1. VARIABLES GLOBALES
   ========================================================= */

:root{
  --primary:#0d6efd;
  --primary-dark:#084298;
  --secondary:#0f172a;
  --text:#1f2937;
  --muted:#6b7280;
  --light:#f8fafc;
  --border:#e5e7eb;
  --accent:#eaf2ff;
  --success:#16a34a;
  --white:#ffffff;
  --dark-bg:#07111c;
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#ffffff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}


/* =========================================================
   3. UTILIDADES GLOBALES
   ========================================================= */

.text-gradient{
  background:linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  display:inline-block;
}

.section{
  padding:90px 0;
  position:relative;
  overflow:hidden;
}

.section-light{
  background:var(--light);
}

.section-title-top{
  color:var(--primary);
  font-weight:700;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.section h2{
  font-size:clamp(2rem,3vw,3rem);
  font-weight:800;
  color:var(--secondary);
  margin-bottom:16px;
}

.section p.section-text{
  color:var(--muted);
  font-size:1.05rem;
  max-width:760px;
  margin:0 auto;
}

.bg-blob{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  z-index:0;
  opacity:.28;
  animation:float 12s infinite ease-in-out alternate;
  pointer-events:none;
}

.blob-1{
  top:-6%;
  left:-10%;
  width:360px;
  height:360px;
  background:rgba(13,110,253,.18);
}

.blob-2{
  bottom:0;
  right:-8%;
  width:340px;
  height:340px;
  background:rgba(139,92,246,.14);
  animation-delay:-4s;
}

.blob-3{
  top:20%;
  right:10%;
  width:280px;
  height:280px;
  background:rgba(59,130,246,.10);
  animation-delay:-2s;
}

.blob-4{
  bottom:15%;
  left:10%;
  width:280px;
  height:280px;
  background:rgba(14,165,233,.10);
  animation-delay:-6s;
}


/* =========================================================
   4. ANIMACIONES GLOBALES
   ========================================================= */

@keyframes float{
  0%{
    transform:translate(0,0) scale(1);
  }
  100%{
    transform:translate(40px,60px) scale(1.08);
  }
}

@keyframes pulse-glow{
  0%{
    box-shadow:0 0 0 0 rgba(13,110,253,.35);
  }
  70%{
    box-shadow:0 0 0 12px rgba(13,110,253,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(13,110,253,0);
  }
}

@keyframes grow{
  from{
    height:0;
  }
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s cubic-bezier(.5,0,0,1);
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

.delay-100{ transition-delay:100ms; }
.delay-200{ transition-delay:200ms; }
.delay-300{ transition-delay:300ms; }
.delay-400{ transition-delay:400ms; }


/* =========================================================
   5. NAVBAR DESKTOP
   ========================================================= */

.navbar{
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  box-shadow:0 8px 30px rgba(15,23,42,.06);
}

.navbar-brand img{
  height:50px;
  width:auto;
  display:block;
}

.nav-link{
  color:#334155;
  font-weight:500;
  position:relative;
}

.nav-link::after{
  content:'';
  position:absolute;
  width:0;
  height:2px;
  bottom:5px;
  left:50%;
  transform:translateX(-50%);
  background-color:var(--primary);
  transition:.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:80%;
}

.nav-link:hover,
.nav-link.active{
  color:var(--primary);
}


/* =========================================================
   6. MOBILE MENU
   ========================================================= */

.mobile-menu-btn{
  border:none;
  font-size:28px;
  background:rgba(15,23,42,.06);
  color:#0f172a;
  line-height:1;
  padding:10px 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  transition:.3s ease;
}

.mobile-menu-btn:hover{
  background:rgba(13,110,253,.10);
  color:var(--primary);
}

.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,.55);
  backdrop-filter:blur(8px);
  opacity:0;
  visibility:hidden;
  transition:.35s ease;
  z-index:9998;
}

.mobile-overlay.active{
  opacity:1;
  visibility:visible;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:86%;
  max-width:360px;
  height:100%;
  background:linear-gradient(180deg, #07111c 0%, #0f172a 100%);
  box-shadow:-20px 0 50px rgba(0,0,0,.30);
  padding:22px;
  transition:.4s cubic-bezier(.22,1,.36,1);
  z-index:9999;
  display:flex;
  flex-direction:column;
  border-left:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.mobile-menu::before{
  content:"";
  position:absolute;
  top:-80px;
  right:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(59,130,246,.18);
  filter:blur(30px);
  pointer-events:none;
}

.mobile-menu::after{
  content:"";
  position:absolute;
  bottom:-90px;
  left:-70px;
  width:200px;
  height:200px;
  border-radius:50%;
  background:rgba(139,92,246,.14);
  filter:blur(30px);
  pointer-events:none;
}

.mobile-menu.active{
  right:0;
}

.mobile-menu-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-bottom:18px;
  margin-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;
  z-index:2;
}

.mobile-menu-brand img{
  height:44px;
  width:auto;
  display:block;
  filter:brightness(0) invert(1);
}

.mobile-close-btn{
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  transition:.3s ease;
}

.mobile-close-btn:hover{
  background:rgba(255,255,255,.14);
  transform:rotate(90deg);
}

.mobile-menu-body{
  display:flex;
  flex-direction:column;
  gap:10px;
  position:relative;
  z-index:2;
}

.mobile-link{
  display:flex;
  align-items:center;
  gap:14px;
  padding:15px 16px;
  border-radius:16px;
  color:rgba(255,255,255,.88);
  font-weight:600;
  font-size:1rem;
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.03);
  transition:.3s ease;
}

.mobile-link i{
  font-size:1.05rem;
  color:#93c5fd;
  width:20px;
  text-align:center;
}

.mobile-link:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
  border-color:rgba(59,130,246,.30);
  transform:translateX(-2px);
}

.mobile-link.active{
  color:#fff;
  background:linear-gradient(135deg, rgba(13,110,253,.22), rgba(59,130,246,.12));
  border-color:rgba(96,165,250,.35);
  box-shadow:0 10px 25px rgba(13,110,253,.14);
}

.mobile-link.active i{
  color:#fff;
}

.mobile-menu-footer{
  margin-top:auto;
  padding-top:22px;
  position:relative;
  z-index:2;
}


/* =========================================================
   7. BOTONES
   ========================================================= */

.btn-primary-custom{
  background:linear-gradient(135deg,var(--primary),#3b82f6);
  border:none;
  color:#fff;
  border-radius:12px;
  padding:10px 20px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(59,130,246,.4);
  transition:.3s ease;
}

.btn-primary-custom:hover{
  transform:translateY(-3px);
  color:#fff;
  box-shadow:0 15px 30px rgba(59,130,246,.6);
}

.btn-outline-custom{
  border:1.5px solid var(--primary);
  color:var(--primary);
  border-radius:12px;
  padding:12px 22px;
  font-weight:600;
  transition:.3s ease;
  background:#fff;
}

.btn-outline-custom:hover{
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 25px rgba(13,110,253,.3);
}


/* =========================================================
   8. FOOTER
   ========================================================= */

.footer-corporate{
  background:#07111c;
  color:#d7e0ea;
  padding:80px 0 24px;
  position:relative;
  overflow:hidden;
}

.footer-corporate::before{
  content:"";
  position:absolute;
  top:-120px;
  left:-120px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(13,110,253,.08);
  filter:blur(10px);
}

.footer-corporate::after{
  content:"";
  position:absolute;
  bottom:-140px;
  right:-100px;
  width:300px;
  height:300px;
  border-radius:50%;
  background:rgba(255,106,0,.08);
  filter:blur(10px);
}

.footer-corporate .container{
  position:relative;
  z-index:2;
}

.footer-logo img{
  max-height:110px;
  width:auto;
  display:block;
  filter:brightness(0) invert(1);
}

.footer-desc{
  color:#c0ccd8;
  line-height:1.9;
  max-width:360px;
  margin-bottom:24px;
  font-size:1rem;
}

.footer-title{
  color:#ffffff;
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:22px;
}

.footer-links,
.footer-contact{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li,
.footer-contact li{
  margin-bottom:14px;
}

.footer-links a,
.footer-contact a{
  color:#d7e0ea;
  transition:.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#ff6a00;
}

.footer-contact li{
  color:#d7e0ea;
  line-height:1.8;
}

.footer-contact strong{
  color:#fff;
  margin-right:6px;
}

.footer-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer-social a{
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:.25s ease;
  font-size:1rem;
}

.footer-social a:hover{
  background:#ff6a00;
  border-color:#ff6a00;
  transform:translateY(-3px);
}

.footer-bottom{
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-copy{
  color:#d7e0ea;
  font-size:.95rem;
}

.footer-bottom-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-bottom-links a{
  color:#d7e0ea;
  transition:.25s ease;
}

.footer-bottom-links a:hover{
  color:#ff6a00;
}


/* =========================================================
   9. PLATAFORMA.HTML
   ========================================================= */

/* HERO PLATAFORMA */
.hero-platform{
  position:relative;
  overflow:hidden;
  background-image:url("../img/banner/Banner_plataforma.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:110px 0 110px;
}

.hero-platform::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.85) 40%, rgba(15,23,42,.60) 100%);
  z-index:1;
}

.hero-platform .container{
  position:relative;
  z-index:2;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(13,110,253,.2);
  color:#60a5fa;
  border:1px solid rgba(13,110,253,.3);
  padding:8px 16px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:600;
  margin-bottom:24px;
  animation:pulse-glow 2s infinite;
}

.hero-platform h1{
  color:#ffffff;
  font-size:clamp(2.5rem,3vw,4.5rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
}

.hero-platform p.lead{
  font-size:1.1rem;
  color:rgba(255,255,255,.85);
  max-width:620px;
  margin-bottom:26px;
}

.hero-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  margin:28px 0 34px;
  padding:0;
  list-style:none;
}

.hero-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#f8fafc;
  font-weight:500;
}

.hero-list li span{
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(34, 197, 94, 0.2);
  color:#4ade80;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  flex-shrink:0;
  margin-top:2px;
  box-shadow:0 0 10px rgba(34, 197, 94, 0.3);
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.platform-visual{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

.dashboard-card{
  width:100%;
  max-width:520px;
  background:#fff;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.3);
  position:relative;
  z-index:2;
  transform:rotateY(-5deg) rotateX(5deg);
  transition:transform 0.5s ease;
}

.platform-visual:hover .dashboard-card{
  transform:rotateY(0deg) rotateX(0deg);
}

.dashboard-top{
  background:linear-gradient(135deg,#0f172a,#1e3a8a);
  padding:18px 22px;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.dashboard-top h6{
  margin:0;
  font-weight:700;
  font-size:1rem;
}

.dashboard-top small{
  opacity:.8;
}

.dashboard-body{
  padding:22px;
  background:#fff;
}

.mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:18px;
}

.mini-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 14px;
  transition:.3s;
}

.mini-card:hover{
  transform:translateY(-3px);
  border-color:var(--primary);
}

.mini-card .label{
  font-size:.78rem;
  color:var(--muted);
  margin-bottom:6px;
}

.mini-card .value{
  font-size:1.2rem;
  font-weight:800;
  color:var(--secondary);
  line-height:1;
}

.chart-box,
.table-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  margin-bottom:16px;
}

.chart-bars{
  height:150px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  margin-top:14px;
}

.chart-bars div{
  flex:1;
  border-radius:12px 12px 6px 6px;
  background:linear-gradient(180deg,#60a5fa,#2563eb);
  transition:height 1s ease;
}

.chart-bars div:nth-child(1){ height:48%; animation:grow 1.5s ease-out; }
.chart-bars div:nth-child(2){ height:72%; animation:grow 1.7s ease-out; }
.chart-bars div:nth-child(3){ height:58%; animation:grow 1.9s ease-out; }
.chart-bars div:nth-child(4){ height:86%; animation:grow 2.1s ease-out; }

.table-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:.94rem;
}

.table-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.table-line .status{
  padding:6px 10px;
  border-radius:999px;
  background:#dcfce7;
  color:#166534;
  font-weight:700;
  font-size:.78rem;
}

.floating-card{
  position:absolute;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(10px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
  padding:16px 18px;
  z-index:3;
  animation:float 6s ease-in-out infinite alternate;
}

.floating-card.top{
  top:10px;
  right:-20px;
  width:180px;
}

.floating-card.bottom{
  bottom:10px;
  left:-30px;
  width:200px;
  animation-delay:-3s;
}

.floating-card .small-title{
  color:var(--muted);
  font-size:.8rem;
  margin-bottom:6px;
}

.floating-card .big-value{
  font-size:1.45rem;
  font-weight:800;
  color:var(--primary);
  line-height:1.1;
}

.feature-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px 24px;
  height:100%;
  box-shadow:0 10px 30px rgba(15,23,42,.03);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.feature-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg, var(--primary), #8b5cf6);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.3s ease;
  z-index:-1;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(13, 110, 253, 0.1);
  border-color:rgba(13, 110, 253, 0.3);
}

.feature-card:hover::before{
  transform:scaleX(1);
}

.feature-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.6rem;
  margin-bottom:22px;
  font-weight:800;
  transition:transform 0.3s ease;
}

.feature-card:hover .feature-icon{
  transform:scale(1.1) rotate(5deg);
}

.feature-card h5{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:12px;
}

.feature-card p{
  color:var(--muted);
  margin:0;
  font-size:.97rem;
  line-height:1.6;
}

.benefits-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 50px rgba(15,23,42,.05);
  position:relative;
  z-index:2;
}

.benefit-preview{
  background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 100%);
  border-radius:26px;
  padding:30px;
  color:#fff;
  height:100%;
  position:relative;
  overflow:hidden;
}

.benefit-preview::after{
  content:"";
  position:absolute;
  width:250px;
  height:250px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  right:-80px;
  bottom:-80px;
}

.benefit-preview::before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-30px;
  left:-30px;
}

.benefit-preview h3{
  font-weight:800;
  margin-bottom:18px;
  font-size:2rem;
}

.benefit-preview p{
  color:rgba(255,255,255,.85);
  max-width:470px;
  font-size:1.05rem;
}

.preview-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:32px;
  position:relative;
  z-index:2;
}

.preview-stats .stat{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  padding:20px;
  backdrop-filter:blur(10px);
  transition:.3s;
}

.preview-stats .stat:hover{
  background:rgba(255,255,255,.15);
  transform:translateY(-3px);
}

.preview-stats .stat h4{
  font-weight:800;
  margin-bottom:4px;
  font-size:1.5rem;
}

.accordion-item{
  border:1px solid var(--border);
  border-radius:18px !important;
  overflow:hidden;
  margin-bottom:16px;
  background:#fff;
  transition:0.3s;
}

.accordion-item:hover{
  border-color:#cbd5e1;
  box-shadow:0 5px 15px rgba(0,0,0,0.03);
}

.accordion-button{
  font-weight:700;
  font-size:1.05rem;
  color:var(--secondary);
  padding:22px;
  background:#fff;
  box-shadow:none !important;
}

.accordion-button:not(.collapsed){
  color:var(--primary);
  background:#f8fbff;
}

.accordion-body{
  color:var(--muted);
  padding:0 22px 22px;
  line-height:1.7;
}

.apps-card{
  background:linear-gradient(135deg,#ffffff,#f8fbff);
  border:1px solid var(--border);
  border-radius:32px;
  padding:40px;
  box-shadow:0 20px 50px rgba(15,23,42,.06);
  position:relative;
  z-index:2;
}

.store-box{
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px;
  height:100%;
  background:#fff;
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
}

.store-box:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
  border-color:var(--primary);
}

.store-badge{
  display:inline-block;
  background:var(--accent);
  color:var(--primary);
  border-radius:999px;
  padding:8px 14px;
  font-size:.85rem;
  font-weight:700;
  margin-bottom:20px;
}

.store-box h5{
  font-weight:800;
  font-size:1.4rem;
  color:var(--secondary);
  margin-bottom:12px;
}

.store-box p{
  color:var(--muted);
  min-height:72px;
  line-height:1.6;
}

.cta-section{
  padding:80px 0;
}

.cta-box{
  background:linear-gradient(135deg,#0f172a 0%, #1e40af 55%, #2563eb 100%);
  color:#fff;
  border-radius:36px;
  padding:60px 40px;
  overflow:hidden;
  position:relative;
  box-shadow:0 30px 60px rgba(37,99,235,.25);
}

.cta-box::before,
.cta-box::after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.05);
  border-radius:50%;
}

.cta-box::before{
  width:350px;
  height:350px;
  top:-150px;
  right:-100px;
  animation:float 10s infinite alternate;
}

.cta-box::after{
  width:200px;
  height:200px;
  bottom:-100px;
  left:-50px;
  animation:float 8s infinite alternate-reverse;
}

.cta-box h2{
  color:#fff;
  margin-bottom:18px;
  font-size:clamp(2rem, 3vw, 2.5rem);
  font-weight:800;
  position:relative;
  z-index:2;
}

.cta-box p{
  color:rgba(255,255,255,.88);
  font-size:1.1rem;
  max-width:720px;
  margin-bottom:0;
  position:relative;
  z-index:2;
}

.cta-box .btn{
  position:relative;
  z-index:2;
  transition:transform 0.3s;
}

.cta-box .btn:hover{
  transform:scale(1.05);
}


/* =========================================================
   10. SERVICIOS.HTML
   ========================================================= */

/* HERO SERVICIOS */
.hero-services{
  position:relative;
  overflow:hidden;
  background-image:url("../img/banner/Banner_servicios.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:110px 0;
}

.hero-services::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.84) 45%, rgba(15,23,42,.58) 100%);
  z-index:1;
}

.hero-services .container{
  position:relative;
  z-index:2;
}

.hero-services h1{
  color:#fff;
  font-size:clamp(2.5rem,3vw,4.5rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
}

.hero-services p.lead{
  font-size:1.1rem;
  color:rgba(255,255,255,.85);
  max-width:650px;
  margin-bottom:28px;
}

.services-highlight{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

.services-panel{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.28);
  transform:rotateY(-6deg) rotateX(5deg);
  transition:.5s ease;
  position:relative;
  z-index:2;
}

.services-highlight:hover .services-panel{
  transform:rotateY(0) rotateX(0);
}

.services-panel-top{
  padding:18px 22px;
  background:linear-gradient(135deg,#0f172a,#1d4ed8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.services-panel-top h6{
  margin:0;
  font-weight:700;
}

.services-panel-body{
  padding:22px;
}

.service-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-bottom:18px;
}

.service-mini-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px 16px;
  transition:.3s;
}

.service-mini-card:hover{
  transform:translateY(-3px);
  border-color:rgba(13,110,253,.35);
}

.service-mini-card i{
  color:var(--primary);
  font-size:1.2rem;
  margin-bottom:10px;
  display:inline-block;
}

.service-mini-card h6{
  font-weight:700;
  color:var(--secondary);
  margin-bottom:6px;
}

.service-mini-card p{
  font-size:.9rem;
  color:var(--muted);
  margin:0;
}

.services-list-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
}

.service-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:.95rem;
}

.service-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.service-line .tag{
  padding:6px 10px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:700;
  font-size:.78rem;
  white-space:nowrap;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px 24px;
  height:100%;
  box-shadow:0 10px 30px rgba(15,23,42,.03);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),#8b5cf6);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
  z-index:-1;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(13,110,253,.10);
  border-color:rgba(13,110,253,.25);
}

.service-card:hover::before{
  transform:scaleX(1);
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.6rem;
  margin-bottom:22px;
  transition:transform .3s ease;
}

.service-card:hover .service-icon{
  transform:scale(1.08) rotate(5deg);
}

.service-card h5{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:12px;
}

.service-card p{
  color:var(--muted);
  margin-bottom:16px;
  line-height:1.65;
}

.service-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.service-card ul li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#334155;
  font-size:.95rem;
}

.service-card ul li i{
  color:var(--success);
  margin-top:3px;
}

.advantage-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 50px rgba(15,23,42,.05);
  position:relative;
  z-index:2;
}

.advantage-preview{
  background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 100%);
  border-radius:26px;
  padding:30px;
  color:#fff;
  height:100%;
  position:relative;
  overflow:hidden;
}

.advantage-preview::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  right:-80px;
  bottom:-80px;
}

.advantage-preview h3{
  font-weight:800;
  margin-bottom:18px;
  font-size:2rem;
}

.advantage-preview p{
  color:rgba(255,255,255,.86);
  font-size:1.04rem;
}

.process-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.process-number{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#60a5fa);
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

.process-card h5{
  font-weight:800;
  margin-bottom:10px;
  color:var(--secondary);
}

.process-card p{
  color:var(--muted);
  margin:0;
  line-height:1.65;
}


/* =========================================================
   11. RESPONSIVE GLOBAL
   ========================================================= */

@media (min-width: 992px){
  .mobile-menu,
  .mobile-overlay,
  .mobile-menu-btn{
    display:none !important;
  }
}

@media (max-width: 991.98px){
  .hero-platform,
  .hero-services{
    padding:90px 0;
  }

  .services-panel,
  .floating-card{
    transform:none !important;
  }

  .floating-card{
    display:none;
  }
}

@media (max-width: 767.98px){
  .section{
    padding:70px 0;
  }

  .hero-actions{
    flex-wrap:nowrap;
    overflow-x:auto;
  }

  .hero-actions .btn{
    white-space:nowrap;
  }

  .hero-list{
    grid-template-columns:1fr;
  }

  .mini-stats,
  .service-mini-grid,
  .preview-stats{
    grid-template-columns:1fr;
  }

  .cta-box,
  .advantage-box,
  .benefits-wrap,
  .apps-card{
    padding:26px 22px;
  }

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

/* =========================================================
   12. NOSOTROS.HTML
   ========================================================= */

/* HERO NOSOTROS */
.hero-about{
  position:relative;
  overflow:hidden;
  background-image:url("../img/banner/Banner_nosotros.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:110px 0;
}

.hero-about::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.84) 45%, rgba(15,23,42,.58) 100%);
  z-index:1;
}

.hero-about .container{
  position:relative;
  z-index:2;
}

.hero-about h1{
  color:#fff;
  font-size:clamp(2.5rem,3vw,4.5rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
}

.hero-about p.lead{
  font-size:1.1rem;
  color:rgba(255,255,255,.85);
  max-width:650px;
  margin-bottom:28px;
}

.about-visual{
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

.about-panel{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.28);
  transform:rotateY(-6deg) rotateX(5deg);
  transition:.5s ease;
  position:relative;
  z-index:2;
}

.about-visual:hover .about-panel{
  transform:rotateY(0) rotateX(0);
}

.about-panel-top{
  padding:18px 22px;
  background:linear-gradient(135deg,#0f172a,#1d4ed8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.about-panel-top h6{
  margin:0;
  font-weight:700;
}

.about-panel-body{
  padding:22px;
}

.about-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:18px;
}

.about-metric-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 14px;
  transition:.3s;
}

.about-metric-card:hover{
  transform:translateY(-3px);
  border-color:rgba(13,110,253,.35);
}

.about-metric-card .label{
  font-size:.78rem;
  color:var(--muted);
  margin-bottom:6px;
}

.about-metric-card .value{
  font-size:1.05rem;
  font-weight:800;
  color:var(--secondary);
  line-height:1.2;
}

.about-info-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  margin-bottom:16px;
}

.about-info-box p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.about-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:.95rem;
}

.about-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.about-line .tag{
  padding:6px 10px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:700;
  font-size:.78rem;
  white-space:nowrap;
}

.about-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px 24px;
  height:100%;
  box-shadow:0 10px 30px rgba(15,23,42,.03);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.about-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),#8b5cf6);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
  z-index:-1;
}

.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(13,110,253,.10);
  border-color:rgba(13,110,253,.25);
}

.about-card:hover::before{
  transform:scaleX(1);
}

.about-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.6rem;
  margin-bottom:22px;
  transition:transform .3s ease;
}

.about-card:hover .about-icon{
  transform:scale(1.08) rotate(5deg);
}

.about-card h5{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:12px;
}

.about-card p{
  color:var(--muted);
  margin:0;
  line-height:1.7;
}

.about-values-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 50px rgba(15,23,42,.05);
  position:relative;
  z-index:2;
}

.about-values-preview{
  background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 100%);
  border-radius:26px;
  padding:30px;
  color:#fff;
  height:100%;
  position:relative;
  overflow:hidden;
}

.about-values-preview::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  right:-80px;
  bottom:-80px;
}

.about-values-preview::before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-30px;
  left:-30px;
}

.about-values-preview h3{
  font-weight:800;
  margin-bottom:18px;
  font-size:2rem;
}

.about-values-preview p{
  color:rgba(255,255,255,.86);
  font-size:1.04rem;
}

.reason-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.reason-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.reason-number{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#60a5fa);
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

.reason-card h5{
  font-weight:800;
  margin-bottom:10px;
  color:var(--secondary);
}

.reason-card p{
  color:var(--muted);
  margin:0;
  line-height:1.65;
}

/* RESPONSIVE NOSOTROS */
@media (max-width: 991.98px){
  .hero-about{
    padding:90px 0;
  }

  .about-panel{
    transform:none !important;
  }
}

@media (max-width: 767.98px){
  .about-metrics,
  .preview-stats{
    grid-template-columns:1fr;
  }

  .about-values-wrap{
    padding:26px 22px;
  }
}

/* =========================================================
   13. CONTACTO.HTML
   ========================================================= */

/* HERO CONTACTO */
.hero-contact{
  position:relative;
  overflow:hidden;
  background-image:url("../img/banner/Banner_contacto.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:110px 0;
}

.hero-contact::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.84) 45%, rgba(15,23,42,.58) 100%);
  z-index:1;
}

.hero-contact .container{
  position:relative;
  z-index:2;
}

.hero-contact h1{
  color:#fff;
  font-size:clamp(2.5rem,3vw,4.5rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
}

.hero-contact p.lead{
  font-size:1.1rem;
  color:rgba(255,255,255,.85);
  max-width:650px;
  margin-bottom:28px;
}

.contact-visual{
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

.contact-panel{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.28);
  transform:rotateY(-6deg) rotateX(5deg);
  transition:.5s ease;
  position:relative;
  z-index:2;
}

.contact-visual:hover .contact-panel{
  transform:rotateY(0) rotateX(0);
}

.contact-panel-top{
  padding:18px 22px;
  background:linear-gradient(135deg,#0f172a,#1d4ed8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.contact-panel-top h6{
  margin:0;
  font-weight:700;
}

.contact-panel-body{
  padding:22px;
}

.contact-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:18px;
}

.contact-metric-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 14px;
  transition:.3s;
}

.contact-metric-card:hover{
  transform:translateY(-3px);
  border-color:rgba(13,110,253,.35);
}

.contact-metric-card .label{
  font-size:.78rem;
  color:var(--muted);
  margin-bottom:6px;
}

.contact-metric-card .value{
  font-size:1.05rem;
  font-weight:800;
  color:var(--secondary);
  line-height:1.2;
}

.contact-info-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  margin-bottom:16px;
}

.contact-info-box p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.contact-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:.95rem;
}

.contact-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-line .tag{
  padding:6px 10px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:700;
  font-size:.78rem;
  white-space:nowrap;
}

.contact-info-wrapper{
  position:relative;
  z-index:2;
}

.contact-info-cards{
  display:grid;
  gap:18px;
}

.contact-card-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.contact-card-item:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
  border-color:rgba(13,110,253,.25);
}

.contact-card-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.4rem;
  flex-shrink:0;
}

.contact-card-item h6{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:6px;
}

.contact-card-item p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.contact-card-item p a{
  color:var(--muted);
}

.contact-card-item p a:hover{
  color:var(--primary);
}

.contact-form-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:30px;
  padding:34px;
  box-shadow:0 20px 50px rgba(15,23,42,.06);
  position:relative;
  z-index:2;
}

.form-box-head{
  margin-bottom:26px;
}

.form-box-head h3{
  font-size:2rem;
  font-weight:800;
  color:var(--secondary);
  margin-bottom:10px;
}

.form-box-head p{
  color:var(--muted);
  margin:0;
  line-height:1.7;
}

.contact-form-custom label{
  display:block;
  font-size:.95rem;
  font-weight:700;
  color:var(--secondary);
  margin-bottom:10px;
}

.contact-form-custom input,
.contact-form-custom select,
.contact-form-custom textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:16px;
  background:#f8fafc;
  padding:14px 16px;
  color:var(--text);
  outline:none;
  transition:.3s ease;
}

.contact-form-custom input,
.contact-form-custom select{
  height:56px;
}

.contact-form-custom textarea{
  resize:none;
  min-height:150px;
}

.contact-form-custom input:focus,
.contact-form-custom select:focus,
.contact-form-custom textarea:focus{
  border-color:rgba(13,110,253,.5);
  background:#fff;
  box-shadow:0 0 0 4px rgba(13,110,253,.08);
}

.contact-form-custom button{
  min-width:220px;
}

.contact-step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.contact-step-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.contact-step-number{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#60a5fa);
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

.contact-step-card h5{
  font-weight:800;
  margin-bottom:10px;
  color:var(--secondary);
}

.contact-step-card p{
  color:var(--muted);
  margin:0;
  line-height:1.65;
}

/* RESPONSIVE CONTACTO */
@media (max-width: 991.98px){
  .hero-contact{
    padding:90px 0;
  }

  .contact-panel{
    transform:none !important;
  }
}

@media (max-width: 767.98px){
  .contact-metrics{
    grid-template-columns:1fr;
  }

  .contact-form-box{
    padding:26px 22px;
  }

  .contact-form-custom button{
    width:100%;
  }
}

/* =========================================================
   14. INDEX.HTML
   ========================================================= */

/* HERO HOME */
.hero-home{
  position:relative;
  overflow:hidden;
  background-image:url("../img/banner/Banner_home.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  padding:110px 0;
}

.hero-home::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(15,23,42,.94) 0%, rgba(15,23,42,.84) 45%, rgba(15,23,42,.58) 100%);
  z-index:1;
}

.hero-home .container{
  position:relative;
  z-index:2;
}

.hero-home h1{
  color:#fff;
  font-size:clamp(2.5rem,3vw,4.5rem);
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
}

.hero-home p.lead{
  font-size:1.1rem;
  color:rgba(255,255,255,.85);
  max-width:650px;
  margin-bottom:28px;
}

.home-visual{
  position:relative;
  min-height:480px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1000px;
}

.home-panel{
  width:100%;
  max-width:520px;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(255,255,255,.14);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 40px 80px rgba(0,0,0,.28);
  transform:rotateY(-6deg) rotateX(5deg);
  transition:.5s ease;
  position:relative;
  z-index:2;
}

.home-visual:hover .home-panel{
  transform:rotateY(0) rotateX(0);
}

.home-panel-top{
  padding:18px 22px;
  background:linear-gradient(135deg,#0f172a,#1d4ed8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.home-panel-top h6{
  margin:0;
  font-weight:700;
}

.home-panel-body{
  padding:22px;
}

.home-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:18px;
}

.home-metric-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 14px;
  transition:.3s;
}

.home-metric-card:hover{
  transform:translateY(-3px);
  border-color:rgba(13,110,253,.35);
}

.home-metric-card .label{
  font-size:.78rem;
  color:var(--muted);
  margin-bottom:6px;
}

.home-metric-card .value{
  font-size:1.05rem;
  font-weight:800;
  color:var(--secondary);
  line-height:1.2;
}

.home-info-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:18px;
  margin-bottom:16px;
}

.home-info-box p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.home-line{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:.95rem;
}

.home-line:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.home-line .tag{
  padding:6px 10px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:700;
  font-size:.78rem;
  white-space:nowrap;
}

.home-service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px 24px;
  height:100%;
  box-shadow:0 10px 30px rgba(15,23,42,.03);
  transition:all .3s ease;
  position:relative;
  overflow:hidden;
  z-index:1;
}

.home-service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),#8b5cf6);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
  z-index:-1;
}

.home-service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(13,110,253,.10);
  border-color:rgba(13,110,253,.25);
}

.home-service-card:hover::before{
  transform:scaleX(1);
}

.home-service-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.6rem;
  margin-bottom:22px;
  transition:transform .3s ease;
}

.home-service-card:hover .home-service-icon{
  transform:scale(1.08) rotate(5deg);
}

.home-service-card h5{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:12px;
}

.home-service-card p{
  color:var(--muted);
  margin:0;
  line-height:1.7;
}

.home-about-wrap{
  background:#fff;
  border:1px solid var(--border);
  border-radius:28px;
  padding:30px;
  box-shadow:0 20px 50px rgba(15,23,42,.05);
  position:relative;
  z-index:2;
}

.home-about-preview{
  background:linear-gradient(135deg,#0f172a 0%, #1d4ed8 100%);
  border-radius:26px;
  padding:30px;
  color:#fff;
  height:100%;
  position:relative;
  overflow:hidden;
}

.home-about-preview::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  right:-80px;
  bottom:-80px;
}

.home-about-preview::before{
  content:"";
  position:absolute;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  top:-30px;
  left:-30px;
}

.home-about-preview h3{
  font-weight:800;
  margin-bottom:18px;
  font-size:2rem;
}

.home-about-preview p{
  color:rgba(255,255,255,.86);
  font-size:1.04rem;
}

.home-strength-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.home-strength-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
}

.home-strength-number{
  width:58px;
  height:58px;
  border-radius:50%;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--primary),#60a5fa);
  color:#fff;
  font-size:1.2rem;
  font-weight:800;
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

.home-strength-card h5{
  font-weight:800;
  margin-bottom:10px;
  color:var(--secondary);
}

.home-strength-card p{
  color:var(--muted);
  margin:0;
  line-height:1.65;
}

.home-link-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:30px 24px;
  height:100%;
  box-shadow:0 10px 25px rgba(15,23,42,.04);
  transition:.3s ease;
}

.home-link-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(15,23,42,.08);
  border-color:rgba(13,110,253,.25);
}

.home-link-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#eaf2ff,#dbeafe);
  color:var(--primary);
  font-size:1.5rem;
  margin-bottom:20px;
}

.home-link-card h5{
  font-weight:800;
  color:var(--secondary);
  margin-bottom:12px;
}

.home-link-card p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:16px;
}

.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--primary);
  transition:.3s ease;
}

.link-arrow:hover{
  gap:12px;
  color:var(--primary-dark);
}

/* RESPONSIVE HOME */
@media (max-width: 991.98px){
  .hero-home{
    padding:90px 0;
  }

  .home-panel{
    transform:none !important;
  }
}

@media (max-width: 767.98px){
  .home-metrics,
  .preview-stats{
    grid-template-columns:1fr;
  }

  .home-about-wrap{
    padding:26px 22px;
  }
}