/* ============================================================
   NEXUS Digital Agency — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #030507;
  --bg2: #070c10;
  --surface: #0d1520;
  --surface2: #111e2e;
  --border: rgba(255, 255, 255, 0.06);
  --accent: #00e5ff;
  --accent2: #7b2fff;
  --accent3: #ff3d6b;
  --gold: #f0c060;
  --text: #e8f0fe;
  --muted: #6b7e96;
  --grad1: linear-gradient(135deg, #00e5ff, #7b2fff);
  --grad2: linear-gradient(135deg, #7b2fff, #ff3d6b);
  --grad3: linear-gradient(135deg, #00e5ff22, #7b2fff22);
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --r: 12px;
  --r2: 20px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px
}

::-webkit-scrollbar-track {
  background: var(--bg)
}

::-webkit-scrollbar-thumb {
  background: var(--accent2);
  border-radius: 2px
}

/* noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4
}

/* ── Cursor ─── */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .3s;
  opacity: .6
}

/* ── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: rgba(3, 5, 7, .7);
  backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: all .3s
}

.navbar.scrolled {
  height: 60px;
  background: rgba(3, 5, 7, .95)
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  list-style: none
}

.nav-links li a,
.nav-links li button {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: color .2s, background .2s;
  display: block
}

.nav-links li a:hover,
.nav-links li button:hover,
.nav-links li a.active,
.nav-links li button.active {
  color: var(--text);
  background: var(--surface)
}

.nav-cta {
  background: var(--grad1) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  border: 1px solid rgba(0, 229, 255, .3) !important;
  padding: 8px 18px !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3, 5, 7, .97);
  padding: 100px 4vw 40px;
  flex-direction: column;
  gap: 12px
}

.mobile-nav.open {
  display: flex
}

.mobile-nav button {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  padding: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  text-align: left
}

.mobile-nav button:last-child {
  border: none
}

/* ── Page system ─── */
.page {
  display: none
}

.page.active {
  display: block
}

section {
  position: relative;
  overflow: hidden
}

/* ── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 4vw 80px;
  position: relative
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(123, 47, 255, .12) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0, 229, 255, .08) 0%, transparent 60%)
}

.grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 60px 60px
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(123, 47, 255, .15);
  top: 10%;
  right: 5%
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 229, 255, .1);
  bottom: 10%;
  left: 10%;
  animation-delay: -3s
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 61, 107, .08);
  top: 50%;
  left: 40%;
  animation-delay: -5s
}

@keyframes orbFloat {

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

  33% {
    transform: translateY(-30px) scale(1.05)
  }

  66% {
    transform: translateY(20px) scale(.95)
  }
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent)
}

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

@keyframes pulse {

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

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

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.03em;
  margin-bottom: 24px
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line span {
  display: block;
  animation: slideUp .8s cubic-bezier(.16, 1, .3, 1) both
}

.hero h1 .line:nth-child(2) span {
  animation-delay: .1s
}

.hero h1 .line:nth-child(3) span {
  animation-delay: .2s
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

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

.hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeIn 1s .4s both
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeIn 1s .5s both
}

.hero-visual {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  width: min(500px, 45vw);
  animation: fadeIn 1.2s .3s both;
  z-index: 2
}

/* ── AI Card ─── */
.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden
}

.ai-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent)
}

.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .15);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .75rem;
  color: var(--accent)
}

.ai-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px
}

.metric-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px
}

.metric-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px
}

.metric-val {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800
}

.metric-val.up {
  color: #22c55e
}

.metric-val.blue {
  color: var(--accent)
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 16px
}

.bar {
  flex: 1;
  background: var(--surface2);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
  height: 60px
}

.bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad1);
  opacity: .7;
  transform: scaleY(var(--h));
  transform-origin: bottom;
  animation: barGrow 1s cubic-bezier(.34, 1.56, .64, 1) both
}

@keyframes barGrow {
  from {
    transform: scaleY(0)
  }

  to {
    transform: scaleY(1)
  }
}

/* ── Layout ─── */
.section-pad {
  padding: 100px 4vw
}

.section-pad-sm {
  padding: 70px 4vw
}

.container {
  max-width: 1200px;
  margin: 0 auto
}

.text-center {
  text-align: center
}

.text-center .section-sub {
  margin: 0 auto
}

.text-center .section-label {
  justify-content: center
}

.text-center .section-label::before {
  display: none
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 4vw
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent)
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 48px
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: center
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center
}

/* ── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad1);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px rgba(0, 229, 255, .25)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 229, 255, .4)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  padding: 14px 28px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .2);
  background: var(--surface)
}

/* ── Cards ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s
}

.card:hover {
  border-color: rgba(0, 229, 255, .2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at top, rgba(0, 229, 255, .06), transparent 60%);
  transition: opacity .3s;
  pointer-events: none
}

.card:hover .card-glow {
  opacity: 1
}

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--grad3);
  border: 1px solid rgba(0, 229, 255, .15)
}

/* ── Stats ─── */
.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  position: relative;
  overflow: hidden
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block
}

.stat-label {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 6px
}

/* ── Project Cards ─── */
.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform .3s
}

.project-card:hover {
  transform: translateY(-6px)
}

.project-thumb {
  height: 220px;
  background: var(--grad3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.project-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease
}

.project-card:hover .project-thumb img {
  transform: scale(1.05)
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 7, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.project-card:hover .project-overlay {
  opacity: 1
}

.project-meta {
  padding: 20px
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px
}

.tag-pill {
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .15);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: .72rem;
  color: var(--accent);
  font-weight: 500
}

/* ── Blog Cards ─── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.blog-thumb {
  height: 180px;
  background: var(--surface2);
  position: relative;
  overflow: hidden
}

.blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05)
}

.blog-meta {
  padding: 20px
}

.blog-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block
}

.blog-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 10px
}

.blog-excerpt {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--muted)
}

/* ── Testimonials ─── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px;
  position: relative
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .1;
  line-height: 1
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 2px
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--bg);
  flex-shrink: 0;
  overflow: hidden
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.reviewer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem
}

.reviewer-title {
  font-size: .78rem;
  color: var(--muted)
}

/* ── CTA Banner ─── */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(123, 47, 255, .12), transparent 70%);
  pointer-events: none
}

.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ── Pricing ─── */
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s
}

.pricing-card.featured {
  border-color: rgba(0, 229, 255, .3);
  background: linear-gradient(160deg, rgba(0, 229, 255, .05), var(--surface));
  box-shadow: 0 0 60px rgba(0, 229, 255, .1)
}

.pricing-card:hover {
  transform: translateY(-6px)
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grad1);
  color: var(--bg);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 16px 0 4px
}

.price-period {
  color: var(--muted);
  font-size: .88rem
}

.price-features {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.price-features li {
  display: flex;
  gap: 10px;
  font-size: .9rem;
  color: var(--muted)
}

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700
}

/* ── FAQ ─── */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: rgba(0, 229, 255, .2)
}

.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  user-select: none
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(0, 229, 255, .15);
  color: var(--accent)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px
}

/* ── Team Cards ─── */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px;
  text-align: center;
  transition: transform .3s
}

.team-card:hover {
  transform: translateY(-4px)
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--grad1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bg);
  position: relative;
  overflow: hidden
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

.team-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px
}

.team-role {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 14px
}

.social-links {
  display: flex;
  gap: 8px;
  justify-content: center
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
  color: var(--muted)
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent)
}

/* ── Form ─── */
.form-group {
  margin-bottom: 18px
}

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .03em
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .93rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(0, 229, 255, .4);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .08)
}

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

.form-select option {
  background: var(--surface2)
}

/* ── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  height: 160px;
  background: var(--surface2);
  position: relative;
  cursor: pointer;
  transition: transform .3s
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.gallery-item:hover img {
  transform: scale(1.05)
}

.gallery-item:hover {
  transform: scale(1.02)
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  height: 240px
}

/* ── Timeline ─── */
.timeline {
  position: relative;
  padding-left: 30px
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent)
}

.timeline-item {
  position: relative;
  padding-bottom: 32px
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent)
}

.timeline-date {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 6px
}

.timeline-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px
}

.timeline-text {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6
}

/* ── Overview ─── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.overview-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px
}

.overview-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 6px
}

.overview-item p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.6
}

/* ── Feature List ─── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.feature-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px
}

.feature-text {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6
}

.feature-text strong {
  color: var(--text)
}

/* ── Compare Table ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .9rem
}

.compare-table th {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em
}

.compare-table td:first-child {
  color: var(--muted)
}

.check {
  color: #22c55e
}

.cross {
  color: var(--accent3)
}

/* ── Industry Chips ─── */
.industry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 18px;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, background .2s
}

.industry-chip:hover {
  border-color: rgba(0, 229, 255, .3);
  background: rgba(0, 229, 255, .04)
}

/* ── Map Box ─── */
.map-box {
  height: 260px;
  border-radius: var(--r2);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border)
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.map-pin {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap
}

/* ── Contact Info ─── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0
}

/* ── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 28px
}

.breadcrumb span {
  color: var(--accent)
}

/* ── Sub-hero ─── */
.sub-hero {
  padding: 140px 4vw 80px;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(123, 47, 255, .1), transparent 70%);
  border-bottom: 1px solid var(--border)
}

/* ── Logo Strip ─── */
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 48px 0
}

.logo-item {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: -.02em;
  opacity: .5;
  transition: opacity .3s
}

.logo-item:hover {
  opacity: 1;
  color: var(--text)
}

/* ── Process Step ─── */
.process-step {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2)
}

.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  background: var(--grad1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  width: 50px
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.step-content p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6
}

/* ── Footer ─── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 4vw 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 14px
}

.footer-heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links li a,
.footer-links li button {
  color: var(--muted);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  padding: 0
}

.footer-links li a:hover,
.footer-links li button:hover {
  color: var(--text)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted)
}

/* ── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ── Responsive ─── */
@media(max-width:1024px) {
  .hero-visual {
    display: none
  }

  .hero-content {
    max-width: 100%
  }

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

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

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .grid-2,
  .grid-3,
  .grid-2-1,
  .grid-1-2 {
    grid-template-columns: 1fr
  }

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

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

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    height: 160px
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .cta-banner {
    padding: 40px 24px
  }

  .section-pad {
    padding: 70px 4vw
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center
  }

  .sub-hero {
    padding: 110px 4vw 60px
  }
}

@media(max-width:480px) {
  .grid-4 {
    grid-template-columns: 1fr
  }

  .ai-metrics {
    grid-template-columns: 1fr
  }
}