/*
===============================================================================
  Bytech Corporation

  Estilo corporativo de Bytech Corporation
  Max-width      : 1280px content frame, edge-to-edge backgrounds
  Layout         : Responsive grid breakpoints at 900px and 600px
================================================================================
*/

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0F1319;
  --bg2:#141920;
  --bg3:#1A2130;
  --bg4:#1E2838;
  --sky:#4A9EE8;
  --sky2:#7EC8F0;
  --sky3:#2A6AAA;
  --sky4:#0D2A44;
  --text:#E4EEF8;
  --text2:#8AAEC8;
  --text3:#506070;
  --border:#1E3050;
  --border2:#2A4060;
  --green:#3DCC8E;
  --red:#E85A5A;
  --nav-h:68px;
  --silk:cubic-bezier(0.16,1,0.3,1);
  --silk-fast:cubic-bezier(0.25,1,0.4,1);
  --max-w:1280px;
}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'DM Sans',sans-serif;
  font-size:16px;
  line-height:1.6;
  overflow-x:hidden;
}

/* TICKER */
.ticker{
  background:var(--bg2);
  border-bottom:1px solid var(--border);
  height:36px;
  overflow:hidden;
  display:flex;
  align-items:center;
  width:100%;
  max-width:100%;
}
.ticker:hover .ticker-track{animation-play-state:paused}
.ticker-track{
  display:flex;
  gap:0;
  animation:ticker-scroll 30s linear infinite;
  white-space:nowrap;
  will-change:transform;
  flex-shrink:0;
}
.ticker-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 28px;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  border-right:1px solid var(--border);
}
.ticker-sym{color:var(--text2)}
.ticker-price{color:var(--text)}
.ticker-up{color:var(--green)}
.ticker-dn{color:var(--red)}
@keyframes ticker-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes silk-in{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes silk-in-left{from{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}
@keyframes silk-in-right{from{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}
.silk-reveal{opacity:0}
.silk-reveal.visible{animation:silk-in .9s var(--silk) forwards}
.silk-reveal-left{opacity:0}
.silk-reveal-left.visible{animation:silk-in-left .9s var(--silk) forwards}
.silk-reveal-right{opacity:0}
.silk-reveal-right.visible{animation:silk-in-right .9s var(--silk) forwards}

/* NAV */
nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  height:var(--nav-h);
  display:flex;
  align-items:center;
  padding:0 max(48px, calc((100vw - var(--max-w)) / 2));
  border-bottom:1px solid transparent;
  transition:background .6s var(--silk),border-color .6s var(--silk);
}
nav > *{position:relative}
nav.scrolled{background:rgba(15,19,25,.95);backdrop-filter:blur(20px);border-color:var(--border)}
.nav-logo{
  font-family:'Outfit',sans-serif;
  font-size:22px;
  font-weight:800;
  color:var(--text);
  letter-spacing:-.02em;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
}
.nav-logo-mark{
  width:30px;height:30px;
  background:var(--sky);
  border-radius:8px;
  display:flex;align-items:center;justify-content:center;
}
.nav-logo-mark svg{width:16px;height:16px;fill:none;stroke:#fff;stroke-width:2.5;stroke-linecap:round}
.nav-logo-img{height:32px;width:auto;display:block}
.nav-links{
  display:flex;
  align-items:center;
  gap:2px;
  margin-left:auto;
}
.nav-links a{
  color:var(--text2);
  text-decoration:none;
  font-size:14px;
  font-weight:400;
  padding:6px 14px;
  border-radius:6px;
  transition:color .4s var(--silk),background .4s var(--silk);
  letter-spacing:.01em;
}
.nav-links a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.nav-cta{
  margin-left:12px;
  display:flex;
  align-items:center;
  gap:8px;
}
.btn-ghost{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text2);
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  font-weight:500;
  padding:8px 18px;
  border-radius:8px;
  cursor:pointer;
  transition:border-color .5s var(--silk),color .5s var(--silk);
  text-decoration:none;
}
.btn-ghost:hover{border-color:var(--sky);color:var(--sky)}
.btn-primary{
  background:var(--sky);
  border:1px solid var(--sky);
  color:#0A1A2C;
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  font-weight:600;
  padding:8px 20px;
  border-radius:8px;
  cursor:pointer;
  transition:background .5s var(--silk),transform .4s var(--silk);
  text-decoration:none;
}
.btn-primary:hover{background:var(--sky2);transform:translateY(-1px)}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  margin-left:auto;
  padding:4px;
  background:none;
  border:none;
}
.hamburger span{
  display:block;width:22px;height:2px;
  background:var(--text2);
  border-radius:2px;
  transition:all .3s;
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* MOBILE MENU */
.mobile-menu{
  display:none;
  position:fixed;
  top:0;left:0;right:0;bottom:0;
  background:var(--bg);
  z-index:99;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:4px;
  padding:100px 24px 60px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s;
}
.mobile-menu.open{opacity:1;pointer-events:all}
.mobile-menu a{
  font-family:'Outfit',sans-serif;
  font-size:20px;
  font-weight:600;
  color:var(--text2);
  text-decoration:none;
  padding:8px 0;
  transition:color .2s;
  flex-shrink:0;
}
.mobile-menu a:hover{color:var(--sky)}
.mobile-menu .m-btns{
  display:flex;flex-direction:column;gap:10px;width:100%;max-width:260px;margin-top:20px;
  flex-shrink:0;
}
.mobile-menu .btn-primary,.mobile-menu .btn-ghost{
  width:100%;text-align:center;padding:12px;font-size:14px;
}

/* HERO */
.hero{
  min-height:auto;
  padding-top:calc(var(--nav-h) + 5px);
  padding-bottom:20px;
  padding-left:max(48px, calc((100vw - var(--max-w)) / 2));
  padding-right:max(48px, calc((100vw - var(--max-w)) / 2));
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:60px;
  row-gap:0;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:0;left:0;
  width:100%;height:100%;
  background-image:
    repeating-linear-gradient(45deg,transparent 0,transparent 119px,rgba(74,158,232,.35) 119px,rgba(74,158,232,.35) 120px),
    repeating-linear-gradient(-45deg,transparent 0,transparent 119px,rgba(74,158,232,.35) 119px,rgba(74,158,232,.35) 120px);
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 0% 0%,#000 0%,transparent 70%);
  mask-image:radial-gradient(ellipse 100% 100% at 0% 0%,#000 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.hero::after{
  content:'';
  position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(74,158,232,.08) 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.hero > *{position:relative;z-index:1}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(74,158,232,.1);
  border:1px solid rgba(74,158,232,.25);
  color:var(--sky);
  font-size:12px;
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:24px;
}
.badge-dot{width:6px;height:6px;background:var(--sky);border-radius:50%;animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero h1{
  font-family:'Outfit',sans-serif;
  font-size:clamp(30px,3.8vw,50px);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--text);
  margin-bottom:20px;
}
.hero h1 span{color:var(--sky)}
.hero-sub{
  font-size:17px;
  color:var(--text2);
  line-height:1.7;
  max-width:460px;
  margin-bottom:36px;
  font-weight:300;
}
.hero-btns{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:48px;
}
.btn-hero{
  background:var(--sky);
  border:none;
  color:#0A1A2C;
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  font-weight:600;
  padding:14px 28px;
  border-radius:10px;
  cursor:pointer;
  transition:background .6s var(--silk),transform .6s var(--silk),box-shadow .6s var(--silk);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn-hero:hover{background:var(--sky2);transform:translateY(-2px);box-shadow:0 12px 32px rgba(74,158,232,.25)}
.btn-hero svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .5s var(--silk)}
.btn-hero:hover svg{transform:translateX(3px)}
.btn-outline{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text);
  font-family:'DM Sans',sans-serif;
  font-size:15px;
  font-weight:400;
  padding:14px 28px;
  border-radius:10px;
  cursor:pointer;
  transition:border-color .5s var(--silk),color .5s var(--silk);
  text-decoration:none;
}
.btn-outline:hover{border-color:var(--sky);color:var(--sky)}
.hero-stats-title{
  font-family:'DM Sans',sans-serif;
  font-size:13px;
  font-weight:500;
  color:var(--text2);
}

/* HERO DASHBOARD MOCKUP */
.hero-visual{
  position:relative;
}
.dash-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  position:relative;
}
.dash-topbar{
  background:var(--bg3);
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--border);
}
.dash-dots{display:flex;gap:6px}
.dash-dots span{width:10px;height:10px;border-radius:50%}
.dash-title-bar{font-size:12px;color:var(--text3);font-weight:500;letter-spacing:.04em}
.dash-body{padding:20px}
.dash-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px}
.dash-stat{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 14px;
}
.dash-stat-label{font-size:10px;color:var(--text3);letter-spacing:.05em;text-transform:uppercase;margin-bottom:6px}
.dash-stat-val{font-family:'Outfit',sans-serif;font-size:18px;font-weight:700;color:var(--text)}
.dash-stat-change{font-size:10px;margin-top:2px}
.chart-wrap{
  background:var(--bg3);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px;
  margin-bottom:12px;
}
.chart-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.chart-head-title{font-size:12px;font-weight:500;color:var(--text2)}
.chart-badge{font-size:10px;background:rgba(61,204,142,.12);color:var(--green);border:1px solid rgba(61,204,142,.2);padding:2px 8px;border-radius:10px}
.tx-list{display:flex;flex-direction:column;gap:6px}
.tx-item{
  display:flex;align-items:center;gap:10px;
  background:var(--bg3);border:1px solid var(--border);
  border-radius:8px;padding:8px 12px;
}
.tx-icon{
  width:28px;height:28px;border-radius:7px;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;
  flex-shrink:0;
}
.tx-info{flex:1}
.tx-name{font-size:12px;font-weight:500;color:var(--text)}
.tx-date{font-size:10px;color:var(--text3)}
.tx-amount{font-size:13px;font-weight:600}

/* FLOAT BADGES */
.float-badge{
  position:absolute;
  background:var(--bg2);
  border:1px solid var(--border2);
  border-radius:12px;
  padding:10px 16px;
  display:flex;align-items:center;gap:10px;
  animation:float 3s ease-in-out infinite;
  z-index:2;
}
.float-badge:nth-child(2){animation-delay:1.5s}
.float-badge-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px}
.float-badge-info .val{font-family:'Outfit',sans-serif;font-size:14px;font-weight:700;color:var(--text)}
.float-badge-info .lbl{font-size:10px;color:var(--text3)}
.fb-left{left:-60px;top:30%}
.fb-right{right:-50px;bottom:25%}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}

/* LOGOS / PORTFOLIO */
.logos-section{
  padding:42px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  overflow:hidden;
  background:var(--bg);
}
.logos-label{
  text-align:center;
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sky);
  margin-bottom:24px;
  padding:0 max(48px, calc((100vw - var(--max-w)) / 2));
}
.logos-track-wrap{overflow:hidden;position:relative;width:100%}
.logos-track-wrap::before,.logos-track-wrap::after{
  content:'';
  position:absolute;top:0;bottom:0;width:120px;z-index:2;
  pointer-events:none;
}
.logos-track-wrap::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.logos-track-wrap::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.logos-track{
  display:flex;align-items:center;gap:48px;
  animation:ticker-scroll 30s linear infinite;
  width:max-content;
  will-change:transform;
  flex-shrink:0;
}
.logos-track:hover{animation-play-state:paused}
.logo-item{
  height:40px;
  width:auto;
  flex-shrink:0;
  opacity:.5;
  filter:grayscale(100%);
  transition:opacity .3s,filter .3s;
}
.logos-track:hover .logo-item{opacity:.8;filter:grayscale(0)}

/* STATS */
.stats-section{
  grid-column:1/-1;
  padding:12px 0 0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:10px;
}
.stat-block{margin:0}
.stat-block{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:28px 24px;
  position:relative;
  overflow:hidden;
  transition:border-color .6s var(--silk),transform .6s var(--silk),background .6s var(--silk);
}
.stat-block:hover{border-color:var(--border2);transform:translateY(-3px);background:var(--bg3)}
.stat-icon{
  width:38px;height:38px;
  background:rgba(74,158,232,.1);
  border:1px solid rgba(74,158,232,.15);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
  position:relative;
  transition:transform .6s var(--silk);
}
.stat-block:hover .stat-icon{transform:scale(1.08) rotate(-4deg)}
.stat-icon::before,.stat-icon::after{
  content:'';
  position:absolute;
  inset:-1px;
  border-radius:10px;
  border:1px solid var(--sky);
  opacity:0;
  pointer-events:none;
}
.stat-block:hover .stat-icon::before{
  animation:ring-pulse 1.4s var(--silk) infinite;
}
.stat-block:hover .stat-icon::after{
  animation:ring-pulse 1.4s var(--silk) infinite;
  animation-delay:.7s;
}
@keyframes ring-pulse{
  0%{opacity:.7;transform:scale(1)}
  100%{opacity:0;transform:scale(1.7)}
}
.stat-icon svg{width:18px;height:18px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.stat-num{
  font-family:'Outfit',sans-serif;
  font-size:clamp(28px,3vw,42px);
  font-weight:800;
  color:var(--text);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:6px;
}
.stat-label{font-size:13px;color:var(--text3);font-weight:400;margin-bottom:14px}
.stat-bar-wrap{background:var(--bg3);border-radius:4px;height:4px;margin-bottom:8px}
.stat-bar{height:100%;border-radius:4px;background:var(--sky);transition:width 1.2s ease}
.stat-trend{
  display:flex;align-items:center;gap:5px;
  font-size:11px;font-weight:600;
}
.stat-trend svg{width:12px;height:12px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* SECTION HEADERS */
.section-tag{
  display:inline-block;
  font-size:11px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sky);
  margin-bottom:16px;
}
.section-title{
  font-family:'Outfit',sans-serif;
  font-size:clamp(32px,4vw,48px);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.1;
  margin-bottom:16px;
}
.section-sub{font-size:16px;color:var(--text2);font-weight:300;line-height:1.7}

/* SERVICES CARDS */
.services-cards{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.services-header{
  text-align:center;
  max-width:600px;
  margin:0 auto 60px;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1000px;
  margin:0 auto;
}
.service-card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:16px;
  padding:40px 28px;
  text-align:center;
  transition:border-color .4s,transform .4s,box-shadow .4s;
  position:relative;
  overflow:hidden;
}
.service-card:hover{
  border-color:var(--border2);
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.15);
}
.service-card .sc-icon{
  width:56px;height:56px;
  background:rgba(74,158,232,.1);
  border:1px solid rgba(74,158,232,.2);
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  transition:background .3s,border-color .3s;
}
.service-card:hover .sc-icon{
  background:rgba(74,158,232,.18);
  border-color:rgba(74,158,232,.35);
}
.service-card .sc-icon svg{
  width:24px;height:24px;
  fill:none;stroke:var(--sky);
  stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;
}
.service-card h3{
  font-family:'Outfit',sans-serif;
  font-size:17px;
  font-weight:700;
  margin-bottom:12px;
  color:var(--text);
}
.service-card p{
  font-size:14px;
  color:var(--text2);
  line-height:1.65;
  font-weight:300;
}

/* DASHBOARD PREVIEW */
.dashboard-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.dashboard-inner{max-width:900px;margin:0 auto}
.dashboard-preview{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  margin-top:48px;
}
.dp-topbar{
  background:var(--bg2);
  padding:16px 24px;
  display:flex;align-items:center;justify-content:space-between;
  border-bottom:1px solid var(--border);
}
.dp-title{font-family:'Outfit',sans-serif;font-size:14px;font-weight:700;color:var(--text)}
.dp-live{
  display:flex;align-items:center;gap:6px;
  font-size:11px;color:var(--green);font-weight:500;
}
.dp-live-dot{width:6px;height:6px;background:var(--green);border-radius:50%;animation:pulse 1.5s infinite}
.dp-body{padding:24px;display:grid;grid-template-columns:2fr 1fr;gap:20px}
.dp-chart-area{
  background:var(--bg2);border:1px solid var(--border);
  border-radius:12px;padding:20px;
}
.dp-chart-head{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:16px}
.dp-chart-val{font-family:'Outfit',sans-serif;font-size:28px;font-weight:800;color:var(--text)}
.dp-chart-change{font-size:12px;color:var(--green);margin-top:4px}
.dp-chart-period{display:flex;gap:4px}
.dp-period-btn{
  font-size:11px;padding:4px 10px;border-radius:5px;
  background:transparent;border:1px solid var(--border);
  color:var(--text3);cursor:pointer;font-family:'DM Sans',sans-serif;
  transition:all .2s;
}
.dp-period-btn.active{background:var(--sky4);border-color:var(--sky3);color:var(--sky)}
.dp-side{display:flex;flex-direction:column;gap:12px}
.dp-side-card{
  background:var(--bg2);border:1px solid var(--border);
  border-radius:12px;padding:16px;
}
.dp-side-label{font-size:10px;color:var(--text3);text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px}
.dp-side-val{font-family:'Outfit',sans-serif;font-size:22px;font-weight:700;color:var(--text)}
.dp-side-change{font-size:11px;margin-top:4px}
.dp-allocations{margin-top:12px;display:flex;flex-direction:column;gap:8px}
.dp-alloc-row{display:flex;align-items:center;gap:10px}
.dp-alloc-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}
.dp-alloc-name{font-size:12px;color:var(--text2);flex:1}
.dp-alloc-pct{font-size:12px;font-weight:500;color:var(--text)}
.dp-alloc-bar-wrap{flex:1;background:var(--bg3);border-radius:3px;height:4px}
.dp-alloc-bar{height:100%;border-radius:3px}

/* PRICING */
.services-pricing{padding-top:80px;text-align:center}
.pricing-section{padding:100px max(48px, calc((100vw - var(--max-w)) / 2))}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:960px;
  margin:20px auto 0;
}
.price-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px 28px;
  position:relative;
  transition:border-color .6s var(--silk),transform .6s var(--silk),box-shadow .6s var(--silk);
}
.price-card:hover{border-color:var(--border2);transform:translateY(-4px);box-shadow:0 20px 48px rgba(0,0,0,.3)}
.price-card.featured{border-color:var(--sky3);background:var(--bg3)}
.featured-badge{
  position:absolute;top:-12px;left:50%;transform:translateX(-50%);
  background:var(--sky);
  color:#0A1A2C;
  font-size:11px;font-weight:700;
  padding:4px 16px;border-radius:20px;
  white-space:nowrap;letter-spacing:.04em;
}
.price-plan{font-size:12px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text2);margin-bottom:16px}
.price-amount{
  font-family:'Outfit',sans-serif;
  font-size:42px;font-weight:800;
  color:var(--text);
  letter-spacing:-.03em;
  line-height:1;
  margin-bottom:4px;
}
.price-amount sup{font-size:20px;vertical-align:top;margin-top:8px;display:inline-block}
.price-period{font-size:13px;color:var(--text3);margin-bottom:24px}
.price-features{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.price-features li{
  display:flex;align-items:center;gap:10px;
  font-size:14px;color:var(--text2);
}
.price-features li svg{width:16px;height:16px;fill:none;stroke:var(--green);stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.price-btn{
  display:block;text-align:center;text-decoration:none;
  box-sizing:border-box;
  width:100%;
  padding:12px;border-radius:10px;
  font-family:'DM Sans',sans-serif;
  font-size:14px;font-weight:600;
  cursor:pointer;transition:all .2s;border:none;
}
.price-btn-ghost{
  background:transparent;
  border:1px solid var(--border2);
  color:var(--text);
}
.price-btn-ghost:hover{border-color:var(--sky);color:var(--sky)}
.price-btn-primary{background:var(--sky);color:#0A1A2C}
.price-btn-primary:hover{background:var(--sky2)}

/* SECURITY */
.security-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
}
.security-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
}
.security-badges{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sec-badge{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:14px;
  padding:20px;
  display:flex;flex-direction:column;gap:8px;
  transition:border-color .6s var(--silk),transform .6s var(--silk);
}
.sec-badge:hover{border-color:var(--border2);transform:translateY(-2px)}
.sec-badge-icon{
  width:40px;height:40px;
  background:rgba(74,158,232,.1);
  border:1px solid rgba(74,158,232,.2);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.sec-badge-icon svg{width:20px;height:20px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.sec-badge-name{font-size:14px;font-weight:600;color:var(--text)}
.sec-badge-desc{font-size:12px;color:var(--text3);line-height:1.5}
.sec-badge-status{
  display:inline-flex;align-items:center;gap:5px;
  font-size:11px;color:var(--green);font-weight:500;margin-top:4px;
}
.sec-badge-status::before{content:'';width:5px;height:5px;background:var(--green);border-radius:50%}

/* TESTIMONIALS */
.testimonials-section{padding:100px max(48px, calc((100vw - var(--max-w)) / 2))}
.testi-track-wrap{overflow:hidden;margin-top:48px;position:relative;max-width:100%;width:100%}
.testi-track-wrap::before,.testi-track-wrap::after{
  content:'';position:absolute;top:0;bottom:0;width:80px;z-index:2;pointer-events:none;
}
.testi-track-wrap::before{left:0;background:linear-gradient(to right,var(--bg),transparent)}
.testi-track-wrap::after{right:0;background:linear-gradient(to left,var(--bg),transparent)}
.testi-track{
  display:flex;gap:16px;
  animation:ticker-scroll 28s linear infinite;
  width:max-content;
  will-change:transform;
  flex-shrink:0;
}
.testi-card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:16px;
  padding:24px;
  width:320px;
  flex-shrink:0;
}
.testi-stars{display:flex;gap:3px;margin-bottom:14px}
.testi-stars svg{width:14px;height:14px;fill:var(--sky);stroke:none}
.testi-quote{font-size:14px;color:var(--text2);line-height:1.65;margin-bottom:16px;font-style:italic}
.testi-author{display:flex;align-items:center;gap:10px}
.testi-avatar{
  width:36px;height:36px;border-radius:50%;
  background:var(--bg3);border:1px solid var(--border2);
  display:flex;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;color:var(--sky);
}
.testi-name{font-size:13px;font-weight:600;color:var(--text)}
.testi-role{font-size:11px;color:var(--text3)}

/* CONTACT */
.contact-section{
  padding:100px max(48px, calc((100vw - var(--max-w)) / 2));
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  position:relative;
  overflow:hidden;
}
.contact-section::before{
  content:'';
  position:absolute;
  bottom:0;right:0;
  width:100%;height:100%;
  background-image:
    repeating-linear-gradient(45deg,transparent 0,transparent 119px,rgba(74,158,232,.35) 119px,rgba(74,158,232,.35) 120px),
    repeating-linear-gradient(-45deg,transparent 0,transparent 119px,rgba(74,158,232,.35) 119px,rgba(74,158,232,.35) 120px);
  -webkit-mask-image:radial-gradient(ellipse 100% 100% at 100% 100%,#000 0%,transparent 70%);
  mask-image:radial-gradient(ellipse 100% 100% at 100% 100%,#000 0%,transparent 70%);
  pointer-events:none;
  z-index:0;
}
.contact-section > *{position:relative;z-index:1}
.contact-inner{
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:start;max-width:1000px;margin:0 auto;
}
.contact-details{margin-top:32px;display:flex;flex-direction:column;gap:20px}
.contact-detail{display:flex;align-items:center;gap:14px}
.cd-icon{
  width:44px;height:44px;flex-shrink:0;
  background:var(--bg3);border:1px solid var(--border2);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.cd-icon svg{width:20px;height:20px;fill:none;stroke:var(--sky);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.cd-label{font-size:11px;color:var(--text3);font-weight:400;text-transform:uppercase;letter-spacing:.04em}
.cd-value{font-size:14px;font-weight:500;color:var(--text);font-family:'Outfit',sans-serif;margin-top:1px}
.contact-form{
  background:var(--bg3);border:1px solid var(--border2);
  border-radius:16px;padding:10px;
  display:flex;flex-direction:column;gap:5px;
}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:5px}
.contact-form input,.contact-form textarea{
  background:var(--bg);border:1px solid var(--border);
  border-radius:10px;padding:14px 14px;
  font-family:'DM Sans',sans-serif;font-size:13px;color:var(--text);
  outline:none;transition:border-color .3s var(--silk);
  width:100%;box-sizing:border-box;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:var(--text3)}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--sky)}
.contact-form textarea{resize:vertical;min-height:220px}
.cf-btn{
  background:var(--sky);color:#fff;border:none;
  border-radius:12px;padding:16px 32px;
  font-family:'Outfit',sans-serif;font-size:16px;font-weight:600;
  cursor:pointer;transition:background .3s var(--silk),transform .2s;
}
.cf-btn:hover{background:var(--sky2);transform:translateY(-1px)}
.cf-btn:active{transform:translateY(0)}

/* FOOTER */
footer{
  padding:40px max(48px, calc((100vw - var(--max-w)) / 2)) 28px;
  border-top:1px solid var(--border);
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-bottom:28px;
  align-items:start;
}
.footer-brand{max-width:300px}
.footer-logo{
  font-family:'Outfit',sans-serif;
  font-size:20px;font-weight:800;
  color:var(--text);margin-bottom:10px;
  display:flex;align-items:center;gap:8px;
}
.footer-desc{font-size:13px;color:var(--text3);line-height:1.6;margin-bottom:14px}
.footer-newsletter{display:flex;gap:8px}
.footer-input{
  flex:1;background:var(--bg2);
  border:1px solid var(--border);
  border-radius:8px;padding:10px 14px;
  color:var(--text);font-family:'DM Sans',sans-serif;
  font-size:13px;outline:none;
}
.footer-input::placeholder{color:var(--text3)}
.footer-input:focus{border-color:var(--sky)}
.footer-sub-btn{
  background:var(--sky);border:none;
  color:#0A1A2C;font-family:'DM Sans',sans-serif;
  font-size:13px;font-weight:600;
  padding:10px 16px;border-radius:8px;cursor:pointer;
  white-space:nowrap;transition:background .2s;
}
.footer-sub-btn:hover{background:var(--sky2)}
.footer-col-title{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text2);margin-bottom:16px}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{font-size:14px;color:var(--text3);text-decoration:none;transition:color .2s}
.footer-links a:hover{color:var(--sky)}
.footer-bottom{
  border-top:1px solid var(--border);
  padding-top:20px;
  display:flex;align-items:center;justify-content:space-between;
}
.footer-copy{font-size:13px;color:var(--text3)}
.footer-link{
  font-size:13px;color:var(--text3);text-decoration:none;
  transition:color .4s var(--silk);
}
.footer-link:hover{color:var(--sky)}
.footer-socials{display:flex;gap:8px}
.social-btn{
  width:34px;height:34px;border-radius:8px;
  background:var(--bg2);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;transition:border-color .2s;
}
.social-btn:hover{border-color:var(--sky)}
.social-btn svg{width:16px;height:16px;fill:none;stroke:var(--text3);stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

/* LIGHTBOX */
.lightbox{
  position:fixed;inset:0;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(12px);
  z-index:200;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .3s var(--silk);
}
.lightbox.open{opacity:1;pointer-events:all}
.lightbox-img{
  max-width:80vw;max-height:70vh;
  object-fit:contain;
  background:#fff;
  padding:32px 48px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.4);
  transform:scale(.9);transition:transform .3s var(--silk);
}
.lightbox.open .lightbox-img{transform:scale(1)}
.lightbox-close{
  position:absolute;top:24px;right:24px;
  background:rgba(255,255,255,.08);border:none;
  color:var(--text);font-size:28px;
  width:44px;height:44px;border-radius:10px;
  cursor:pointer;transition:background .2s;
  display:flex;align-items:center;justify-content:center;
}
.lightbox-close:hover{background:rgba(255,255,255,.15)}

/* RESPONSIVE */
@media(max-width:900px){
  nav{padding:0 24px}
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .mobile-menu{display:flex}
  .hero{grid-template-columns:1fr;padding:calc(36px + var(--nav-h) + 40px) 24px 60px;gap:40px}
  .fb-left,.fb-right{display:none}
  .stats-section{grid-template-columns:1fr 1fr}
  .services-cards,.services-pricing,.pricing-section,.testimonials-section,.dashboard-section,.logos-section,.security-section,.stats-section,.contact-section{padding:60px 24px}
  footer{padding-left:24px !important;padding-right:24px !important}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:1fr}
  .security-inner{grid-template-columns:1fr;gap:40px}
  .contact-inner{grid-template-columns:1fr;gap:40px}
  .cf-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:16px;text-align:center}
  .dp-body{grid-template-columns:1fr}
}
@media(max-width:600px){
  .stats-section{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
  .pricing-grid{gap:12px}
}
