:root{
  --bg:#0f0f0f;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.12);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --accent:#00b4ff;
  --deep:#0d1b2a;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --shadow2:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:#05070b;
  overflow-x:hidden;
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:0;

  background:
    linear-gradient(rgba(2,6,15,.45), rgba(2,6,15,.55)),
    url("../img/tech-bg.png");

  background-position:center center;
  background-repeat:no-repeat;
  background-size:contain;

  z-index:-2;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
ul{margin:0; padding-left:18px}
li{margin:6px 0}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.muted{color:var(--muted)}
.small{font-size:.92rem}
.center{display:flex; justify-content:center; margin-top:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  gap:8px;
  font-weight:700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(10px);
}
.btn:hover{transform: translateY(-1px); box-shadow: var(--shadow2); border-color: rgba(0,180,255,.35)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn.full{width:100%}

.btn-primary{
  background: linear-gradient(135deg, rgba(0,180,255,.95), rgba(0,180,255,.55));
  border-color: rgba(0,180,255,.45);
}
.btn-ghost{background: rgba(255,255,255,.04)}
.btn-glass{background: rgba(13,27,42,.55)}

.pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(0,180,255,.28);
  background: rgba(0,180,255,.08);
  color: rgba(255,255,255,.88);
  font-weight:700;
  font-size:.92rem;
}

/* Loader */
#loader{
  position:fixed; inset:0;
  background: radial-gradient(900px 600px at 40% 20%, rgba(0,180,255,.18), transparent 65%),
              linear-gradient(180deg, #03050a 0%, #070b12 100%);
  display:grid; place-items:center;
  z-index:9999;
  transition: opacity .35s ease, visibility .35s ease;
}
#loader.hidden{opacity:0; visibility:hidden; pointer-events:none}
.loader-card{
  width:min(420px, calc(100% - 40px));
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding:22px;
  box-shadow: var(--shadow);
  text-align:center;
}
.loader-logo{width:300px; margin:0 auto 12px}
.loader-bar{
  height:90px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}
.loader-bar span{
  display:block; height:100%;
  width:45%;
  background: linear-gradient(90deg, rgba(0,180,255,.25), rgba(0,180,255,.95), rgba(0,180,255,.25));
  animation: load 1.15s infinite ease-in-out;
}
@keyframes load{
  0%{transform: translateX(-120%)}
  100%{transform: translateX(320%)}
}

/* Background decor */
.bg-decor{position:fixed; inset:0; pointer-events:none; z-index:-1}
.blob{
  position:absolute;
  width:520px; height:520px;
  border-radius: 50%;
  filter: blur(26px);
  opacity:.55;
  animation: float 10s ease-in-out infinite;
}
.blob.b1{left:-220px; top:-220px; background: rgba(0,180,255,.22)}
.blob.b2{right:-240px; top:180px; background: rgba(13,27,42,.85); animation-delay: -2s}
.blob.b3{left:40%; bottom:-320px; background: rgba(0,180,255,.14); animation-delay: -4s}
@keyframes float{
  0%,100%{transform: translateY(0px) translateX(0px) scale(1)}
  50%{transform: translateY(24px) translateX(16px) scale(1.04)}
}
.grid{
  position:absolute; inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity:.12;
  mask-image: radial-gradient(650px 520px at 30% 25%, black 55%, transparent 90%);
}

/* Navbar */
.navbar{
  position:sticky; top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(10,12,18,.62);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:10px}
.logo{
  width:150px;
  height:auto;
  filter: drop-shadow(0 0 6px #00c3ff)
          drop-shadow(0 0 12px #00c3ff)
          drop-shadow(0 0 22px rgba(0,195,255,.7));
  animation: logoFloat 4s ease-in-out infinite;
  transition: transform .3s ease, filter .3s ease;
}
.logo:hover{
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px #00e1ff)
          drop-shadow(0 0 20px #00e1ff)
          drop-shadow(0 0 35px rgba(0,225,255,.9));
}
@keyframes logoFloat{
  0%{ transform: translateY(0px);}
  50%{ transform: translateY(-4px);}
  100%{ transform: translateY(0px);}
}
.brand-text{font-weight:900; letter-spacing:.6px}
.nav-links{display:flex; align-items:center; gap:18px}
.nav-links a{
  color: rgba(255,255,255,.82);
  font-weight:700;
  padding:10px 10px;
  border-radius:12px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-links a:hover{background: rgba(255,255,255,.06); transform: translateY(-1px)}
.nav-links a.active{background: rgba(0,180,255,.10); color:#fff; border:1px solid rgba(0,180,255,.18)}
.nav-actions{display:flex; align-items:center; gap:10px}

.hamburger{
  display:none;
  width:46px; height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  padding:10px;
}
.hamburger span{
  display:block; height:2px; width:100%;
  background: rgba(255,255,255,.82);
  margin:6px 0;
  border-radius: 999px;
}
.mobile-menu{
  display:none;
  padding: 10px 0 16px;
  border-top:1px solid rgba(255,255,255,.10);
}
.mobile-menu a{
  display:block;
  padding:12px 0;
  color: rgba(255,255,255,.82);
  font-weight:800;
}
.mobile-menu a.active{color:#fff}
.mobile-menu .btn{margin-top:10px}

/* Hero */
.hero{
  position:relative;
  padding: 44px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
  line-height:1.05;
  margin:14px 0 12px;
}
.lead{font-size:1.08rem; color:var(--muted); line-height:1.6; margin:0}

.hero-cta{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 16px}

.hero-card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  display:flex; align-items:center; gap:8px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.dot{width:10px; height:10px; border-radius:50%}
.dot.red{background:#ff5b5b}
.dot.yellow{background:#ffd66b}
.dot.green{background:#5bff9c}
.tag{
  margin-left:auto;
  font-weight:900;
  padding:7px 10px;
  border-radius: 999px;
  background: rgba(0,180,255,.10);
  border: 1px solid rgba(0,180,255,.22);
  color: rgba(255,255,255,.90);
  font-size:.9rem;
}
.hero-card-body{padding:16px}
.hero-card-body h3{margin:0 0 6px}
.mini-list{display:grid; gap:10px; margin:14px 0}
.mini-item{
  padding:12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.88);
  font-weight:700;
}
.hero-card-actions{display:flex; gap:10px; margin-top:12px}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:16px;
}
.stat-card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding:14px;
}
.stat-num{
  font-size:1.65rem;
  font-weight:950;
  letter-spacing:.4px;
}
.stat-label{color:var(--muted2); font-weight:700}

.scroll-indicator{
  display:grid; place-items:center;
  width:42px; height:58px;
  margin: 18px auto 0;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}
.scroll-indicator span{
  width:6px; height:12px;
  border-radius: 999px;
  background: rgba(0,180,255,.95);
  animation: scrollDot 1.1s infinite ease-in-out;
}
@keyframes scrollDot{
  0%,100%{transform: translateY(-6px); opacity:.7}
  50%{transform: translateY(8px); opacity:1}
}

/* Sections */
.section{padding: 52px 0}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 8px; font-size: 2rem}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  align-items:start;
}

.card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  padding:18px;
  box-shadow: var(--shadow2);
}
.divider{height:1px; background: rgba(255,255,255,.10); margin:16px 0}

.checklist{display:grid; gap:10px; margin-top:14px; color: rgba(255,255,255,.88); font-weight:700}
.callout{
  margin-top:16px;
  padding:14px 14px;
  border-radius: 18px;
  border:1px solid rgba(0,180,255,.26);
  background: rgba(0,180,255,.08);
  display:flex; flex-wrap:wrap; gap:8px;
}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:10px}
.chip{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  color: rgba(255,255,255,.86);
}

/* Grids */
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}

.service-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding:16px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.service-card:hover{transform: translateY(-2px); border-color: rgba(0,180,255,.28); box-shadow: var(--shadow2)}
.service-card h3{margin:0 0 8px}
.service-card ul{color: rgba(255,255,255,.82)}

.link{color: rgba(0,180,255,.98); font-weight:900}
.link:hover{text-decoration: underline}

/* Timeline */
.timeline{display:grid; gap:10px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.step span{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(0,180,255,.12);
  border:1px solid rgba(0,180,255,.22);
  font-weight:950;
}
.step h4{margin:0 0 6px}

/* Pricing */
.pricing-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.price-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding:16px;
  box-shadow: var(--shadow2);
  position:relative;
}
.price-card.featured{
  border-color: rgba(0,180,255,.45);
  background: linear-gradient(180deg, rgba(0,180,255,.14), rgba(255,255,255,.04));
}
.badge{
  position:absolute; top:12px; right:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,180,255,.18);
  border:1px solid rgba(0,180,255,.32);
}
.price-top h3{margin:0}
.price{font-size:2rem; font-weight:950; margin:6px 0}
.price-list{color: rgba(255,255,255,.86)}

/* Portfolio */
.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.work-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.work-card:hover{transform: translateY(-2px); border-color: rgba(0,180,255,.28); box-shadow: var(--shadow2)}
.work-card img{width:100%; height:220px; object-fit:cover; background: rgba(0,0,0,.20)}
.work-meta{padding:14px}
.work-meta h3{margin:0 0 6px}
.mini-bullets{color: rgba(255,255,255,.84)}
.work-actions{display:flex; gap:10px; margin-top:12px}

/* Testimonials */
.test-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.test-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  padding:16px;
}
.test-card blockquote{margin:0; font-weight:800; line-height:1.6}
.test-card figcaption{margin-top:10px; color:var(--muted2); font-weight:800}

/* CTA */
.cta{padding: 40px 0 58px}
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  border-radius: var(--radius2);
  border:1px solid rgba(0,180,255,.30);
  background: radial-gradient(700px 320px at 20% 20%, rgba(0,180,255,.20), transparent 70%),
              rgba(255,255,255,.04);
  padding:20px;
  box-shadow: var(--shadow2);
}
.cta-inner h2{margin:0 0 6px}

/* Page hero */
.page-hero{padding: 38px 0 10px}

/* Forms */
.form{display:grid; gap:12px; margin-top:12px}
.form label{display:grid; gap:7px; font-weight:900; color: rgba(255,255,255,.86)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.20);
  color:#fff;
  outline:none;

  font-size:16px;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(0,180,255,.55);
  box-shadow: 0 0 0 4px rgba(0,180,255,.10);
}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}

.contact-list{display:grid; gap:10px; margin-top:10px}
.contact-item{
  padding:12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-weight:800;
}
.social-row{display:flex; gap:10px; margin-top:10px}
.social{
  width:46px; height:46px;
  display:grid; place-items:center;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight:950;
}

/* Filters */
.filters{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.filter-btn{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.filter-btn:hover{transform: translateY(-1px); border-color: rgba(0,180,255,.30)}
.filter-btn.active{background: rgba(0,180,255,.14); border-color: rgba(0,180,255,.40)}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  padding: 22px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  gap:14px;
  padding-bottom: 14px;
}
.footer-grid h4{margin:0 0 10px}
.footer-grid a{display:block; margin:8px 0; color: rgba(255,255,255,.78); font-weight:800}
.footer-brand{display:flex; gap:10px; align-items:center}
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

/* WhatsApp float */
.wa-float{
  position:fixed; right:18px; bottom:18px;
  z-index:60;
  width:54px; height:54px;
  border-radius: 18px;
  border:1px solid rgba(0,180,255,.35);
  background: rgba(0,180,255,.16);
  backdrop-filter: blur(12px);
  display:grid; place-items:center;
  box-shadow: var(--shadow2);
  transition: transform .18s ease;
}
.wa-float:hover{transform: translateY(-2px)}
.wa-float span{font-size:22px}

/* BOT */
.bot-widget{
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 100;
}

.bot-toggle{
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0,180,255,.35);
  background: linear-gradient(135deg, rgba(0,180,255,.95), rgba(0,180,255,.55));
  color: #fff;
  border-radius: 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow2);
  transition: transform .18s ease;
}

.bot-toggle:hover{
  transform: translateY(-2px);
}

.bot-box{
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 340px;
  max-width: calc(100vw - 30px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}

.bot-box.open{
  display: block;
}

.bot-header{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.bot-header strong{
  display: block;
  font-size: 1rem;
}

.bot-header p{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.bot-close{
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.bot-body{
  padding: 16px;
  max-height: 430px;
  overflow-y: auto;
}

.bot-message{
  padding: 12px 14px;
  border-radius: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: .95rem;
}

.bot-message-bot{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.bot-message-user{
  background: rgba(0,180,255,.14);
  border: 1px solid rgba(0,180,255,.25);
  margin-left: 32px;
}

.bot-options{
  display: grid;
  gap: 10px;
}

.bot-option{
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: .18s ease;
}

.bot-option:hover{
  border-color: rgba(0,180,255,.30);
  background: rgba(0,180,255,.10);
}

.bot-actions{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.bot-link{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
}

.bot-link.primary{
  background: linear-gradient(135deg, rgba(0,180,255,.95), rgba(0,180,255,.55));
}

.bot-link.ghost{
  background: rgba(255,255,255,.05);
}

/* Reveal animations */
.reveal{
  opacity:0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0px);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .grid-3{grid-template-columns: repeat(2, 1fr)}
  .pricing-grid{grid-template-columns: 1fr}
  .portfolio-grid{grid-template-columns: 1fr}
  .two-col{grid-template-columns: 1fr}
  .test-grid{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .nav-links{display:none}
  .hamburger{display:inline-block}
  .mobile-menu.open{display:block}
}
@media (max-width: 520px){
  .row{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .bot-box{width:300px}
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: all 0.45s ease;
}

.form-status.show-success {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.12);
  animation: popIn 0.5s ease;
}

.form-status.show-error {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: rgba(239, 68, 68, 0.10);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.22);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.10);
  animation: popIn 0.5s ease;
}

.form-status.hide-status {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.portfolio-stats{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:24px 0 10px;
}

.stat-chip{
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  min-width:140px;
}

.stat-chip strong{
  display:block;
  font-size:1.1rem;
  margin-bottom:4px;
}

.stat-chip span{
  font-size:.92rem;
  opacity:.85;
}

.section-heading{
  margin-bottom:28px;
}

.work-card p{
  line-height:1.7;
}

.work-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 20px;
}

.work-tags span{
  padding:8px 12px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:600;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:inherit;
}

.section-alt{
  position:relative;
}

.cta-banner{
  padding:34px 28px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 20px 50px rgba(0,0,0,.18);
  text-align:center;
}

.work-actions.center{
  justify-content:center;
}
/* SMART BOT */
.bot-widget{
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 100;
}

.bot-toggle{
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0,180,255,.35);
  background: linear-gradient(135deg, rgba(0,180,255,.95), rgba(0,180,255,.55));
  color: #fff;
  border-radius: 18px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, box-shadow .18s ease;
}

.bot-toggle:hover{
  transform: translateY(-2px) scale(1.03);
}

.bot-box{
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 360px;
  max-width: calc(100vw - 24px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,12,18,.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: none;
}

.bot-box.open{
  display: block;
}

.bot-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.bot-header strong{
  display:block;
  font-size:1rem;
}

.bot-header p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:.9rem;
}

.bot-close{
  border:none;
  background:transparent;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.bot-body{
  padding:16px;
  max-height:460px;
  overflow-y:auto;
}

.bot-message{
  padding:12px 14px;
  border-radius:16px;
  margin-bottom:12px;
  line-height:1.55;
  font-size:.95rem;
}

.bot-message-bot{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.bot-message-user{
  background: rgba(0,180,255,.14);
  border: 1px solid rgba(0,180,255,.25);
  margin-left: 36px;
}

.bot-options{
  display:grid;
  gap:10px;
  margin-bottom:12px;
}

.bot-option{
  width:100%;
  text-align:left;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:#fff;
  cursor:pointer;
  font-weight:700;
  transition: .18s ease;
}

.bot-option:hover{
  border-color: rgba(0,180,255,.30);
  background: rgba(0,180,255,.10);
  transform: translateY(-1px);
}

.bot-result{
  margin-top:12px;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(0,180,255,.24);
  background: rgba(0,180,255,.08);
}

.bot-result h4{
  margin:0 0 8px;
}

.bot-result p{
  margin:0 0 8px;
}

.bot-actions{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.bot-link{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
}

.bot-link.primary{
  background: linear-gradient(135deg, rgba(0,180,255,.95), rgba(0,180,255,.55));
}

.bot-link.ghost{
  background: rgba(255,255,255,.05);
}

.bot-mini{
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 520px){
  .bot-box{
    width: 310px;
  }
}
@media (max-width:768px){

  .nav-inner{
    gap:10px;
  }

  .logo{
    width:95px;
  }

  .nav-actions{
    gap:8px;
  }

  .nav-actions .btn{
    padding:10px 12px;
    font-size:.82rem;
    border-radius:14px;
    min-height:auto;
  }

  .nav-actions .btn span{
    display:none;
  }

  .hamburger{
    width:44px;
    height:44px;
  }

}