/* ═══════════════════════════════════════
   TECHOXI — Web Development Agency
   style.css
═══════════════════════════════════════ */

:root {
  --bg: #070b14;
  --bg-2: #0c1220;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-h: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.07);
  --border-h: rgba(99, 179, 237, 0.3);
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --accent-3: #34d399;
  --accent-4: #fb923c;
  --accent-glow: rgba(56, 189, 248, 0.15);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --ff-d: 'Syne', sans-serif;
  --ff-b: 'DM Sans', sans-serif;
  --nav-h: 70px;
  --radius: 14px;
  --radius-sm: 8px;
  --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add at the very top of style.css after :root */
* {
  will-change: auto;
}

/* Optimize modal transitions */
.demo-modal {
  will-change: opacity;
}

.modal-inner {
  will-change: transform;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--ff-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

ul {
  list-style: none
}

input,
textarea,
select,
button {
  font-family: inherit
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 110px 0
}

.section-header {
  text-align: center;
  margin-bottom: 60px
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-d);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, .2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px
}

.section-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #e2e8f0 30%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 14px
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  will-change: transform;
}

.glass-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-3px)
}

/* ── BG ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(56, 189, 248, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(56, 189, 248, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0
}

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .3;
  animation: orb-f 9s ease-in-out infinite alternate
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #38bdf8, transparent 60%);
  top: -160px;
  left: -120px
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #818cf8, transparent 60%);
  top: 40%;
  right: -100px;
  animation-delay: -4s
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #06b6d4, transparent 60%);
  bottom: -100px;
  left: 35%;
  animation-delay: -7s
}

@keyframes orb-f {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(30px, 45px) scale(1.1)
  }
}

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, .04), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
  z-index: 1;
  transition: opacity .3s;
}

header,
section,
footer {
  position: relative;
  z-index: 2
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-d);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap
}

.btn-primary {
  background: var(--accent);
  color: #070b14;
  border-color: var(--accent)
}

.btn-primary:hover {
  background: #7dd3fc;
  box-shadow: 0 0 22px rgba(56, 189, 248, .35);
  transform: translateY(-1px)
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border)
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-h);
  background: var(--surface-h)
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent)
}

.btn-outline:hover {
  background: var(--accent);
  color: #070b14;
  box-shadow: 0 0 20px var(--accent-glow)
}

.btn-lg {
  padding: 14px 28px;
  font-size: .95rem;
  border-radius: 10px
}

.btn-sm {
  padding: 6px 14px;
  font-size: .8rem
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px
}

/* ── NAV ── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--tr), box-shadow var(--tr)
}

.nav-header.scrolled {
  background: rgba(7, 11, 20, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px
}

.logo {
  font-family: var(--ff-d);
  font-size: 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: #070b14;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-right: 10px;
  
}

.logo-accent {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 4px
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 8px;
  color: var(--text-muted);
  transition: color var(--tr), background var(--tr);
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: left var(--tr), right var(--tr)
}

.nav-link:hover,
.nav-link.active {
  color: var(--text)
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 13px;
  right: 13px
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav-socials {
  display: flex;
  gap: 3px
}

.nav-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: 7px;
  transition: color var(--tr), background var(--tr)
}

.nav-socials a:hover {
  color: var(--accent);
  background: var(--accent-glow)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--tr)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h)
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px 20px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent-3);
  background: rgba(52, 211, 153, .08);
  border: 1px solid rgba(52, 211, 153, .2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-3);
  animation: pdot 1.8s ease-in-out infinite;
  flex-shrink: 0
}

@keyframes pdot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, .4)
  }

  50% {
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0)
  }
}

.hero-heading {
  font-family: var(--ff-d);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap
}

.stat {
  display: flex;
  flex-direction: column
}

.stat-num {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1
}

.stat-label {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border)
}

.typed-cursor {
  color: var(--accent);
  animation: blink .7s step-end infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* Hero browser mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.hero-browser {
  width: 100%;
  max-width: 480px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), 0 0 0 1px var(--border);
  animation: browser-float 5s ease-in-out infinite alternate
}

@keyframes browser-float {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-12px)
  }
}

.browser-bar {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0
}

.b-dot.red {
  background: #ff5f57
}

.b-dot.yellow {
  background: #febc2e
}

.b-dot.green {
  background: #28c840
}

.b-url {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  color: var(--text-dim);
  font-family: monospace
}

.browser-screen.hero-screen {
  padding: 14px;
  background: var(--bg);
  min-height: 220px
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 200px
}

.prev-tile {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: tile-pulse 3s ease-in-out infinite alternate
}

@keyframes tile-pulse {
  0% {
    border-color: var(--border)
  }

  100% {
    border-color: var(--border-h)
  }
}

.tile-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  width: 60%
}

.tile-lines {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.tile-lines span {
  height: 4px;
  background: rgba(255, 255, 255, .07);
  border-radius: 2px;
  display: block;
  width: 100%
}

.tile-lines.sm span {
  height: 3px
}

.tile-btn {
  height: 14px;
  width: 50%;
  background: rgba(56, 189, 248, .2);
  border-radius: 4px;
  margin-top: auto
}

.tile-img-ph {
  flex: 1;
  background: linear-gradient(135deg, rgba(56, 189, 248, .1), rgba(129, 140, 248, .1));
  border-radius: 6px
}

.tile-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  padding-top: 10px
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  height: var(--h);
  opacity: .7
}

.tile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2))
}

.float-badge {
  position: absolute;
  font-size: .75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  animation: badge-bob 3s ease-in-out infinite alternate
}

.fb-1 {
  top: 20px;
  right: -20px;
  background: rgba(7, 11, 20, .9);
  color: var(--accent)
}

.fb-2 {
  bottom: 30px;
  left: -20px;
  background: rgba(7, 11, 20, .9);
  color: var(--accent-3)
}

@keyframes badge-bob {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(6px)
  }
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
  width: 100%
}

.ticker {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tick 25s linear infinite;
  width: max-content;
  will-change: transform;
}

.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}

.ticker span {
  font-family: var(--ff-d);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: .05em
}

.ticker span:not(:nth-child(2n)) {
  color: var(--text-muted)
}

@keyframes tick {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── ABOUT ── */
.about {
  background: linear-gradient(180deg, transparent, rgba(129, 140, 248, .03) 50%, transparent)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-left .section-tag {
  align-self: flex-start
}

.about-left .section-title {
  text-align: left;
  margin-bottom: 0
}

.about-text {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.78
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px
}

.about-pills span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px
}

.about-pills i {
  color: var(--accent-3)
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.about-stat-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.asc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, .2);
  color: var(--accent)
}

.asc-icon.accent-2 {
  background: rgba(129, 140, 248, .12);
  border-color: rgba(129, 140, 248, .2);
  color: var(--accent-2)
}

.asc-icon.accent-3 {
  background: rgba(52, 211, 153, .1);
  border-color: rgba(52, 211, 153, .2);
  color: var(--accent-3)
}

.asc-icon.accent-4 {
  background: rgba(251, 146, 60, .1);
  border-color: rgba(251, 146, 60, .2);
  color: var(--accent-4)
}

.asc-num {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1
}

.asc-label {
  font-size: .8rem;
  color: var(--text-muted)
}

/* ── SERVICES ── */
.services {
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, .02) 50%, transparent)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.service-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden
}

.service-card.featured {
  border-color: rgba(129, 140, 248, .3);
  box-shadow: 0 0 30px rgba(129, 140, 248, .08)
}

.sc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(129, 140, 248, .12);
  border: 1px solid rgba(129, 140, 248, .25);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: .05em
}

.sc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, .2);
  color: var(--accent)
}

.sc-icon.accent-2-icon {
  background: rgba(129, 140, 248, .12);
  border-color: rgba(129, 140, 248, .2);
  color: var(--accent-2)
}

.sc-icon.accent-3-icon {
  background: rgba(52, 211, 153, .1);
  border-color: rgba(52, 211, 153, .2);
  color: var(--accent-3)
}

.sc-icon.accent-4-icon {
  background: rgba(251, 146, 60, .1);
  border-color: rgba(251, 146, 60, .2);
  color: var(--accent-4)
}

.service-card h3 {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 700
}

.service-card>p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px
}

.sc-list li {
  font-size: .82rem;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative
}

.sc-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: .75rem
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  transition: gap var(--tr)
}

.sc-link:hover {
  gap: 10px
}

/* ── OUR WORK ── */
.work {
  background: linear-gradient(180deg, transparent, rgba(129, 140, 248, .03) 50%, transparent)
}

.work-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px
}

.filter-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--ff-d);
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--tr)
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: #070b14;
  border-color: var(--accent)
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  overflow: hidden;
  transition: all var(--tr)
}

.work-card.hidden {
  display: none
}

/* Card thumbnail */
.wc-preview {
  position: relative;
  overflow: hidden
}

.wc-thumb {
  height: 190px;
  background: linear-gradient(135deg, hsl(from var(--clr1) h s 15%), hsl(from var(--clr2) h s 10%));
  position: relative;
  overflow: hidden;
  cursor: pointer
}

.wt-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 20px 20px
}

.wt-ui {
  position: absolute;
  inset: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wtu-nav {
  height: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px
}

.wtu-hero {
  flex: 1;
  background: linear-gradient(135deg, var(--clr1), var(--clr2));
  border-radius: 4px;
  opacity: .4
}

.wtu-hero.corporate {
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05))
}

.wtu-hero.fashion {
  background: linear-gradient(135deg, rgba(244, 114, 182, .3), rgba(236, 72, 153, .2))
}

.wtu-cards {
  display: flex;
  gap: 5px
}

.wtu-card {
  flex: 1;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border-radius: 4px
}

.wtu-dash {
  flex: 1;
  display: flex;
  gap: 6px
}

.wtu-sidebar {
  width: 28px;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px
}

.wtu-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.wtu-row {
  height: 14px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px
}

.wtu-row.sm {
  height: 8px;
  width: 70%
}

.wtu-3col {
  display: flex;
  gap: 5px
}

.wtu-3col>div {
  flex: 1;
  height: 30px;
  background: rgba(255, 255, 255, .06);
  border-radius: 4px
}

/* Overlay */
.wc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
  backdrop-filter: blur(4px)
}

.wc-preview:hover .wc-overlay {
  opacity: 1
}

.wc-body {
  padding: 20px
}

.wc-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px
}

.wc-title {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.wc-desc {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 13px
}

.wc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.wc-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--surface-h);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 6px
}

.wc-actions {
  display: flex;
  gap: 10px
}

/* ── DEMO MODAL ── */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s
}

.demo-modal.open {
  opacity: 1;
  pointer-events: all
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px)
}

.modal-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transform: scale(.95) translateY(20px);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .7)
}

.demo-modal.open .modal-inner {
  transform: scale(1) translateY(0)
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .03);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px
}

.modal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%
}

.modal-dot.red {
  background: #ff5f57
}

.modal-dot.yellow {
  background: #febc2e
}

.modal-dot.green {
  background: #28c840
}

.modal-url {
  font-size: .8rem;
  color: var(--text-dim);
  font-family: monospace;
  background: rgba(255, 255, 255, .04);
  padding: 4px 12px;
  border-radius: 6px;
  margin-left: 4px
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  transition: all var(--tr)
}

.modal-close:hover {
  color: var(--text);
  background: var(--surface-h)
}

.modal-frame-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 400px
}

.modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

.modal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg);
  transition: opacity .3s
}

.modal-loading.hide {
  opacity: 0;
  pointer-events: none
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.modal-loading p {
  font-size: .85rem;
  color: var(--text-muted)
}

.modal-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-shrink: 0
}

.modal-info {
  flex: 1
}

.modal-info h3 {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px
}

.modal-info p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 10px
}

.modal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.modal-tags span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(56, 189, 248, .2);
  padding: 3px 9px;
  border-radius: 6px
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, .02) 50%, transparent)
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.testi-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.testi-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px
}

.testi-card>p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-d);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  flex-shrink: 0
}

.testi-author strong {
  display: block;
  font-size: .9rem;
  font-weight: 600
}

.testi-author span {
  font-size: .78rem;
  color: var(--text-dim)
}

/* ── CONTACT ── */
.contact {
  background: linear-gradient(180deg, transparent, rgba(129, 140, 248, .03) 50%, transparent)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--accent)
}

.ci-label {
  font-size: .72rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 2px
}

.contact-item a,
.contact-item span {
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--tr)
}

.contact-item a:hover {
  color: var(--accent)
}

.why-us {
  padding: 22px 24px
}

.why-us h4 {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text)
}

.why-us ul {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.why-us li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted)
}

.why-us i {
  color: var(--accent-3);
  font-size: 1rem
}

.contact-form {
  padding: 34px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px
}

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  resize: vertical;
  -webkit-appearance: none
}

.form-group select {
  cursor: pointer
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .1)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim)
}

.form-success {
  display: none;
  text-align: center;
  margin-top: 14px;
  font-size: .88rem;
  color: #22c55e
}

.form-success.show {
  display: block
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: rgba(0, 0, 0, .25)
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center
}

.footer-logo {
  font-size: 1.5rem
}

.footer-tagline {
  font-size: .88rem;
  color: var(--text-muted)
}

.footer-socials {
  display: flex;
  gap: 8px
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--tr)
}

.footer-socials a:hover {
  color: var(--accent);
  border-color: var(--border-h);
  background: var(--accent-glow)
}

.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 40px
}

.footer-col h4 {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-col li a,
.footer-col li span {
  font-size: .86rem;
  color: var(--text-dim);
  transition: color var(--tr)
}

.footer-col li a:hover {
  color: var(--accent)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: .8rem;
  color: var(--text-dim)
}

.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #070b14;
  border: none;
  border-radius: 10px;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--tr);
  z-index: 90;
  box-shadow: 0 4px 20px rgba(56, 189, 248, .3)
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0)
}

.back-top:hover {
  background: #7dd3fc;
  transform: translateY(-2px)
}

/* ── AOS ── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

[data-aos].in-view {
  opacity: 1;
  transform: translateY(0)
}

[data-aos][data-aos-delay="80"] {
  transition-delay: .08s
}

[data-aos][data-aos-delay="100"] {
  transition-delay: .1s
}

[data-aos][data-aos-delay="120"] {
  transition-delay: .12s
}

[data-aos][data-aos-delay="150"] {
  transition-delay: .15s
}

[data-aos][data-aos-delay="160"] {
  transition-delay: .16s
}

[data-aos][data-aos-delay="200"] {
  transition-delay: .2s
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 30px
  }

  .hero-visual {
    order: -1
  }

  .hero-badge,
  .hero-sub {
    margin-left: auto;
    margin-right: auto
  }

  .hero-actions,
  .hero-stats {
    justify-content: center
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .about-left .section-title {
    text-align: center
  }

  .about-left .section-tag,
  .about-left .btn {
    align-self: center
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .testi-grid {
    grid-template-columns: 1fr
  }

  .nav-links,
  .nav-socials,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7, 11, 20, .97);
    backdrop-filter: blur(16px);
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--border);
    gap: 4px
  }

  .nav-link::after {
    display: none
  }

  .footer-mid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .section {
    padding: 70px 0
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .work-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-mid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .modal-footer {
    flex-direction: column
  }

  .hero-browser {
    max-width: 100%
  }

  .float-badge {
    display: none
  }
}


/* ── MOBILE PAGE TABS (below navbar) ── */
@media(max-width:900px) {
  .mobile-page-tabs {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 99;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 10px;
    gap: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    opacity: 1;
    visibility: visible;
  }

  .mobile-page-tabs.hidden {
    opacity: 0;
    visibility: hidden;
  }

  body {
    padding-top: 122px;
  }

  .hero {
    padding-top: 0;
    min-height: calc(100vh - 122px);
  }

  .mobile-page-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-page-tabs a {
    flex-shrink: 0;
    padding: 6px 16px;
    font-family: var(--ff-d);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin: 7px 4px;
    transition: color var(--tr), background var(--tr), border-color var(--tr);
    text-decoration: none;
    background: transparent;
  }

  .mobile-page-tabs a:hover,
  .mobile-page-tabs a.active {
    color: var(--accent);
    border-color: rgba(56, 189, 248, 0.4);
    background: var(--accent-glow);
  }



  .nav-links,
  .nav-socials {
    display: none;
  }
}

@media(min-width:901px) {
  .mobile-page-tabs {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, .3);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(56, 189, 248, .6)
}