/* ============================================================
   PIXELSNOTFOUND — Global Styles
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0f0b1f;
  color: #e8e6f0;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ---------- CSS Variables (theme tokens) ---------- */
:root {
  --bg:        #0f0b1f;
  --bg-card:   #1a1532;
  --fg:        #e8e6f0;
  --primary:   #7c3aed;
  --secondary: #3b82f6;
  --accent:    #c026d3;
  --muted:     #2d2550;
  --muted-fg:  #a8a4ba;
  --border:    rgba(124, 58, 237, 0.3);
  --radius:    0.625rem;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---------- Gradient text utility ---------- */
.grad-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ---------- Animated gradient (hero title) ---------- */
@keyframes grad-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.anim-grad {
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
  background-size: 200% auto;
  animation: grad-shift 4s ease infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wrap img { height: 36px; width: auto; }
.logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.desktop-nav a, .mobile-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
  text-decoration: none;
}
.btn:hover { opacity: .88; }
.btn-sm  { padding: .45rem 1rem; }
.btn-md  { padding: .6rem 1.25rem; }
.btn-lg  { padding: .8rem 1.75rem; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: #fff;
}
.btn-outline:hover { background: rgba(59,130,246,.15); border-color: var(--accent); }

/* Hamburger */
#menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
#menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all .3s;
}
#menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.open span:nth-child(2) { opacity: 0; }
#menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.section-desc {
  color: var(--muted-fg);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,11,31,.94) 0%,
    rgba(124,58,237,.3) 55%,
    rgba(192,38,211,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 100px 1.5rem 60px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-content h1 .highlight {
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--accent));
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stats .stat-num {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}
.hero-stats .stat-label {
  font-size: .82rem;
  color: #bbb;
  margin-top: .25rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), rgba(45,37,80,.18), var(--bg));
}
.about-header { text-align: center; margin-bottom: 4rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 0.9rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .3s, border-color .3s, transform .2s;
}
.feature-card:hover {
  border-color: rgba(124,58,237,.55);
  box-shadow: 0 8px 32px rgba(124,58,237,.12);
  transform: translateY(-3px);
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s;
}
.feature-card:hover .feature-icon { transform: scale(1.12); }
.feature-icon svg { width: 24px; height: 24px; color: #fff; stroke: #fff; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.feature-card p  { font-size: .9rem; color: var(--muted-fg); }

.values-grid {
  text-align: center;
}
.values-grid h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 2rem; }
.values-grid .vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.values-grid .vals h4 { font-weight: 700; margin-bottom: .4rem; }
.values-grid .vals p  { font-size: .875rem; color: var(--muted-fg); }

/* ============================================================
   SERVICES
   ============================================================ */
#services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(45,37,80,.6);
  border-radius: .9rem;
  padding: 1.5rem;
  transition: box-shadow .3s, border-color .3s, transform .2s;
}
.service-card:hover {
  border-color: rgba(124,58,237,.55);
  box-shadow: 0 8px 36px rgba(124,58,237,.18);
  transform: translateY(-3px);
}
.service-card .svc-icon {
  width: 48px;
  height: 48px;
  border-radius: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .25s;
}
.service-card:hover .svc-icon { transform: scale(1.1); }
.service-card .svc-icon svg { width: 24px; height: 24px; stroke: #fff; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.service-card p  { font-size: .875rem; color: var(--muted-fg); margin-bottom: 1rem; }

.badge-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .65rem;
  font-size: .72rem;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.3);
  color: var(--fg);
  transition: background .2s;
}
.badge:hover { background: rgba(124,58,237,.3); }

/* Process box */
.process-box {
  background: linear-gradient(135deg, var(--bg-card), rgba(45,37,80,.5));
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 1.2rem;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.process-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.step {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}
.step h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.step p  { font-size: .83rem; color: var(--muted-fg); }
.process-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: .75rem;
}

/* ============================================================
   TEAM
   ============================================================ */
#team {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), rgba(45,37,80,.18), var(--bg));
}
.team-header { text-align: center; margin-bottom: 4rem; }
.team-photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 3.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: .9rem;
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow .3s, border-color .3s, transform .2s;
}
.team-card:hover {
  border-color: rgba(124,58,237,.55);
  box-shadow: 0 8px 32px rgba(124,58,237,.14);
  transform: translateY(-3px);
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  transition: transform .25s;
}
.team-card:hover .avatar { transform: scale(1.1); }
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem; }
.team-card .role { font-size: .9rem; font-weight: 600; color: var(--primary); margin-bottom: .75rem; }
.team-card p  { font-size: .85rem; color: var(--muted-fg); margin-bottom: 1rem; }

.why-work { text-align: center; }
.why-work h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 2rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-grid h4 { font-weight: 700; margin-bottom: .4rem; }
.why-grid p  { font-size: .875rem; color: var(--muted-fg); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), rgba(45,37,80,.1), var(--bg));
}
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Form card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: .9rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(124,58,237,.08);
}
.contact-form-card .card-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.contact-form-card .card-title svg { color: var(--primary); stroke: var(--primary); }

form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form .field { margin-bottom: 1.25rem; }
form label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .4rem; }
.form-input {
  display: block;
  width: 100%;
  padding: .55rem .9rem;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: .5rem;
  color: var(--fg);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.form-input::placeholder { color: var(--muted-fg); }
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124,58,237,.2);
}
textarea.form-input { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .88; }
.btn-submit svg { width: 18px; height: 18px; stroke: #fff; }

/* Info cards */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--bg-card);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: .9rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .3s;
}
.info-card:hover { box-shadow: 0 6px 24px rgba(124,58,237,.1); }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; stroke: #fff; }
.info-card h4 { font-weight: 700; margin-bottom: .3rem; }
.info-card p, .info-card address {
  font-size: .875rem;
  color: var(--muted-fg);
  font-style: normal;
  line-height: 1.6;
}
.response-box {
  background: linear-gradient(135deg,
    rgba(124,58,237,.1), rgba(59,130,246,.08), rgba(192,38,211,.08));
  border: 1px solid rgba(124,58,237,.3);
  border-radius: .9rem;
  padding: 1.25rem 1.5rem;
}
.response-box h4 {
  font-weight: 700;
  margin-bottom: .35rem;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.response-box p { font-size: .875rem; color: var(--muted-fg); }

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  background-color: black;
  border-top: 1px solid rgba(124,58,237,.3);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-name { font-size: 1.15rem; }
.footer-brand p {
  font-size: .875rem;
  color: var(--muted-fg);
  margin: .85rem 0;
  max-width: 340px;
  line-height: 1.6;
}
.footer-brand .copy { font-size: .8rem; color: var(--muted-fg); }
footer h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a, .footer-links span {
  font-size: .875rem;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(124,58,237,.25);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .82rem;
  color: var(--muted-fg);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--primary); }
.footer-credit { font-size: .82rem; color: var(--muted-fg); }

/* ============================================================
   GRADIENT HELPERS
   ============================================================ */
.g-ps { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.g-sa { background: linear-gradient(135deg, var(--secondary), var(--accent)); }
.g-ap { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.g-pas{ background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary)); }
.g-spa{ background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent)); }
.g-asp{ background: linear-gradient(135deg, var(--accent), var(--secondary), var(--primary)); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-box { grid-template-columns: 1fr; }
  .process-img { height: 240px; }
}

@media (max-width: 768px) {
  #menu-btn { display: flex; }
  .desktop-nav, .header-cta { display: none; }

  .feature-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .values-grid .vals  { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  form .row { grid-template-columns: 1fr; }

  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.6rem !important; }

  .team-photo { height: 240px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
  .hero-stats { gap: .75rem; }
  .stat-num { font-size: 1.4rem !important; }
}
