/* ============ RESET & VARS ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black: #080810;
  --deep: #0d0d18;
  --surface: #111120;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --chrome: #c8cdd6;
  --chrome-bright: #e8edf5;
  --neon: #b04aff;
  --neon-soft: rgba(176, 74, 255, 0.15);
  --neon-glow: rgba(176, 74, 255, 0.4);
  --red-accent: #c0304a;
  --red-glow: rgba(192, 48, 74, 0.3);
  --text: #d0d5e0;
  --text-muted: #6b7280;
  --text-dim: #404558;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ============ CUSTOM CURSOR ============ */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    opacity 0.3s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(176, 74, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--neon);
  border-radius: 2px;
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(8, 8, 16, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: padding 0.3s;
}
nav.scrolled {
  padding: 14px 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--chrome-bright);
  text-decoration: none;
}
.nav-logo span {
  color: var(--neon);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--chrome-bright);
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--neon);
  color: var(--neon);
  padding: 10px 24px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.nav-cta:hover {
  background: var(--neon-soft);
  box-shadow: 0 0 20px var(--neon-glow);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--chrome);
  transition: 0.3s;
}

/* ============ HERO ============ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(176, 74, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 74, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}
.hero-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(176, 74, 255, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
  z-index: 1;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(192, 48, 74, 0.1) 0%,
    transparent 70%
  );
  bottom: -50px;
  right: -50px;
  z-index: 1;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--neon);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 6px;
  color: var(--chrome-bright);
  text-shadow: 0 0 80px rgba(176, 74, 255, 0.2);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title .accent {
  color: var(--neon);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 28px auto 44px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  margin-bottom: 30px;
}
.btn-primary {
  background: var(--neon);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition:
    box-shadow 0.3s,
    transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  box-shadow:
    0 0 40px var(--neon-glow),
    0 0 80px rgba(176, 74, 255, 0.2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border: 1px solid var(--glass-border);
  padding: 16px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition:
    border-color 0.3s,
    color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--chrome);
  color: var(--chrome-bright);
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 60px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--chrome-bright);
  display: block;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--glass-border),
    transparent
  );
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ SECTIONS ============ */
section {
  padding: 120px 60px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 3px;
  color: var(--chrome-bright);
  line-height: 1;
}
.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 16px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============ ABOUT ============ */
#about {
  background: var(--deep);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.about-left .section-subtitle {
  max-width: 100%;
  margin-top: 24px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.about-feature:hover {
  border-color: rgba(176, 74, 255, 0.3);
  background: var(--neon-soft);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--neon-soft);
  border: 1px solid rgba(176, 74, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--chrome-bright);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-logo-large {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: 6px;
  text-align: center;
  color: var(--chrome);
  line-height: 1;
  position: relative;
  z-index: 2;
}
.about-logo-large .sub {
  font-size: 40px;
  letter-spacing: 10px;
  color: var(--neon);
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(176, 74, 255, 0.08) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.about-visual-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--neon), transparent);
  height: 200px;
  left: 50%;
  animation: scanLine 3s linear infinite;
}
@keyframes scanLine {
  0% {
    top: -200px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ============ SERVICES ============ */
#services {
  background: var(--black);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
  cursor: none;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--neon-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 74, 255, 0.3);
}
.service-card:hover::before {
  opacity: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 2px;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.service-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--chrome-bright);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card.featured {
  background: linear-gradient(
    135deg,
    rgba(176, 74, 255, 0.12),
    rgba(192, 48, 74, 0.08)
  );
  border-color: rgba(176, 74, 255, 0.3);
  grid-column: span 1;
}
.service-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition:
    border-color 0.3s,
    color 0.3s,
    transform 0.3s;
}
.service-card:hover .service-arrow {
  border-color: var(--neon);
  color: var(--neon);
  transform: rotate(45deg);
}

/* ============ PORTFOLIO ============ */
#portfolio {
  background: var(--deep);
}
.portfolio-header {
  margin-bottom: 48px;
}
.portfolio-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.portfolio-filter {
  padding: 8px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: none;
  transition: 0.3s;
}
.portfolio-filter.active,
.portfolio-filter:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: var(--neon-soft);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--surface);
  transition: 0.35s ease;
  cursor: none;
  width: 100%;
  height: 100%;
}
.portfolio-item:hover {
  transform: scale(1.01);
  border-color: rgba(176, 74, 255, 0.4);
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface), #1a1a2e);
}
.portfolio-placeholder-icon {
  font-size: 40px;
}

.portfolio-placeholder-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1/1;
}
.portfolio-placeholder-text {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 16, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-overlay-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--chrome-bright);
}
.portfolio-overlay-date {
  font-size: 12px;
  color: var(--neon);
  margin-top: 4px;
}

@starting-style {
  .portfolio-item {
    opacity: 0;
    transform: translateX(16px);
  }
}

.portfolio-grid:not(.more) .portfolio-item:nth-child(n + 10) {
  display: none;
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* TG Posts */
.tg-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tg-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 40px;
  color: var(--text-muted);
  font-size: 14px;
}
.tg-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--glass-border);
  border-top-color: var(--neon);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.tg-connect-banner {
  margin-top: 20px;
  padding: 20px 28px;
  border: 1px dashed rgba(176, 74, 255, 0.3);
  border-radius: var(--radius);
  background: var(--neon-soft);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.tg-connect-banner strong {
  color: var(--neon);
}

/* ============ CLIENTS ============ */
#clients {
  background: var(--black);
}
.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.logos-track-wrap {
  overflow: hidden;
  margin-top: 60px;
  position: relative;
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}
.logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}
.logos-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-item {
  width: 160px;
  height: 160px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    border-color 0.3s,
    background 0.3s;
    padding: 10px;
}
.logo-item:hover {
  border-color: rgba(176, 74, 255, 0.3);
  background: var(--neon-soft);
}
.logo-placeholder {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text-dim);
  transition: color 0.3s;
}
.logo-placeholder img {
  max-width: 100%;
  height: auto;
}
.logo-item:hover .logo-placeholder {
  color: var(--chrome);
}

/* ============ TESTIMONIALS ============ */
#testimonials {
  background: var(--deep);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 1;
  color: rgba(176, 74, 255, 0.06);
}
.testimonial-card:hover {
  border-color: rgba(176, 74, 255, 0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--neon);
  font-size: 14px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--red-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--chrome-bright);
}
.author-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.author-company {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neon);
}

/* ============ CONTACT ============ */
#contact {
  background: var(--black);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}
.contact-info p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 20px;
}
.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--neon-soft);
  border: 1px solid rgba(176, 74, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item a:hover {
  color: var(--neon);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-textarea {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--chrome-bright);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
  resize: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}
.form-input:focus,
.form-textarea:focus {
  border-color: rgba(176, 74, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(176, 74, 255, 0.08);
}
.form-textarea {
  min-height: 120px;
}
.form-submit {
  background: var(--neon);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: none;
  transition:
    box-shadow 0.3s,
    transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover {
  box-shadow: 0 0 40px var(--neon-glow);
  transform: translateY(-2px);
}
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: var(--radius-sm);
  color: #00c864;
  font-size: 14px;
  text-align: center;
}

/* ============ FOOTER ============ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--glass-border);
  padding: 60px 60px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand .nav-logo {
  font-size: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-links-group h5 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links-group a:hover {
  color: var(--chrome-bright);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 0;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition:
    border-color 0.3s,
    background 0.3s;
  color: var(--text-muted);
}
.social-link:hover {
  border-color: var(--neon);
  background: var(--neon-soft);
  color: var(--neon);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ============ DIVIDER ============ */
.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--glass-border),
    transparent
  );
  margin: 0 60px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  section {
    padding: 80px 40px;
  }
  .about-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) {
    grid-column: span 2;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 20px 40px;
  }
  footer {
    padding: 48px 40px 32px;
  }
  .section-divider {
    margin: 0 40px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  section {
    padding: 64px 24px;
  }
  .hero-stats {
    gap: 20px;
    bottom: 28px;
  }
  .stat-divider {
    display: none;
  }
  .stat-num {
    font-size: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) {
    grid-column: span 1;
  }
  .services-header {
    flex-direction: column;
    gap: 16px;
  }
  .footer-top {
    flex-direction: column;
  }
  nav {
    padding: 16px 24px;
  }
  footer {
    padding: 40px 24px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-divider {
    margin: 0 24px;
  }
}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}
