@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*:not(i) {
  font-family: "Montserrat", sans-serif;
}

:root{
  --bg: #101517;             
  --card: #121a1c;           
  --ink: #e9eef2;            
  --muted: #9aa6b2;          
  --accent: #3DF781;         
  --accent-2:#1adb6e;        
  --stroke: rgba(255,255,255,.06);
}

html,body{
  background:var(--bg); 
  color:var(--ink); 
  font-weight:500;
}

a{
  color:inherit; 
  text-decoration:none
}

.brand {
  font-weight:700;
  letter-spacing:.3px;
  display:flex; align-items:center; gap:.6rem;
  font-size:1.7rem;
}

.brand-dots{
  display:inline-flex; 
  align-items:center; 
  gap:.35rem;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 10px var(--accent);
}

.dot.hollow{
  width:14px;
  height:14px;
  border:2px solid var(--accent); 
  background:transparent;
  box-shadow:none;
}

.navbar{
  --bs-navbar-padding-y: .9rem;
  border-bottom:1px solid var(--stroke);
  backdrop-filter:saturate(160%) blur(6px);
}

.nav-link{
  color:var(--ink);
  font-weight:600;
  opacity:.9;
}

.nav-link:hover{
  color:var(--accent);
}

.nav-link.active { 
  color:var(--accent); 
}

.nav-underline{
  position:relative;
  padding-bottom:.45rem;
}

.nav-underline.active:after{
  content:"";
  position:absolute; 
  left:0; 
  bottom:-.2rem; height:3px; 
  width:100%;
  background:var(--accent); 
  border-radius:3px;
}

.btn-pill{
  border-radius:999px; 
  padding:.7rem 1.25rem; 
  font-weight:700;
  box-shadow:0 8px 22px rgba(60,242,140,.18), inset 0 0 0 1px rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.08);
  transition:.18s ease-in-out;
}

.btn-ghost{
  background:transparent; 
  color:var(--ink); 
  border:1px solid var(--stroke);
}

.btn-ghost:hover{ 
  border-color:rgba(255,255,255,.18); 
  transform:translateY(-1px); 
}

.hero{
  position:relative;
  overflow:hidden;
}

.hero h1{
  font-size: clamp(2rem, 2.4rem + 2.5vw, 3.4rem);
  font-weight:800; line-height:1.1;
  letter-spacing:.2px;
}

.lead-muted{ 
  color:var(--muted); 
}

.phone-stack{
  position:relative;
  max-width: 640px;
  margin-left:auto;
}

.phone{
  width: 62%;
  border-radius: 36px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.phone.top{
  position:absolute; 
  right:0; 
  top:14%;
  width: 50%;
  transform: rotate(3deg);
}

.glow{
  position:absolute; 
  inset:auto auto -40% -25%;
  width: 540px; height: 540px;
  background: radial-gradient(closest-side, rgba(60,242,140,.14), rgba(60,242,140,0));
  filter: blur(14px);
  pointer-events:none;
}

.section{ 
  padding: clamp(2.5rem, 4vw, 4rem) 0; 
}

.badge-new{
  background: rgba(60,242,140,.13);
  color:var(--accent);
  border: 1px solid rgba(60,242,140,.35);
  border-radius:999px;
  padding:.3rem .7rem;
  font-weight:700;
  letter-spacing:.2px;
}

@media (max-width: 991.98px){
  .phone-stack{ margin: 2.5rem auto 0; }
  .phone{ width: 78%; }
  .phone.top{ width: 62%; right:10%; top:-6%; }
}

.fw-800{
  font-weight:800
}

.badge-new{
  background: rgba(60,242,140,.13);
  color:var(--accent);
  border: 1px solid rgba(60,242,140,.35);
  border-radius:999px;
  padding:.35rem .8rem;
  font-weight:700;
  letter-spacing:.2px;
}

.hiw-card{
  background:var(--card);
  border:1px solid var(--stroke);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transition: .18s ease-in-out;
  height:100%;
}

.hiw-card:hover{
  border-color: rgba(60,242,140,.35);
  box-shadow: 0 16px 42px rgba(0,0,0,.5), 0 0 0 1px rgba(60,242,140,.15) inset;
  transform: translateY(-2px);
}

.icon-wrap{
  display:inline-flex;
  align-items:center;
  justify-content:center
}

.icon-lg{
  width: 44px; 
  height: 44px; 
  color: var(--accent);
  filter: drop-shadow(0 0 14px rgba(60,242,140,.25));
}

.lead-muted{
  color:var(--muted)
}

.fw-700{
  font-weight:700
}

.fw-800{
  font-weight:800
}

.lead-muted{
  color:var(--muted)
}

.cta-compact{
  background:#0f1416;
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
  color:var(--ink);
}

.brand-name{
  font-size:2rem;
  line-height:1;
  letter-spacing:.5px;
  color:#e7f7ee;
}

.brand-glyph{
  display:inline-flex; gap:6px;
}

.brand-glyph i{
  width:14px;
  height:14px;
  border-radius:3px;
  background:var(--accent);
  box-shadow:0 0 12px rgba(60,242,140,.55);
}

.btn-accent{
  background:var(--accent);
  color:#0b1213;
  border:none;
  box-shadow:0 10px 26px rgba(60,242,140,.25);
}

.btn-accent:hover{
  background:var(--accent-2);
  color:#051012;
}

.form-control,.form-select{
  background:var(--card);border:1px solid var(--line);color:var(--ink);
  border-radius:14px;padding:.85rem 1rem;
}
.form-control:focus,.form-select:focus{
  border-color:var(--accent);box-shadow:0 0 0 .2rem rgba(34,210,127,.15)
}
textarea.form-control{min-height:160px;resize:vertical}
.hr-soft{border:0;height:1px;background:var(--line)}
.text-muted{color:var(--muted)!important}
.mini-kpis .kpi{
  background:var(--card);border:1px solid var(--line);border-radius:14px; padding:1rem .9rem
}

.bg-dark-900 { background: var(--footer-bg); color: var(--footer-ink); }

.site-footer .nav-link {
  color: var(--footer-ink);
  opacity: .9;
  font-weight: 500;
}
.site-footer .nav-link:hover {
  opacity: 1;
  text-decoration: none;
}
.site-footer .nav-link.active {
  color: var(--footer-active);
  opacity: 1;
}

.footer-hr {
  border: 0.5;
  background: var(--footer-hr);
}

.site-footer .text-muted { color: var(--footer-muted) !important; }
.site-footer a { color: var(--footer-ink); }
.site-footer a:hover { color: #fff; }