* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth
}

:root {
  --bg: #05060a;
  --bg2: #0d0e16;
  --surface: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(239, 95, 40, 0.35);
  --txt: #f1f2f6;
  --muted: #788095;
  --dim: #4a5060;
  --neural: #00d480;
  --brand: #ff6b35;
  --brand2: #e85d2a;
  --glow: rgba(255, 107, 53, 0.15);
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

canvas#nn {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.z1 {
  position: relative;
  z-index: 1
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 9, 14, 0.85);
  backdrop-filter: blur(16px)
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.18em;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s
}

.nav-links a:hover {
  color: #fff
}

.nav-links a.active {
  color: #fff;
  font-weight: 600;
  pointer-events: none
}

.nav-cta {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .2s, transform .15s
}

.nav-cta:hover {
  background: var(--brand2);
  transform: translateY(-1px)
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  padding-top: 64px;
  position: relative
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--neural);
  border: 1px solid rgba(0, 201, 122, 0.18);
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(0, 201, 122, 0.05);
  margin-bottom: 28px
}

.ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neural);
  position: relative;
  flex-shrink: 0
}

.ping::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(0, 201, 122, 0.3);
  animation: ping 1.6s ease-out infinite
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1
  }

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

h1.hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 28px
}

h1.hero-h1 .orange {
  color: var(--brand)
}

.hero-sub {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px
}

.btn-p {
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-p:hover {
  background: var(--brand2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239, 95, 40, 0.28)
}

.btn-s {
  background: transparent;
  color: var(--txt);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-s:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(255, 255, 255, 0.04)
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border)
}

.stat-item .num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em
}

.stat-item .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border)
}

/* TERMINAL PANEL */
.term-wrap {
  position: relative
}

.terminal {
  background: #07080d;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  line-height: 1.65
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: #09090f
}

.td {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.td1 {
  background: #ff5f56
}

.td2 {
  background: #ffbd2e
}

.td3 {
  background: #27c93f
}

.term-title {
  font-size: 11px;
  color: var(--dim);
  margin-left: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif
}

.term-body {
  padding: 20px;
  min-height: 240px
}

.term-line {
  display: block;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s
}

.term-line.show {
  opacity: 1;
  transform: translateY(0)
}

.tc-g {
  color: var(--neural)
}

.tc-m {
  color: var(--muted)
}

.tc-o {
  color: #f59e0b
}

.tc-w {
  color: #fff
}

.float-card {
  position: absolute;
  background: rgba(13, 14, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 12px 16px;
  backdrop-filter: blur(12px);
  white-space: nowrap
}

.fc1 {
  top: -22px;
  right: -18px;
  animation: fcfloat 4s ease-in-out infinite
}

.fc2 {
  bottom: -18px;
  left: -20px;
  animation: fcfloat 4s ease-in-out 2s infinite
}

@keyframes fcfloat {

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

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

.fc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff
}

.fc-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: relative;
  z-index: 1
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent)
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent)
}

.ticker-inner {
  display: flex;
  animation: tick 32s linear infinite;
  white-space: nowrap
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.ticker-inner:hover {
  animation-play-state: paused
}

.tick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted)
}

.tick-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0
}

/* SECTION COMMON */
section.sect {
  padding: 72px 32px;
  max-width: 1280px;
  margin: 0 auto
}

.sect-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px
}

.sect-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12
}

.sect-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 540px
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px
}

.svc-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background .25s;
  position: relative
}

.svc-card:hover {
  background: var(--bg2)
}

.svc-card:nth-child(1),
.svc-card:nth-child(2) {
  grid-column: span 1
}

.svc-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 20px
}

.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px
}

.svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em
}

.svc-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid
}

.svc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 22px;
  transition: gap .2s;
  color: var(--muted)
}

.svc-link:hover {
  gap: 10px;
  color: #fff
}

/* METRICS BAR */
.metrics {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1
}

.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto
}

.met {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  text-align: center
}

.met:last-child {
  border-right: none
}

.met-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em
}

.met-num span {
  color: var(--brand)
}

.met-lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4
}

/* PROCESS */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative
}

.process-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0
}

.proc {
  position: relative;
  z-index: 1;
  padding: 0 24px
}

.proc-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 24px
}

.proc:hover .proc-num {
  border-color: var(--brand);
  color: var(--brand)
}

.proc-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.proc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px
}

.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .25s
}

.testi:hover {
  border-color: rgba(239, 95, 40, 0.2)
}

.testi-stars {
  color: var(--brand);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testi-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px
}

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

.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0
}

.testi-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff
}

.testi-role {
  font-size: 12px;
  color: var(--dim)
}

/* FAQ */
.faq-wrap {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

details.faq {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s
}

details.faq[open] {
  border-color: rgba(239, 95, 40, 0.25)
}

details.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  gap: 16px
}

details.faq summary::-webkit-details-marker {
  display: none
}

details.faq summary .ico {
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
  display: inline-block
}

details.faq[open] summary .ico {
  transform: rotate(45deg)
}

.faq-ans {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.72;
  border-top: 1px solid var(--border)
}

/* CTA SECTION */
.cta-sect {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  z-index: 1
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.cta-h {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2
}

.cta-h span {
  color: var(--brand)
}

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 440px;
  line-height: 1.65
}

.cta-avail {
  font-size: 12px;
  color: var(--dim);
  margin-top: 12px
}

/* BRAND SECTION */
.brand-sect {
  padding: 80px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}

.brand-inner {
  max-width: 800px;
  margin: 0 auto;
}

.brand-logo-wrap {
  margin-bottom: 24px;
}

.brand-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}


/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 48px 32px;
  position: relative;
  z-index: 1;
  background: var(--bg2)
}

.foot-inner {
  max-width: 1280px;
  margin: 0 auto
}

.foot-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px
}

.foot-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none
}

.foot-col ul a {
  font-size: 13.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

.foot-col ul a:hover {
  color: #fff
}

.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.foot-copy {
  font-size: 12.5px;
  color: var(--dim)
}

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

.social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s
}

.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05)
}

/* FEATURE TAG & CHECK LIST (Futuristic UI) */
.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.check-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-top: 2px;
}

.check-item div:nth-child(2) {
  color: var(--muted);
}

.check-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--txt);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

/* MOBILE */
@media(max-width:900px) {
  nav {
    padding: 0 20px
  }

  .nav-links {
    display: none
  }

  .hero {
    padding: 80px 20px 40px
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .term-wrap {
    display: none
  }

  section.sect {
    padding: 64px 20px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .metrics-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

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

  .testi-grid {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    text-align: center
  }

  .foot-top {
    grid-template-columns: 1fr 1fr
  }

  footer {
    padding: 40px 20px 24px
  }

  .cta-sect {
    padding: 56px 20px
  }
}

@media(max-width:640px) {
  .metrics-inner {
    grid-template-columns: 1fr 1fr
  }

  .met {
    padding: 32px 20px
  }

  .foot-top {
    grid-template-columns: 1fr
  }
}

/* SHARED LEGACY GLASS UTILS ADAPTED FOR NEW THEME */
.glass {
  background: rgba(8, 9, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(0, 201, 122, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 201, 122, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(239, 95, 40, 0.2), transparent);
  transition: left 0.5s;
}

.btn-shine:hover::after {
  left: 100%;
}

/* PORTFOLIO SPECIFIC */
.service-full-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
}

.service-full-card .grid {
  align-items: stretch;
}

.portfolio-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-12px);
  border-color: rgba(239, 95, 40, 0.32);
}

.portfolio-card .portfolio-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.portfolio-card img.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover img.portfolio-image {
  transform: scale(1.1);
}

.portfolio-content {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-overlay {
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* CONTACT SPECIFIC */
.form-input {
  background: rgba(13, 14, 22, 0.8);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 201, 122, 0.5);
  box-shadow: 0 0 20px rgba(0, 201, 122, 0.1);
}

.form-input::placeholder {
  color: var(--muted);
}

.contact-item {
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
}

/* INSIGHTS & ARTICLES */
.insights-card:hover {
  box-shadow: 0 0 40px rgba(0, 201, 122, 0.05);
  border-color: rgba(0, 201, 122, 0.4);
  transform: translateY(-4px);
}

.blog-img-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 1rem 1rem 0 0;
}

.blog-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--surface));
}

/* MODAL STYLES */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none !important;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-modal.active {
  display: flex !important;
  pointer-events: auto;
  opacity: 1;
}

.article-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.article-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid rgba(0, 201, 122, 0.2);
  border-radius: 2rem;
  padding: 0;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 201, 122, 0.1);
}

.article-modal.active .article-modal-content {
  transform: scale(1) translateY(0);
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.close-modal:hover {
  background: var(--brand);
  color: var(--bg);
  transform: rotate(90deg);
}

/* PROSE STYLES */
.prose h1 {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 2rem;
}

.prose h2 {
  color: var(--txt);
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  color: var(--neural);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.prose p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.prose ul,
.prose ol {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.prose blockquote {
  border-left: 4px solid var(--brand);
  padding-left: 1.5rem;
  margin-left: 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 201, 122, 0.05);
  padding: 1.5rem;
  border-radius: 0 1rem 1rem 0;
}

/* ════════════════════════════════════════════════════════════
   TIER-1 AGENCY VISUAL ENHANCEMENTS
   ════════════════════════════════════════════════════════════ */

/* Equal height grid columns for service cards */
.grid-cols-1.lg\\:grid-cols-2 {
  align-items: stretch;
}

.grid-cols-1.lg\\:grid-cols-2>* {
  height: 100%;
}

/* Service full card - ensure equal heights */
.service-full-card>.grid {
  min-height: 600px;
}

.service-full-card>.grid>div {
  height: auto;
  min-height: 100%;
}

/* Ensure cards fill available space */
.card-fill {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-fill>*:last-child {
  margin-top: auto;
}

/* 1. MOTION CHOREOGRAPHY - Staggered Fade-in Reveals */
.reveal-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay classes */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* Card grid stagger animation */
.grid-stagger>*:nth-child(1) {
  transition-delay: 0.05s;
}

.grid-stagger>*:nth-child(2) {
  transition-delay: 0.1s;
}

.grid-stagger>*:nth-child(3) {
  transition-delay: 0.15s;
}

.grid-stagger>*:nth-child(4) {
  transition-delay: 0.2s;
}

.grid-stagger>*:nth-child(5) {
  transition-delay: 0.25s;
}

.grid-stagger>*:nth-child(6) {
  transition-delay: 0.3s;
}

/* 2. INTERACTIVE LUMINESCENCE - Cursor Following Radial Gradient */
.luminescence-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cursor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 95, 40, 0.05) 0%, rgba(0, 201, 122, 0.03) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: blur(40px);
}

/* 3. COMPONENT REFINEMENT */

/* Sticky Header with backdrop blur enhancement */
nav.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 9, 14, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

nav.nav-scrolled {
  background: rgba(8, 9, 14, 0.9);
  border-bottom-color: rgba(239, 95, 40, 0.2);
}

/* Button scale and glow on hover */
.btn-enhanced {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background-color 0.2s ease;
  will-change: transform;
}

.btn-enhanced:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(239, 95, 40, 0.4), 0 10px 40px rgba(239, 95, 40, 0.2);
}

.btn-enhanced:active {
  transform: scale(1.02);
}

/* Card refinement - 24px radius and shadow depth */
.card-enhanced {
  border-radius: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  will-change: transform, box-shadow;
}

.card-enhanced:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(239, 95, 40, 0.1);
}

/* Glass card enhanced */
.glass-card-enhanced {
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-color: rgba(239, 95, 40, 0.2);
}

/* Feature nav pills */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: rgba(239, 95, 40, 0.08);
  border: 1px solid rgba(239, 95, 40, 0.2);
  color: var(--brand);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-pill:hover {
  background: rgba(239, 95, 40, 0.14);
  border-color: rgba(239, 95, 40, 0.4);
  color: #fff;
}

.feature-pill.purple {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.2);
  color: #a78bfa;
}

.feature-pill.purple:hover {
  background: rgba(167, 139, 250, 0.14);
  border-color: rgba(167, 139, 250, 0.4);
  color: #fff;
}

.feature-pill.green {
  background: rgba(0, 201, 122, 0.08);
  border-color: rgba(0, 201, 122, 0.2);
  color: var(--neural);
}

.feature-pill.green:hover {
  background: rgba(0, 201, 122, 0.14);
  border-color: rgba(0, 201, 122, 0.4);
  color: #fff;
}

.feature-pill.pink {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.feature-pill.pink:hover {
  background: rgba(236, 72, 153, 0.14);
  border-color: rgba(236, 72, 153, 0.4);
  color: #fff;
}

/* Feature pill enhanced */
.feature-pill-enhanced {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.feature-pill-enhanced:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 95, 40, 0.15);
}

/* 4. NUMBER TICKER ANIMATION */
.ticker-number {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* 5. PRECISION POLISH - Typography & 8px Grid System */

/* Modern editorial typography with tight tracking */
.tracking-tight-custom {
  letter-spacing: -0.02em;
}

.tracking-tighter-custom {
  letter-spacing: -0.035em;
}

/* Strict 8px grid alignment helpers */
.grid-8 {
  padding: 8px;
}

.grid-16 {
  padding: 16px;
}

.grid-24 {
  padding: 24px;
}

.grid-32 {
  padding: 32px;
}

.grid-40 {
  padding: 40px;
}

.grid-48 {
  padding: 48px;
}

.grid-56 {
  padding: 56px;
}

.grid-64 {
  padding: 64px;
}

/* Section padding aligned to 8px grid */
.section-grid {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* Service full card enhanced */
.service-full-card-enhanced {
  border-radius: 24px;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}

.service-full-card-enhanced:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Check item enhanced */
.check-item-enhanced {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.check-item-enhanced:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(239, 95, 40, 0.15);
}

/* Stats enhanced */
.stat-enhanced {
  transition: transform 0.3s ease;
}

.stat-enhanced:hover {
  transform: scale(1.05);
}

/* Orb enhanced animation */
.orb-enhanced {
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {

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

  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

/* Link hover underline effect */
.link-underline {
  position: relative;
  text-decoration: none;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* Navigation link enhanced */
.nav-link-enhanced {
  position: relative;
  transition: color 0.2s ease;
}

.nav-link-enhanced::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-enhanced:hover::after,
.nav-link-enhanced.active::after {
  width: 100%;
}

/* Mobile menu animation */
.mobile-menu-enter {
  opacity: 0;
  transform: translateY(-10px);
}

.mobile-menu-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-element {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   PREMIUM UI ENHANCEMENTS 2026
   ════════════════════════════════════════════════════════════ */

/* Animated gradient orbs - background depth */
.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neural) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -10s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -5s;
  opacity: 0.05;
}

@keyframes orbFloat {

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

  25% {
    transform: translate(30px, -40px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }

  75% {
    transform: translate(40px, 20px) scale(1.02);
  }
}

/* Cursor glow effect */
.cursor-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(255, 107, 53, 0.08) 0%,
      rgba(0, 212, 128, 0.04) 35%,
      transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  transition: opacity 0.4s ease;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger-1 {
  transition-delay: 0.05s;
}

.reveal.stagger-2 {
  transition-delay: 0.1s;
}

.reveal.stagger-3 {
  transition-delay: 0.15s;
}

.reveal.stagger-4 {
  transition-delay: 0.2s;
}

.reveal.stagger-5 {
  transition-delay: 0.25s;
}

.reveal.stagger-6 {
  transition-delay: 0.3s;
}

/* Enhanced glass cards */
.glass-card-premium {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-premium:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 60px rgba(255, 107, 53, 0.1);
  transform: translateY(-4px);
}

/* Service card premium */
.svc-card-premium {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.svc-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 107, 53, 0.3) 50%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card-premium:hover {
  border-color: rgba(255, 107, 53, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 107, 53, 0.08);
}

.svc-card-premium:hover::before {
  opacity: 1;
}

.svc-card-premium .svc-icon {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card-premium:hover .svc-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Button premium */
.btn-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover::before {
  width: 300px;
  height: 300px;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 40px rgba(255, 107, 53, 0.3),
    0 0 60px rgba(255, 107, 53, 0.2);
}

/* Typography enhancements */
.hero-h1-premium {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #f1f2f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sect-h-premium {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--neural) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Shimmer effect */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Metric pulse */
.metric-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Floating animation */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

/* Glow border animation */
.glow-border {
  position: relative;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
      var(--brand),
      var(--neural),
      var(--brand));
  border-radius: inherit;
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.glow-border:hover::before {
  opacity: 0.8;
}

/* Section divider with glow */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--border) 20%,
      var(--border) 80%,
      transparent 100%);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--brand),
      transparent);
  animation: dividerGlow 2s ease-in-out infinite;
}

@keyframes dividerGlow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Premium badge */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg,
      rgba(0, 212, 128, 0.15) 0%,
      rgba(0, 212, 128, 0.05) 100%);
  border: 1px solid rgba(0, 212, 128, 0.3);
  color: var(--neural);
  box-shadow: 0 0 20px rgba(0, 212, 128, 0.1);
}

.badge-premium .ping {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neural);
  box-shadow: 0 0 12px var(--neural);
}

/* Testimonial premium */
.testi-premium {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-premium:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* FAQ premium */
.faq-premium {
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-premium[open] {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.08);
}

.faq-premium summary {
  transition: color 0.3s ease;
}

.faq-premium:hover summary {
  color: var(--brand);
}

/* CTA section premium */
.cta-premium {
  position: relative;
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {

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

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Smooth focus styles */
*:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Selection color */
::selection {
  background: rgba(255, 107, 53, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(255, 107, 53, 0.3);
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   SELECTED WORKS BENTO GRID
   ════════════════════════════════════════════════════════════ */
.works-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.work-card:hover {
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 107, 53, 0.08);
}

.work-large {
  grid-row: span 2;
}

.work-wide {
  grid-column: span 2;
}

.work-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.work-large .work-img-wrap {
  height: 300px;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-img {
  transform: scale(1.06);
}

.work-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 6, 10, 0.9) 100%);
}

.work-content {
  padding: 24px 28px 28px;
}

.work-win {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.work-win-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.work-win-lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.work-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.work-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.work-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.02);
}

@media(max-width:900px) {
  .works-bento {
    grid-template-columns: 1fr;
  }

  .work-large {
    grid-row: span 1;
  }

  .work-wide {
    grid-column: span 1;
  }
}

/* ════════════════════════════════════════════════════════════
   METHODOLOGY SECTION
   ════════════════════════════════════════════════════════════ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.method-card:hover {
  border-color: rgba(255, 107, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.method-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 16px;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.method-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.method-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.method-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.method-metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--neural);
}

.method-metric-lbl {
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.method-result {
  margin-top: 32px;
}

.method-result-inner {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(0, 212, 128, 0.04));
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.method-result-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-shrink: 0;
}

.method-result-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
}

.method-result-lbl {
  font-size: 15px;
  color: var(--muted);
  max-width: 280px;
  line-height: 1.5;
}

.method-result-note {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.6;
  max-width: 400px;
}

@media(max-width:900px) {
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-result-inner {
    flex-direction: column;
    text-align: center;
  }

  .method-result-stat {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* ════════════════════════════════════════════════════════════
   QUICK QUALIFY MODAL
   ════════════════════════════════════════════════════════════ */
.qq-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.qq-modal.active {
  pointer-events: auto;
  opacity: 1;
}

.qq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.qq-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 24px;
  padding: 40px;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 107, 53, 0.1);
}

.qq-modal.active .qq-container {
  transform: scale(1) translateY(0);
}

.qq-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.qq-close:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.qq-progress {
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 32px;
  overflow: hidden;
}

.qq-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--neural));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.qq-step {
  display: none;
}

.qq-step.active {
  display: block;
}

.qq-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.qq-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.qq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transition: transform 0.3s ease;
}

.qq-grid.shake {
  animation: qqShake 0.4s ease;
}

@keyframes qqShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

.qq-type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.qq-type-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.qq-type-card.selected {
  border-color: var(--brand);
  background: rgba(255, 107, 53, 0.08);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15);
}

.qq-card-icon {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.qq-card-label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
}

.qq-type-card.selected .qq-card-label {
  color: #fff;
}

.qq-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
  margin-bottom: 10px;
}

.qq-budget-display {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
}

.qq-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
}

.qq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

.qq-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--dim);
  margin-top: 8px;
}

.qq-select {
  width: 100%;
  background: rgba(13, 14, 22, 0.8);
  border: 1px solid var(--border);
  color: var(--txt);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.qq-select:focus {
  border-color: var(--brand);
  outline: none;
}

.qq-field {
  margin-bottom: 0;
}

@media(max-width:640px) {
  .qq-container {
    padding: 28px 20px;
    margin: 16px;
  }

  .qq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}