/* ============================================================
   Neurowebix — Main Stylesheet
   ============================================================ */

:root {
  --nw-primary: #4f46e5;
  --nw-primary-d: #3730a3;
  --nw-accent: #06b6d4;
  --nw-dark: #0f0f1a;
  --nw-dark2: #1a1a2e;
  --nw-dark3: #16213e;
  --nw-card: #1e1e3a;
  --nw-text: #e2e8f0;
  --nw-muted: #94a3b8;
  --nw-border: rgba(255, 255, 255, .08);
  --nw-gradient: linear-gradient(135deg, #4f46e5, #06b6d4);
  --nw-radius: 16px;
  --nw-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--nw-dark);
  color: var(--nw-text);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--nw-dark2)
}

::-webkit-scrollbar-thumb {
  background: var(--nw-primary);
  border-radius: 3px
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem)
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem)
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem)
}

a {
  color: inherit;
  text-decoration: none
}

a:hover {
  color: var(--nw-accent)
}

p {
  color: var(--nw-muted)
}

/* ── SECTION ── */
.nw-section {
  padding: 100px 0
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, .15);
  border: 1px solid rgba(79, 70, 229, .3);
  color: var(--nw-primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1rem
}

.section-title span {
  background: var(--nw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.section-sub {
  color: var(--nw-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto
}

/* ── NAVBAR ── */
.nw-navbar {
  background: transparent;
  padding: 14px 0;
  transition: all .4s ease;
  border-bottom: 1px solid transparent;
  width: 100%;
  left: 0;
  right: 0;
}

.nw-navbar .container {
  max-width: 100%;
  padding-left: 16px;
  padding-right: 16px
}

.nw-navbar.scrolled {
  background: rgba(15, 15, 26, .97);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom-color: var(--nw-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nw-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--nw-gradient);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: #fff
}

.logo-text {
  color: #fff
}

.logo-accent {
  background: var(--nw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* Logo image sizing */
.navbar-brand img {
  height: 54px !important;
  width: auto !important;
  max-width: 190px !important;
  object-fit: contain !important
}

.nw-navbar .nav-link {
  color: rgba(255, 255, 255, .85) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 12px !important;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap
}

.nw-navbar .nav-link:hover,
.nw-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(79, 70, 229, .15)
}

.nw-navbar .nav-link.active {
  color: var(--nw-accent) !important
}

/* Mobile collapse */
.navbar-collapse {
  flex-grow: 0;
}

@media(max-width:991px) {
  .navbar-collapse {
    background: rgba(15, 15, 26, .98);
    border: 1px solid var(--nw-border);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nw-navbar .navbar-nav {
    gap: 4px;
  }

  .nw-navbar .nav-link {
    padding: 10px 14px !important;
    border-radius: 10px;
  }

  .nw-dropdown-menu {
    position: static !important;
    box-shadow: none;
    background: rgba(255, 255, 255, .04);
    border: none;
    margin: 4px 0 !important;
    border-radius: 12px;
  }

  .nw-btn-nav,
  .nw-btn-outline-nav {
    display: block;
    text-align: center;
    margin-top: 6px;
    width: 100%;
  }

  .nav-item.ms-lg-1,
  .nav-item.ms-lg-2 {
    margin: 0 !important;
    margin-top: 4px !important
  }

  .navbar-brand img {
    height: 44px !important
  }
}

/* Dropdown */
.nw-dropdown-menu {
  background: var(--nw-dark2);
  border: 1px solid var(--nw-border);
  border-radius: var(--nw-radius);
  padding: 10px;
  min-width: 240px;
  box-shadow: var(--nw-shadow);
  margin-top: 8px !important;
}

.nw-dropdown-menu .dropdown-item {
  color: var(--nw-muted);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: .86rem;
  font-weight: 500;
  transition: all .2s;
}

.nw-dropdown-menu .dropdown-item:hover {
  background: rgba(79, 70, 229, .15);
  color: #fff
}

.nw-dropdown-menu .dropdown-item i {
  color: var(--nw-primary);
  width: 18px
}

/* Nav buttons */
.nw-btn-nav {
  background: var(--nw-gradient);
  color: #fff !important;
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 600;
  transition: all .3s
}

.nw-btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, .5)
}

.nw-btn-outline-nav {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: .86rem;
  font-weight: 600;
  transition: all .3s
}

.nw-btn-outline-nav:hover {
  background: rgba(255, 255, 255, .1)
}

/* Hamburger */
.nw-toggler {
  background: none;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer
}

.nw-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all .3s
}

/* ── HERO ── */
.nw-hero {
  min-height: 100vh;
  background: var(--nw-dark2);
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79, 70, 229, .25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(6, 182, 212, .15) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, .2);
  border: 1px solid rgba(79, 70, 229, .4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--nw-accent);
  margin-bottom: 2rem
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--nw-accent);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.hero-title {
  color: #fff;
  margin-bottom: 1.5rem
}

.hero-title .highlight {
  background: var(--nw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--nw-muted);
  max-width: 580px;
  margin-bottom: 2.5rem
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.btn-hero-primary {
  background: var(--nw-gradient);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all .3s;
  border: none
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, .5);
  color: #fff
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, .3);
  transition: all .3s
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 3rem
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--nw-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.hero-stat span {
  font-size: .85rem;
  color: var(--nw-muted);
  font-weight: 500
}

/* Floating card */
.hero-visual {
  position: relative
}

.hero-card {
  background: rgba(30, 30, 58, .8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--nw-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--nw-shadow)
}

.hero-card-float {
  position: absolute;
  border-radius: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--nw-border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 600
}

.float-1 {
  background: rgba(79, 70, 229, .2);
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite
}

.float-2 {
  background: rgba(6, 182, 212, .2);
  bottom: -20px;
  left: -20px;
  animation: float 3s ease-in-out infinite .5s
}

.float-3 {
  background: rgba(16, 185, 129, .2);
  top: 50%;
  right: -30px;
  animation: float 3s ease-in-out infinite 1s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* Tech stack badges */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px
}

.tech-badge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--nw-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--nw-muted)
}

/* ── TRUST STRIP ── */
.nw-trust {
  background: var(--nw-dark3);
  padding: 30px 0;
  border-top: 1px solid var(--nw-border);
  border-bottom: 1px solid var(--nw-border)
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nw-muted);
  font-size: .9rem;
  font-weight: 500
}

.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(79, 70, 229, .15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--nw-primary);
  font-size: 1.1rem;
  flex-shrink: 0
}

/* ── CARDS ── */
.nw-card {
  background: var(--nw-card);
  border: 1px solid var(--nw-border);
  border-radius: var(--nw-radius);
  padding: 30px;
  transition: all .3s;
  height: 100%
}

.nw-card:hover {
  border-color: rgba(79, 70, 229, .4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, .2)
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(79, 70, 229, .15);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--nw-primary);
  margin-bottom: 1.2rem;
  transition: all .3s
}

.nw-card:hover .card-icon {
  background: var(--nw-gradient);
  color: #fff
}

.card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem
}

.card-text {
  color: var(--nw-muted);
  font-size: .9rem;
  line-height: 1.7
}

.card-link {
  color: var(--nw-primary);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s
}

.nw-card:hover .card-link {
  gap: 10px
}

/* ── BUTTONS ── */
.btn-nw {
  background: var(--nw-gradient);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-nw:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(79, 70, 229, .5)
}

.btn-nw-outline {
  background: transparent;
  color: var(--nw-text);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--nw-border);
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-nw-outline:hover {
  border-color: var(--nw-primary);
  color: var(--nw-primary)
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--nw-dark2);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(79, 70, 229, .2), transparent 70%)
}

.page-hero-title {
  color: #fff;
  margin-bottom: 1rem
}

.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin: 0
}

.page-hero .breadcrumb-item a {
  color: var(--nw-muted)
}

.page-hero .breadcrumb-item.active {
  color: var(--nw-accent)
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: var(--nw-muted)
}

/* ── PROCESS STEPS ── */
.process-step {
  text-align: center;
  position: relative
}

.process-num {
  width: 64px;
  height: 64px;
  background: var(--nw-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.2rem
}

.process-step::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(90deg, var(--nw-primary), transparent);
  pointer-events: none
}

.process-step:last-child::before {
  display: none
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--nw-card);
  border: 1px solid var(--nw-border);
  border-radius: var(--nw-radius);
  padding: 32px;
  height: 100%;
  transition: all .3s
}

.testimonial-card:hover {
  border-color: rgba(79, 70, 229, .4);
  transform: translateY(-4px)
}

.stars {
  color: #f59e0b;
  font-size: .9rem;
  margin-bottom: 1rem
}

.testimonial-text {
  color: var(--nw-muted);
  font-size: .95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--nw-gradient);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: .9rem
}

.author-role {
  color: var(--nw-muted);
  font-size: .8rem
}

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--nw-card);
  border: 1px solid var(--nw-border);
  border-radius: var(--nw-radius);
  overflow: hidden;
  transition: all .3s;
  height: 100%
}

.blog-card:hover {
  border-color: rgba(79, 70, 229, .4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, .15)
}

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.blog-thumb-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--nw-dark3), var(--nw-dark2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--nw-primary)
}

.blog-body {
  padding: 24px
}

.blog-cat {
  display: inline-block;
  background: rgba(79, 70, 229, .15);
  color: var(--nw-primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .8rem
}

.blog-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.4
}

.blog-meta {
  color: var(--nw-muted);
  font-size: .8rem;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.blog-excerpt {
  color: var(--nw-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 10px 0
}

.blog-read-more {
  color: var(--nw-primary);
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s
}

.blog-card:hover .blog-read-more {
  gap: 10px
}

/* ── CTA SECTION ── */
.nw-cta {
  background: linear-gradient(135deg, var(--nw-dark3), var(--nw-dark2));
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.nw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(79, 70, 229, .2), transparent)
}

/* ── AD BLOCK ── */
.ad-block {
  background: rgba(255, 255, 255, .03);
  border: 1px dashed rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0
}

.ad-placeholder {
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ── PROJECT CARDS ── */
.project-card {
  background: var(--nw-card);
  border: 1px solid var(--nw-border);
  border-radius: var(--nw-radius);
  overflow: hidden;
  transition: all .3s;
  height: 100%
}

.project-card:hover {
  border-color: rgba(79, 70, 229, .4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, .2)
}

.project-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover
}

.project-thumb-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--nw-dark3), var(--nw-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, .3)
}

.project-body {
  padding: 24px
}

.project-cat {
  display: inline-block;
  background: rgba(6, 182, 212, .1);
  color: var(--nw-accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .8rem
}

.project-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0
}

.tech-tag {
  background: rgba(255, 255, 255, .06);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  color: var(--nw-muted)
}

/* ── WHY CHOOSE US ── */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(79, 70, 229, .15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--nw-primary);
  flex-shrink: 0
}

.why-content h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .3rem
}

.why-content p {
  color: var(--nw-muted);
  font-size: .88rem;
  margin: 0
}

/* ── FOOTER ── */
.nw-footer {
  background: var(--nw-dark2);
  border-top: 1px solid var(--nw-border)
}

.footer-top {
  padding: 80px 0 60px
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff
}

.footer-about {
  color: var(--nw-muted);
  font-size: .9rem;
  line-height: 1.8
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--nw-border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--nw-muted);
  font-size: .9rem;
  transition: all .3s
}

.footer-socials a:hover {
  background: var(--nw-primary);
  color: #fff;
  border-color: var(--nw-primary)
}

.footer-heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--nw-gradient)
}

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

.footer-links li {
  margin-bottom: .6rem
}

.footer-links a {
  color: var(--nw-muted);
  font-size: .88rem;
  transition: color .2s
}

.footer-links a:hover {
  color: var(--nw-accent)
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  color: var(--nw-muted);
  font-size: .88rem;
  margin-bottom: 1rem;
  align-items: flex-start
}

.footer-contact li i {
  color: var(--nw-primary);
  margin-top: 3px;
  flex-shrink: 0
}

.footer-contact a {
  color: var(--nw-muted);
  transition: color .2s
}

.footer-contact a:hover {
  color: var(--nw-accent)
}

.btn-nw-footer {
  background: rgba(79, 70, 229, .15);
  border: 1px solid rgba(79, 70, 229, .3);
  color: var(--nw-primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .3s
}

.btn-nw-footer:hover {
  background: var(--nw-primary);
  color: #fff
}

.footer-bottom {
  background: rgba(0, 0, 0, .2);
  padding: 20px 0;
  border-top: 1px solid var(--nw-border);
  color: var(--nw-muted);
  font-size: .85rem
}

.footer-bottom a {
  color: var(--nw-muted);
  margin: 0 6px;
  transition: color .2s
}

.footer-bottom a:hover {
  color: var(--nw-accent)
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--nw-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 999;
  display: grid;
  place-items: center
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, .5)
}

/* ── FORMS ── */
.nw-form .form-control,
.nw-form .form-select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--nw-border);
  color: var(--nw-text);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .92rem;
  transition: all .3s
}

.nw-form .form-control:focus,
.nw-form .form-select:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--nw-primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
  color: #fff
}

.nw-form .form-control::placeholder {
  color: var(--nw-muted)
}

.nw-form .form-label {
  color: var(--nw-muted);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem
}

.nw-form textarea.form-control {
  resize: vertical;
  min-height: 140px
}

/* ── ALERTS ── */
.alert-nw-success {
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #6ee7b7;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: .9rem
}

.alert-nw-error {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  color: #fca5a5;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: .9rem
}

/* ── SERVICE DETAIL ── */
.service-feature-list {
  list-style: none;
  padding: 0
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--nw-muted);
  font-size: .92rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--nw-border)
}

.service-feature-list li:last-child {
  border: none
}

.service-feature-list li i {
  color: var(--nw-primary);
  margin-top: 3px;
  flex-shrink: 0
}

/* ── BADGE FILTERS ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.filter-btn {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--nw-border);
  color: var(--nw-muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--nw-primary);
  color: #fff;
  border-color: var(--nw-primary)
}

/* ── PAGINATION ── */
.pagination .page-link {
  background: var(--nw-card);
  border: 1px solid var(--nw-border);
  color: var(--nw-muted);
  border-radius: 10px !important;
  margin: 0 3px;
  padding: 8px 16px;
  transition: all .2s
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--nw-primary);
  border-color: var(--nw-primary);
  color: #fff
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
  .nw-section {
    padding: 70px 0
  }

  .hero-visual {
    margin-top: 60px
  }

  .hero-card-float {
    display: none
  }

  .process-step::before {
    display: none
  }

  .container {
    padding-left: 16px;
    padding-right: 16px
  }
}

@media(max-width:767px) {
  .nw-section {
    padding: 50px 0
  }

  .hero-stats {
    gap: 20px
  }

  .footer-top {
    padding: 50px 0 40px
  }

  .hero-stats strong {
    font-size: 1.6rem
  }

  .hero-btns {
    flex-direction: column
  }

  .btn-hero-primary,
  .btn-hero-outline {
    text-align: center;
    justify-content: center;
    padding: 14px 28px
  }

  .page-hero {
    padding: 130px 0 60px
  }
}

@media(max-width:480px) {
  .nw-section {
    padding: 40px 0
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px
  }

  .hero-stats {
    gap: 16px
  }
}