/* ============================================================
   OUGLA — Main Stylesheet
   ============================================================ */

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

:root {
  --bg:        #07070f;
  --bg2:       #0d0d1a;
  --bg3:       #111122;
  --surface:   #13131f;
  --border:    rgba(255,255,255,0.07);
  --text:      #e8e8f0;
  --muted:     #7070a0;
  --accent:    #6c63ff;
  --accent2:   #00d4ff;
  --accent3:   #ff6b9d;
  --grad:      linear-gradient(135deg, var(--accent), var(--accent2));
  --font:      'Space Grotesk', sans-serif;
  --mono:      'Space Mono', monospace;
  --radius:    16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }

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

.section { padding: 120px 0; position: relative; }

/* ---- Particle canvas ---- */
#particle-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content containers always sit above section canvases */
.services > .container,
.services > .services__bg,
.team > .container {
  position: relative;
  z-index: 2;
}

/* Ensure all page content sits above canvas */
.nav, section, .ticker, footer {
  position: relative;
  z-index: 1;
}

/* ---- Typography helpers ---- */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 32px rgba(108, 99, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(108, 99, 255, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ---- Logo image ---- */
.nav__logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.8; }

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.85;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(7, 7, 15, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.nav__logo span { color: var(--accent2); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }

.nav__cta {
  background: var(--grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 600 !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6c63ff, transparent 70%);
  top: -100px; left: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #00d4ff, transparent 70%);
  top: 50%; right: -80px;
  transform: translateY(-50%);
  animation: drift2 15s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ff6b9d, transparent 70%);
  bottom: -80px; left: 40%;
  animation: drift3 10s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0); }
  to   { transform: translate(60px, 40px); }
}
@keyframes drift2 {
  from { transform: translateY(-50%) translate(0, 0); }
  to   { transform: translateY(-50%) translate(-50px, 30px); }
}
@keyframes drift3 {
  from { transform: translate(0, 0); }
  to   { transform: translate(-40px, -50px); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 40px 100px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(0,212,255,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  background: rgba(0,212,255,0.06);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.hero__logo-right {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-right img {
  position: relative;
  z-index: 3;
  width: clamp(300px, 30vw, 520px);
  opacity: 0.95;
  animation: logoPulse 6s ease-in-out infinite;
  filter: drop-shadow(0 0 32px rgba(108, 99, 255, 0.5)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.25));
}

@keyframes logoPulse {
  0%, 100% { opacity: 0.9; filter: drop-shadow(0 0 24px rgba(108,99,255,0.4)) drop-shadow(0 0 60px rgba(0,212,255,0.2)); }
  50%       { opacity: 1;   filter: drop-shadow(0 0 48px rgba(108,99,255,0.7)) drop-shadow(0 0 100px rgba(0,212,255,0.4)); }
}

.hero__logo-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, rgba(0,212,255,0.08) 45%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.8; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.hero__logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108, 99, 255, 0.25);
  animation: ringExpand 4s ease-in-out infinite;
  z-index: 1;
}

.hero__logo-ring--1 {
  width: 420px;
  height: 420px;
  border-color: rgba(108, 99, 255, 0.2);
  animation-duration: 5s;
}

.hero__logo-ring--2 {
  width: 560px;
  height: 560px;
  border-color: rgba(0, 212, 255, 0.12);
  animation-duration: 7s;
  animation-delay: -2s;
}

@keyframes ringExpand {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.05); opacity: 1; }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  z-index: 2;
}

.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { width: 40px; opacity: 0.5; }
  50%       { width: 80px; opacity: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: tickerMove 28s linear infinite;
}

.ticker__track span {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 24px;
}

.ticker__dot {
  color: var(--accent) !important;
  padding: 0 4px !important;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--bg);
  background-image:
    radial-gradient(rgba(108,99,255,0.13) 1px, transparent 1px);
  background-size: 36px 36px;
}

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

.about__body {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about__body strong { color: var(--text); }

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__plus { font-size: 1.8rem; }
.stat__label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.3;
}

.about__visual {
  position: relative;
  height: 420px;
}

.about__card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.about__card p { font-size: 0.9rem; color: var(--muted); margin-top: 12px; }

.about__card-icon { font-size: 2rem; }

.about__card--1 {
  top: 0; left: 0;
  width: 220px;
  animation: float1 6s ease-in-out infinite;
}
.about__card--2 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  animation: float2 7s ease-in-out infinite;
  border-color: rgba(108,99,255,0.3);
  box-shadow: 0 0 40px rgba(108,99,255,0.1);
}
.about__card--3 {
  bottom: 0; right: 0;
  width: 210px;
  animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%       { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: #090916;
  background-image:
    linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(108,99,255,0.1) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 40px 40px;
  background-position: 0 0, 0 0, 20px 20px;
}

.services__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.services__orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 20px 60px rgba(108,99,255,0.15);
}
.service-card:hover::before { opacity: 0.04; }

.service-card__num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}

.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-card__tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent2);
  letter-spacing: 0.06em;
  opacity: 0.8;
}

/* last card spans wider if odd */
.services__grid .service-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

/* ============================================================
   WHY
   ============================================================ */
.why {
  background: var(--bg);
  background-image:
    linear-gradient(rgba(108,99,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.03) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__body {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  margin-top: 2px;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg2);
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}
.contact__orb--1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -200px;
}
.contact__orb--2 {
  width: 400px; height: 400px;
  background: var(--accent2);
  bottom: -150px; left: -100px;
}

.contact__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact__sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.contact__email {
  display: inline-block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 2px solid rgba(108,99,255,0.3);
  padding-bottom: 4px;
  transition: border-color var(--transition), filter var(--transition);
  margin-top: 8px;
}
.contact__email:hover {
  border-color: rgba(108,99,255,0.8);
  filter: brightness(1.15);
}

/* ============================================================
   SERVERS — video background
   ============================================================ */
.servers {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.servers__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.servers__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 7, 15, 0.88) 0%,
    rgba(7, 7, 15, 0.65) 50%,
    rgba(7, 7, 15, 0.82) 100%
  );
  z-index: 1;
}

.servers__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.servers__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.servers__body {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
}

.servers__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 760px;
}

.spec-card {
  background: rgba(19, 19, 31, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}
.spec-card:hover {
  border-color: rgba(108,99,255,0.4);
  transform: translateY(-4px);
}

.spec-card__label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.spec-card__value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.spec-card__value--sm {
  font-size: 1.15rem;
  line-height: 1.3;
}
.spec-card__unit {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--bg);
  position: relative;
  background-image:
    radial-gradient(rgba(0,212,255,0.09) 1.5px, transparent 1.5px),
    radial-gradient(rgba(108,99,255,0.07) 1px, transparent 1px);
  background-size: 52px 52px, 26px 26px;
  background-position: 0 0, 26px 26px;
}

.team__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}

.team-card {
  max-width: 360px;
  width: 100%;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(108,99,255,0.4);
  box-shadow: 0 24px 60px rgba(108,99,255,0.12);
}

.team-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.5), 0 0 32px rgba(108,99,255,0.35);
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-card__role {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   REFERENCES (was clients)
   ============================================================ */
.references {
  background: #090916;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 3px,
      rgba(108,99,255,0.025) 3px,
      rgba(108,99,255,0.025) 4px
    ),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 100% 4px, 80px 100%;
}

.clients__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 56px;
}

.client-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.client-chip:hover {
  color: var(--text);
  border-color: rgba(108,99,255,0.45);
  background: rgba(108,99,255,0.07);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer__brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 260px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--mono);
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }

  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 100vw);
    height: 100vh;
    background: rgba(7,7,15,0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 40px;
    gap: 28px;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1.2rem; }

  .hero__content { padding: 120px 24px 80px; }

  .about__inner,
  .why__inner { grid-template-columns: 1fr; gap: 48px; }

  .servers__specs { grid-template-columns: 1fr 1fr; }

  .team__grid { grid-template-columns: 1fr 1fr; }

  .about__visual { height: 280px; }
  .about__card--1 { width: 180px; }
  .about__card--2 { width: 200px; }
  .about__card--3 { width: 175px; }

  .services__grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__scroll { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:last-child:nth-child(3n+1) {
    grid-column: auto;
    max-width: none;
  }

  .about__stats { flex-direction: column; gap: 24px; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .footer__inner { grid-template-columns: 1fr; }

  .team__grid { grid-template-columns: 1fr; }
  .servers__specs { grid-template-columns: 1fr 1fr; }
}
