/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0f;
  --bg2: #0f0f1a;
  --surface: #13131f;
  --surface2: #1a1a2e;
  --border: rgba(255,255,255,0.07);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #6366f1;
  --accent2: #a855f7;
  --accent3: #ec4899;
  --green: #10b981;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 25px 50px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(99,102,241,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}
body:hover .cursor { opacity: 1; }

/* ===== PARTICLES CANVAS ===== */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.25rem 4%;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 4%;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.logo-bracket { color: var(--accent); }
.nav-links {
  display: flex; gap: 0.25rem; list-style: none;
}
.nav-links a {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--border); }
.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff; font-size: 0.875rem; font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
  display: block;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 4% 4rem;
  position: relative; overflow: hidden;
  gap: 4rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(99,102,241,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(168,85,247,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { flex: 1; max-width: 580px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; color: var(--green);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 480px; margin-bottom: 2rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 8px 30px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(99,102,241,0.5); }
.btn-ghost {
  background: var(--surface);
  color: var(--text); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface2); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--text);
}
.stat-plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.1rem; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ===== CODE WINDOW ===== */
.hero-visual {
  flex: 1; max-width: 460px; position: relative; z-index: 1;
  animation: fadeInRight 0.8s 0.3s ease both;
}
.code-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(99,102,241,0.1);
}
.window-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }
.window-title {
  margin-left: auto; margin-right: auto;
  font-size: 0.75rem; color: var(--text-muted);
}
.code-content {
  padding: 1.5rem; font-size: 0.82rem;
  font-family: 'Fira Code', 'Cascadia Code', monospace;
  line-height: 1.8; white-space: pre;
}
.c-comment { color: #64748b; }
.c-keyword { color: #a78bfa; }
.c-var { color: #67e8f9; }
.c-key { color: #94a3b8; }
.c-str { color: #86efac; }
.c-num { color: #fca5a5; }
.c-bool { color: #f59e0b; }
.c-fn { color: #60a5fa; }
.floating-badge {
  position: absolute;
  padding: 0.5rem 0.9rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}
.badge-react { top: -10px; right: -10px; animation-delay: 0s; }
.badge-node { bottom: 40px; right: -20px; animation-delay: 1s; }
.badge-design { bottom: -10px; left: 20px; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em;
  animation: fadeInUp 1s 1s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; position: relative; z-index: 1; }
.section-dark { background: var(--bg2); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 4%; }
.section-header {
  text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1rem;
}
.team-card:hover { border-color: rgba(99,102,241,0.35); transform: translateY(-4px); }
.team-card-glow {
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
  border-radius: var(--radius);
  opacity: 0; transition: var(--transition);
  pointer-events: none;
}
.team-card:hover .team-card-glow { opacity: 1; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.avatar-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}
.team-info { position: relative; z-index: 1; }
.team-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  display: block; margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.team-skills { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin-bottom: 1rem; }
.skill-tag {
  padding: 0.25rem 0.7rem;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.75rem; font-weight: 500;
}
.team-social { display: flex; gap: 0.75rem; justify-content: center; }
.team-social a {
  width: 34px; height: 34px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.team-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 1rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: rgba(99,102,241,0.2); }
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem;
}
.service-card > p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 1rem; }
.service-list { list-style: none; }
.service-list li {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.2rem 0; padding-left: 1rem; position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute; left: 0; color: var(--accent); font-size: 0.7rem;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
  display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.45rem 1.1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.portfolio-grid--3 { max-width: 900px; margin: 0 auto; }
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0,0,0,0.4); border-color: rgba(99,102,241,0.3); }
.portfolio-card.hidden { display: none; }
.portfolio-img {
  height: 180px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
}
.portfolio-img-content { font-size: 3.5rem; transition: var(--transition); }
.portfolio-card:hover .portfolio-img-content { transform: scale(1.15); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.proj-link {
  padding: 0.6rem 1.2rem;
  background: #fff; color: #000;
  border-radius: 100px; font-weight: 600; font-size: 0.85rem;
  transition: var(--transition);
}
.proj-link:hover { transform: scale(1.05); }
.portfolio-info { padding: 1.25rem; }
.portfolio-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.6rem; }
.portfolio-tags span {
  padding: 0.2rem 0.6rem;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 100px; font-size: 0.7rem; font-weight: 600; color: var(--accent);
}
.portfolio-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem;
}
.portfolio-info p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  overflow: hidden;
  transition: var(--transition);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-3px); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card > p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.88rem; display: block; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }
.testimonials-nav {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem;
}
.testimonials-nav button {
  width: 38px; height: 38px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%; color: var(--text); font-size: 1rem; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.testimonials-nav button:hover { background: var(--accent); border-color: var(--accent); }
.testimonials-dots { display: flex; gap: 0.4rem; }
.dot-indicator {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--border); cursor: pointer;
  transition: var(--transition);
}
.dot-indicator.active { background: var(--accent); transform: scale(1.3); }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem;
}
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-item strong { font-size: 0.85rem; display: block; margin-bottom: 0.15rem; }
.contact-item p { font-size: 0.88rem; color: var(--text-muted); }
.availability-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px; font-size: 0.82rem; color: var(--green); margin-top: 1rem;
}
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
  pointer-events: none;
}
.form-error {
  font-size: 0.82rem; color: #f87171;
  min-height: 1rem; text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: var(--transition); resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.form-group select option { background: var(--surface2); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  position: relative; z-index: 1;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 2rem; margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 260px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); text-align: center; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,10,15,0.97); backdrop-filter: blur(20px);
    padding: 1.5rem 4%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { font-size: 1rem; padding: 0.75rem 0; color: var(--text); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .hero { flex-direction: column; text-align: center; padding: 7rem 4% 3rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; max-width: 400px; }
  .cursor, .cursor-follower { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
}
