/* ==========================================================================
   NEXORA DIGITAL — Core Design System
   Fonts: Poppins (display) / Inter (body) / JetBrains Mono (code-native accents)
   ========================================================================== */

:root{
  --ink:#0F172A;
  --blue:#2563EB;
  --cyan:#06B6D4;
  --success:#10B981;
  --light:#F8FAFC;
  --deep:#020617;

  --grad: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.12));
  --grad-radial: radial-gradient(circle at 20% 20%, rgba(37,99,235,.25), transparent 45%),
                 radial-gradient(circle at 80% 60%, rgba(6,182,212,.20), transparent 45%);

  --surface: #ffffff;
  --surface-2: #F1F5F9;
  --text: #0F172A;
  --text-muted: #51607A;
  --border: rgba(15,23,42,.08);
  --glass-bg: rgba(255,255,255,.6);
  --glass-border: rgba(255,255,255,.5);
  --shadow-sm: 0 2px 10px rgba(15,23,42,.06);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08);
  --shadow-lg: 0 25px 60px rgba(15,23,42,.14);
  --shadow-glow: 0 0 0 1px rgba(37,99,235,.15), 0 15px 40px rgba(37,99,235,.20);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-h: 84px;
  --ease: cubic-bezier(.22,1,.36,1);
}

[data-theme="dark"]{
  --surface: #0B1220;
  --surface-2: #0F172A;
  --text: #E9EEF6;
  --text-muted: #93A1B8;
  --border: rgba(255,255,255,.08);
  --glass-bg: rgba(15,23,42,.55);
  --glass-border: rgba(255,255,255,.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.35);
  --shadow-md: 0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 25px 70px rgba(0,0,0,.55);
  background: var(--deep);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  overflow-x: hidden;
  transition: background .35s var(--ease), color .35s var(--ease);
}
[data-theme="dark"] body{ background: var(--deep); }

h1,h2,h3,h4,h5,h6{ font-family: var(--font-display); font-weight:700; color:var(--text); letter-spacing:-.02em; margin:0; }
p{ color: var(--text-muted); line-height:1.75; margin:0; }
a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
::selection{ background: var(--cyan); color:#fff; }

:focus-visible{ outline: 2px solid var(--cyan); outline-offset:3px; border-radius:4px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

.container{ max-width:1280px; }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family: var(--font-mono);
  font-size:.8rem; font-weight:500;
  color: var(--blue);
  background: var(--grad-soft);
  border:1px solid rgba(37,99,235,.18);
  padding:.4rem .9rem; border-radius: var(--radius-pill);
  letter-spacing:.02em;
  margin-bottom:1.25rem;
}
.eyebrow::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--cyan); box-shadow:0 0 0 3px rgba(6,182,212,.25); }
[data-theme="dark"] .eyebrow{ color:#7DD3FC; }

.section{ padding: 6.5rem 0; position:relative; }
.section-sm{ padding: 4rem 0; }
@media (max-width:991px){ .section{ padding:4.5rem 0; } }

.section-title{ font-size: clamp(1.9rem, 3.2vw, 2.75rem); line-height:1.15; margin-bottom:1rem; }
.section-sub{ max-width:640px; font-size:1.05rem; }
.text-grad{
  background: var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Buttons ---------- */
.btn{ font-family:var(--font-body); font-weight:600; border-radius: var(--radius-pill); padding:.85rem 1.75rem; border:none; transition: all .35s var(--ease); position:relative; }
.btn-grad{
  background: var(--grad); color:#fff !important; box-shadow: 0 10px 25px rgba(37,99,235,.35);
}
.btn-grad:hover{ transform: translateY(-3px); box-shadow: 0 18px 35px rgba(6,182,212,.45); color:#fff; }
.btn-outline-grad{
  background: transparent; color: var(--text) !important; border:1.5px solid var(--border);
}
.btn-outline-grad:hover{ border-color: var(--cyan); box-shadow: var(--shadow-glow); transform: translateY(-3px); }
.btn-sm-pill{ padding:.55rem 1.25rem; font-size:.9rem; }
.btn-icon-circle{
  width:48px; height:48px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
  border:1.5px solid var(--border); transition:.3s var(--ease); color:var(--text);
}
.btn-icon-circle:hover{ background:var(--grad); color:#fff; border-color:transparent; transform:translateY(-3px) rotate(8deg); }

/* ---------- Glass card & gradient border ---------- */
.glass{
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border:1px solid var(--glass-border);
  border-radius: var(--radius-md);
}
.grad-border{
  position:relative; border-radius: var(--radius-md); background: var(--surface);
  border:1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.grad-border::before{
  content:''; position:absolute; inset:-1px; border-radius: inherit; padding:1px;
  background: var(--grad); opacity:0; transition:opacity .4s var(--ease);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none;
}
.grad-border:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.grad-border:hover::before{ opacity:1; }

/* ---------- Loading Screen ---------- */
#loader{
  position:fixed; inset:0; z-index:9999; background:var(--deep);
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1.25rem;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#loader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-logo{ font-family:var(--font-display); font-weight:700; font-size:1.6rem; color:#fff; letter-spacing:.02em; }
.loader-logo span{ color: var(--cyan); }
.loader-bar{ width:220px; height:3px; background:rgba(255,255,255,.1); border-radius:99px; overflow:hidden; }
.loader-bar::after{ content:''; display:block; height:100%; width:40%; background:var(--grad); animation: loaderMove 1.1s ease-in-out infinite; }
@keyframes loaderMove{ 0%{ transform:translateX(-100%);} 50%{transform:translateX(150%);} 100%{transform:translateX(-100%);} }

/* ---------- Cursor ---------- */
.cursor-dot, .cursor-ring{ position:fixed; top:0; left:0; pointer-events:none; z-index:9998; border-radius:50%; transform:translate(-50%,-50%); }
.cursor-dot{ width:6px; height:6px; background:var(--cyan); }
.cursor-ring{ width:34px; height:34px; border:1.5px solid rgba(6,182,212,.55); transition: width .2s, height .2s, border-color .2s, background .2s; }
.cursor-ring.grow{ width:56px; height:56px; background:rgba(6,182,212,.12); border-color: var(--cyan); }
@media (hover:none){ .cursor-dot,.cursor-ring{ display:none; } }

/* ---------- Scroll progress ---------- */
#scroll-progress{ position:fixed; top:0; left:0; height:3px; background:var(--grad); z-index:2000; width:0%; }

/* ---------- Navbar ---------- */
.navbar-nexora{
  position:fixed; top:0; left:0; right:0; z-index:1000; height:var(--nav-h);
  background:transparent; transition: all .4s var(--ease);
}
.navbar-nexora.scrolled{
  height:70px; background:var(--surface); box-shadow: var(--shadow-md);
  border-bottom:1px solid var(--border);
}
.navbar-nexora .nav-link{
  font-weight:500; color:var(--text) !important; margin:0 .35rem; font-size:.95rem;
  position:relative; padding:.5rem .2rem !important;
}
.navbar-nexora.transparent-top:not(.scrolled) .nav-link,
.navbar-nexora.transparent-top:not(.scrolled) .navbar-brand,
.navbar-nexora.transparent-top:not(.scrolled) .navbar-toggler-icon-bar{ color:#fff !important; }
.navbar-nexora .nav-link::after{
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--grad); transition:width .3s var(--ease);
}
.navbar-nexora .nav-link:hover::after, .navbar-nexora .nav-link.active::after{ width:100%; }
.navbar-brand{ font-family:var(--font-display); font-weight:700; font-size:1.35rem; color:var(--text); }
.navbar-brand span{ color:var(--cyan); }
.nav-actions .btn-icon-circle{ width:40px; height:40px; }

/* Mega menu */
.mega-wrap{ position:static; }
.mega-menu{
  position:absolute; left:0; right:0; top:100%; background:var(--surface);
  border-bottom:1px solid var(--border); box-shadow: var(--shadow-lg);
  opacity:0; visibility:hidden; transform: translateY(-8px);
  transition: all .3s var(--ease); padding: 2.25rem 0;
}
.mega-wrap:hover .mega-menu, .mega-menu:hover{ opacity:1; visibility:visible; transform: translateY(0); }
.mega-col-title{ font-family:var(--font-mono); font-size:.75rem; color:var(--blue); text-transform:uppercase; letter-spacing:.08em; margin-bottom:1rem; display:block; }
.mega-link{ display:flex; align-items:center; gap:.65rem; padding:.5rem 0; color:var(--text-muted); font-size:.92rem; transition:.25s; border-radius:8px; }
.mega-link:hover{ color:var(--blue); transform:translateX(4px); }
.mega-link i{ font-size:1.05rem; color:var(--cyan); }

/* Search popup */
.search-overlay{
  position:fixed; inset:0; background:rgba(2,6,23,.92); backdrop-filter:blur(6px); z-index:2000;
  display:flex; align-items:flex-start; justify-content:center; padding-top:12vh;
  opacity:0; visibility:hidden; transition:.35s var(--ease);
}
.search-overlay.active{ opacity:1; visibility:visible; }
.search-box{ width:min(680px,90vw); }
.search-box input{
  width:100%; background:transparent; border:none; border-bottom:2px solid rgba(255,255,255,.25);
  color:#fff; font-family:var(--font-display); font-size:2rem; padding:.75rem 0; outline:none;
}
.search-box input::placeholder{ color:rgba(255,255,255,.4); }
.search-close{ position:absolute; top:2.2rem; right:2.2rem; color:#fff; font-size:1.6rem; cursor:pointer; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:96vh; display:flex; align-items:center;
  background: var(--deep); overflow:hidden; padding-top:var(--nav-h);
}
.hero canvas#hero-net{ position:absolute; inset:0; width:100%; height:100%; opacity:.32; }
.hero::before{ content:''; position:absolute; inset:0; background:var(--grad-radial); pointer-events:none; }
.hero::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:40%;
  background:linear-gradient(180deg, transparent, var(--deep) 92%); pointer-events:none;
}
.hero-content{ position:relative; z-index:2; padding-bottom:2rem; }
.hero-eyebrow{
  font-family:var(--font-mono); color:rgba(255,255,255,.75); font-size:.8rem; letter-spacing:.04em;
  display:inline-flex; align-items:center; gap:.6rem; margin-bottom:1.75rem;
  border:1px solid rgba(255,255,255,.14); padding:.5rem 1rem; border-radius:var(--radius-pill);
  background:rgba(255,255,255,.03);
}
.hero-eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--success); box-shadow:0 0 0 4px rgba(16,185,129,.2); animation: pulse 2s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1;} 50%{opacity:.4;} }
.hero h1{ color:#fff; font-size: clamp(2.3rem, 4.1vw, 3.55rem); line-height:1.16; letter-spacing:-.02em; }
.hero h1 .typed-cursor{ color:var(--cyan); }
.hero p.lead{ color:rgba(255,255,255,.62); font-size:1.1rem; max-width:520px; margin-top:1.5rem; line-height:1.7; }
.hero-cta{ margin-top:2.25rem; display:flex; gap:1rem; flex-wrap:wrap; align-items:center; }
.hero-cta .btn-outline-grad{ color:#fff !important; border-color:rgba(255,255,255,.22); }
.hero-trustline{ margin-top:3rem; display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; }
.hero-trustline span{ font-family:var(--font-mono); font-size:.72rem; color:rgba(255,255,255,.4); text-transform:uppercase; letter-spacing:.08em; }
.hero-trustline .logo-txt{ color:rgba(255,255,255,.55); font-family:var(--font-display); font-weight:600; font-size:.95rem; }

/* Hero visual mockup panel */
.hero-visual{ position:relative; z-index:2; }
.hero-panel{
  background:rgba(15,23,42,.55); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.5); padding:1.75rem; position:relative;
}
.hero-panel-head{ display:flex; align-items:center; gap:.4rem; margin-bottom:1.25rem; }
.hero-panel-head span{ width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.18); }
.hero-panel-head .hp-label{ font-family:var(--font-mono); font-size:.72rem; color:rgba(255,255,255,.4); margin-left:auto; width:auto; height:auto; border-radius:0; background:none; }
.hero-metric-row{ display:flex; justify-content:space-between; align-items:center; padding:.9rem 0; border-bottom:1px solid rgba(255,255,255,.08); }
.hero-metric-row:last-of-type{ border-bottom:none; }
.hero-metric-row .hm-label{ color:rgba(255,255,255,.55); font-size:.88rem; }
.hero-metric-row .hm-value{ font-family:var(--font-mono); color:#fff; font-weight:600; }
.hero-metric-row .hm-value.up{ color:#34D399; }
.hero-panel-chart{ height:70px; margin:1.25rem 0 .5rem; }
.hero-panel-chip{ display:inline-flex; align-items:center; gap:.4rem; font-family:var(--font-mono); font-size:.72rem; color:var(--cyan); background:rgba(6,182,212,.1); border:1px solid rgba(6,182,212,.25); padding:.3rem .7rem; border-radius:var(--radius-pill); }
.hero-float-card{
  position:absolute; background:var(--surface); border-radius:16px; box-shadow:var(--shadow-lg);
  padding:1rem 1.25rem; display:flex; align-items:center; gap:.85rem; z-index:3;
}
.hero-float-card.fc-1{ top:-10%; right:-8%; }
.hero-float-card.fc-2{ bottom:-8%; left:-10%; }
.hero-float-card .fc-icon{ width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:var(--grad-soft); color:var(--blue); font-size:1.1rem; }
.hero-float-card .fc-title{ font-size:.82rem; font-weight:600; color:var(--text); margin:0; }
.hero-float-card .fc-sub{ font-size:.72rem; color:var(--text-muted); }
@media (max-width:991px){ .hero-float-card{ display:none; } .hero-visual{ margin-top:3rem; } }

.hero-scroll{ position:absolute; bottom:1.75rem; left:50%; transform:translateX(-50%); z-index:2; color:rgba(255,255,255,.5); text-align:center; font-family:var(--font-mono); font-size:.72rem; }
.mouse-ind{ width:24px; height:38px; border:1.5px solid rgba(255,255,255,.3); border-radius:14px; margin:.6rem auto 0; position:relative; }
.mouse-ind::before{ content:''; position:absolute; top:6px; left:50%; width:3px; height:6px; background:var(--cyan); border-radius:3px; transform:translateX(-50%); animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel{ 0%{ opacity:1; top:6px;} 100%{ opacity:0; top:18px;} }

/* Standalone stat band (used below hero on home) */
.stat-band{ background:var(--surface); border-bottom:1px solid var(--border); padding:3rem 0; }

/* generic page hero (inner pages) */
.page-hero{
  position:relative; padding: calc(var(--nav-h) + 5.5rem) 0 5rem; background:var(--deep); overflow:hidden;
}
.page-hero::before{ content:''; position:absolute; inset:0; background:var(--grad-radial); }
.page-hero h1{ color:#fff; font-size:clamp(2rem,4vw,3.2rem); }
.page-hero p{ color:rgba(255,255,255,.65); max-width:600px; }
.breadcrumb-nexora{ font-family:var(--font-mono); font-size:.85rem; color:rgba(255,255,255,.5); }
.breadcrumb-nexora a{ color:var(--cyan); }
.page-hero-shape{ position:absolute; inset:0; opacity:.4; }

/* ---------- Trusted-by / logos ---------- */
.logo-strip{ padding:2.5rem 0; border-bottom:1px solid var(--border); }
.logo-strip img, .logo-strip .logo-txt{ opacity:.55; filter:grayscale(1); transition:.3s; font-family:var(--font-display); font-weight:700; font-size:1.2rem; color:var(--text-muted); }
.logo-strip .logo-item:hover img, .logo-strip .logo-item:hover .logo-txt{ opacity:1; filter:grayscale(0); color:var(--blue); }

/* ---------- Service cards ---------- */
.service-card{ padding:2.25rem; height:100%; }
.service-icon{
  width:64px; height:64px; border-radius:18px; display:flex; align-items:center; justify-content:center;
  background: var(--grad-soft); color:var(--blue); font-size:1.7rem; margin-bottom:1.5rem; transition:.4s var(--ease);
}
.service-card:hover .service-icon{ background:var(--grad); color:#fff; transform:rotate(-8deg) scale(1.08); }
.service-card h5{ font-size:1.2rem; margin-bottom:.75rem; }
.service-card p{ font-size:.95rem; }
.service-link{ display:inline-flex; align-items:center; gap:.4rem; margin-top:1.25rem; font-weight:600; font-size:.9rem; color:var(--blue); }
.service-link i{ transition:.3s var(--ease); }
.service-card:hover .service-link i{ transform:translateX(5px); }

/* ---------- Icon list (why choose us) ---------- */
.feature-row{ display:flex; gap:1.25rem; padding:1.5rem 0; border-bottom:1px solid var(--border); }
.feature-row:last-child{ border-bottom:none; }
.feature-num{ font-family:var(--font-mono); color:var(--cyan); font-size:.85rem; min-width:2.5rem; }

/* ---------- Timeline (process) ---------- */
.process-rail{ position:relative; }
.process-rail::before{
  content:''; position:absolute; left:0; right:0; top:34px; height:2px;
  background: linear-gradient(90deg, transparent, var(--border) 8%, var(--border) 92%, transparent);
}
@media (max-width:991px){ .process-rail::before{ left:34px; right:auto; top:0; bottom:0; width:2px; height:auto; } }
.process-step{ position:relative; padding-top:4.5rem; }
@media (max-width:991px){ .process-step{ padding-top:0; padding-left:4.5rem; margin-bottom:2.5rem; } }
.process-dot{
  position:absolute; top:0; left:0; width:70px; height:70px; border-radius:50%;
  background:var(--surface); border:2px solid var(--border); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:600; color:var(--blue); z-index:1; transition:.3s;
}
.process-step:hover .process-dot{ background:var(--grad); color:#fff; border-color:transparent; }

/* ---------- Timeline (company history) vertical ---------- */
.vtimeline{ position:relative; padding-left:2.5rem; }
.vtimeline::before{ content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background:var(--border); }
.vtimeline-item{ position:relative; padding-bottom:3rem; }
.vtimeline-item:last-child{ padding-bottom:0; }
.vtimeline-item::before{ content:''; position:absolute; left:-2.5rem; top:4px; width:14px; height:14px; border-radius:50%; background:var(--grad); box-shadow:0 0 0 4px var(--surface), 0 0 0 5px var(--border); }
.vtimeline-year{ font-family:var(--font-mono); color:var(--blue); font-size:.9rem; margin-bottom:.35rem; display:block; }

/* ---------- Tech icons ---------- */
.tech-chip{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.75rem;
  padding:1.5rem 1rem; border-radius:var(--radius-md); border:1px solid var(--border); background:var(--surface);
  transition:.3s var(--ease); height:100%;
}
.tech-chip i{ font-size:2rem; color:var(--blue); transition:.3s; }
.tech-chip span{ font-size:.82rem; font-weight:600; color:var(--text); }
.tech-chip:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:var(--cyan); }
.tech-chip:hover i{ color:var(--cyan); }

/* ---------- Industry cards ---------- */
.industry-card{
  padding:2rem 1.5rem; text-align:center; border-radius:var(--radius-md); border:1px solid var(--border);
  background:var(--surface); transition:.35s var(--ease); height:100%;
}
.industry-card i{ font-size:2.1rem; color:var(--cyan); margin-bottom:1rem; }
.industry-card:hover{ background:var(--grad); transform:translateY(-6px); }
.industry-card:hover i, .industry-card:hover span{ color:#fff; }
.industry-card span{ font-weight:600; font-size:.95rem; }

/* ---------- Portfolio ---------- */
.portfolio-filters{ display:flex; gap:.6rem; flex-wrap:wrap; }
.pf-btn{
  font-family:var(--font-mono); font-size:.82rem; padding:.55rem 1.2rem; border-radius:var(--radius-pill);
  border:1px solid var(--border); background:transparent; color:var(--text-muted); cursor:pointer; transition:.3s;
}
.pf-btn.active, .pf-btn:hover{ background:var(--grad); color:#fff; border-color:transparent; }
.portfolio-item{ border-radius:var(--radius-md); overflow:hidden; position:relative; cursor:pointer; }
.portfolio-item .pf-img{ height:280px; background-size:cover; background-position:center; transition:transform .6s var(--ease); }
.portfolio-item:hover .pf-img{ transform:scale(1.08); }
.pf-overlay{
  position:absolute; inset:0; background:linear-gradient(0deg, rgba(2,6,23,.92), rgba(2,6,23,.1) 60%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:1.75rem; opacity:0; transition:.4s var(--ease);
}
.portfolio-item:hover .pf-overlay{ opacity:1; }
.pf-cat{ font-family:var(--font-mono); color:var(--cyan); font-size:.78rem; margin-bottom:.4rem; }
.pf-overlay h5{ color:#fff; }

/* ---------- Testimonials ---------- */
.testi-card{ padding:2.25rem; }
.testi-quote{ font-size:1.05rem; color:var(--text); font-style:italic; margin-bottom:1.5rem; }
.testi-author{ display:flex; align-items:center; gap:1rem; }
.testi-avatar{ width:52px; height:52px; border-radius:50%; background:var(--grad); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; }
.testi-stars{ color:#F59E0B; font-size:.85rem; margin-bottom:.75rem; }

/* ---------- Team ---------- */
.team-card{ text-align:center; overflow:hidden; }
.team-photo{ height:280px; background:var(--grad-soft); position:relative; overflow:hidden; }
.team-photo .initials{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:3rem; font-weight:700; color:var(--blue); }
.team-social{ position:absolute; bottom:-50px; left:0; right:0; display:flex; justify-content:center; gap:.6rem; padding:1rem; transition:.3s var(--ease); }
.team-card:hover .team-social{ bottom:0; }
.team-social a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.9); display:flex; align-items:center; justify-content:center; color:var(--ink); }
.team-info{ padding:1.5rem; }

/* ---------- Pricing ---------- */
.price-card{ padding:2.5rem 2rem; text-align:center; position:relative; }
.price-card.featured{ border-color:var(--cyan); box-shadow:var(--shadow-glow); transform:scale(1.04); }
.price-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--grad); color:#fff; font-size:.75rem; font-family:var(--font-mono); padding:.35rem 1rem; border-radius:var(--radius-pill); }
.price-amount{ font-family:var(--font-mono); font-size:2.75rem; font-weight:700; margin:1rem 0 .25rem; }
.price-amount span{ font-size:1rem; color:var(--text-muted); font-family:var(--font-body); }
.price-list{ list-style:none; padding:0; margin:1.75rem 0; text-align:left; }
.price-list li{ display:flex; gap:.65rem; padding:.55rem 0; font-size:.92rem; color:var(--text-muted); }
.price-list i{ color:var(--success); }
.pricing-toggle{ display:inline-flex; align-items:center; gap:.9rem; padding:.4rem; border-radius:var(--radius-pill); border:1px solid var(--border); }
.pricing-toggle button{ border:none; background:transparent; padding:.55rem 1.4rem; border-radius:var(--radius-pill); font-weight:600; font-size:.9rem; color:var(--text-muted); }
.pricing-toggle button.active{ background:var(--grad); color:#fff; }

/* ---------- Blog ---------- */
.blog-card{ overflow:hidden; height:100%; }
.blog-img{ height:220px; background-size:cover; background-position:center; position:relative; }
.blog-cat-tag{ position:absolute; top:1rem; left:1rem; background:var(--surface); font-family:var(--font-mono); font-size:.72rem; padding:.35rem .8rem; border-radius:var(--radius-pill); color:var(--blue); }
.blog-body{ padding:1.75rem; }
.blog-meta{ display:flex; gap:1.2rem; font-family:var(--font-mono); font-size:.78rem; color:var(--text-muted); margin-bottom:.9rem; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--border); padding:1.5rem 0; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-weight:600; font-size:1.02rem; }
.faq-q i{ transition:.3s var(--ease); color:var(--blue); }
.faq-item.open .faq-q i{ transform:rotate(180deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a-inner{ padding-top:1rem; font-size:.95rem; }

/* ---------- Newsletter / CTA ---------- */
.cta-banner{
  border-radius: var(--radius-lg); background: var(--deep); position:relative; overflow:hidden; padding:4rem;
}
.cta-banner::before{ content:''; position:absolute; inset:0; background:var(--grad-radial); }
.cta-banner h2{ color:#fff; }
.cta-banner p{ color:rgba(255,255,255,.65); }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--deep); padding:5rem 0 0; position:relative; }
footer.site-footer, footer.site-footer p{ color:rgba(255,255,255,.55); }
footer.site-footer h6{ color:#fff; font-family:var(--font-mono); font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:1.5rem; }
footer.site-footer a.flink{ color:rgba(255,255,255,.55); display:block; padding:.4rem 0; font-size:.92rem; transition:.25s; }
footer.site-footer a.flink:hover{ color:var(--cyan); padding-left:4px; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); margin-top:3.5rem; padding:1.75rem 0; }
.social-circ{ width:40px; height:40px; border-radius:50%; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:#fff; transition:.3s; }
.social-circ:hover{ background:var(--grad); border-color:transparent; transform:translateY(-3px); }
.footer-newsletter input{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); color:#fff; border-radius:var(--radius-pill) 0 0 var(--radius-pill); }
.footer-newsletter input::placeholder{ color:rgba(255,255,255,.4); }

/* ---------- Floating buttons ---------- */
.float-stack{ position:fixed; right:1.5rem; bottom:1.5rem; z-index:900; display:flex; flex-direction:column; gap:.85rem; align-items:flex-end; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.4rem; box-shadow:var(--shadow-lg); transition:.3s var(--ease); }
.fab:hover{ transform:translateY(-4px) scale(1.05); }
.fab-whatsapp{ background:#25D366; }
.fab-chat{ background:var(--grad); }
.fab-top{ width:46px; height:46px; background:var(--surface); color:var(--text); border:1px solid var(--border); opacity:0; visibility:hidden; transform:translateY(10px); }
.fab-top.show{ opacity:1; visibility:visible; transform:translateY(0); }

/* ---------- Popups: newsletter modal / cookie ---------- */
.nx-modal-backdrop{ position:fixed; inset:0; background:rgba(2,6,23,.75); backdrop-filter:blur(4px); z-index:2100; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:.35s; }
.nx-modal-backdrop.active{ opacity:1; visibility:visible; }
.nx-modal{ width:min(560px,90vw); background:var(--surface); border-radius:var(--radius-lg); padding:3rem; position:relative; transform:scale(.92); transition:.35s var(--ease); box-shadow:var(--shadow-lg); }
.nx-modal-backdrop.active .nx-modal{ transform:scale(1); }
.nx-modal-close{ position:absolute; top:1.25rem; right:1.25rem; cursor:pointer; color:var(--text-muted); font-size:1.3rem; }

.cookie-bar{
  position:fixed; left:1.5rem; right:1.5rem; bottom:1.5rem; max-width:640px; margin:0 auto; z-index:1900;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); padding:1.5rem 1.75rem;
  box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap;
  transform:translateY(150%); transition:.5s var(--ease);
}
.cookie-bar.show{ transform:translateY(0); }

/* ---------- Misc utils ---------- */
.floating-shape{ position:absolute; border-radius:50%; filter:blur(60px); opacity:.35; pointer-events:none; }
.divider-wave{ display:block; width:100%; height:80px; }
.badge-soft{ background:var(--grad-soft); color:var(--blue); font-family:var(--font-mono); font-size:.75rem; padding:.35rem .8rem; border-radius:var(--radius-pill); }
.stat-block{ text-align:center; }
.stat-block .num{ font-family:var(--font-mono); font-weight:700; font-size:2.5rem; color:var(--text); }
.stat-block .lbl{ color:var(--text-muted); font-size:.9rem; margin-top:.35rem; }
.sidebar-sticky{ position:sticky; top:calc(var(--nav-h) + 1.5rem); }
hr.grad-hr{ height:1px; border:none; background:linear-gradient(90deg, transparent, var(--border), transparent); }

.form-control-nx, .form-select-nx{
  background:var(--surface-2); border:1px solid var(--border); border-radius:12px; padding:.85rem 1.1rem; color:var(--text); width:100%; font-size:.95rem;
}
.form-control-nx:focus, .form-select-nx:focus{ outline:none; border-color:var(--cyan); box-shadow:0 0 0 3px rgba(6,182,212,.15); }
.form-label-nx{ font-size:.85rem; font-weight:600; margin-bottom:.4rem; display:block; }
.invalid-msg{ color:#EF4444; font-size:.8rem; margin-top:.35rem; display:none; }
.was-validated .invalid-msg{ display:block; }
.was-validated .form-control-nx:invalid, .was-validated .form-select-nx:invalid{ border-color:#EF4444; }

::-webkit-scrollbar{ width:9px; }
::-webkit-scrollbar-track{ background:var(--surface-2); }
::-webkit-scrollbar-thumb{ background:var(--grad); border-radius:99px; }

@media (max-width: 767px){
  .hero-stats{ gap:1.5rem; }
  .cta-banner{ padding:2.5rem 1.5rem; }
  .float-stack{ right:1rem; bottom:1rem; }
}
