/* ═══ VARIABLES ═══ */
:root {
  --bg: #0c0818;
  --bg2: #100d1f;
  --purple: #c084fc;
  --red: #e63946;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --muted2: rgba(255,255,255,0.65);
  --border: rgba(192,132,252,0.15);
  --grad: linear-gradient(135deg, #fff 0%, #c084fc 55%, #e63946 100%);
  --grad-subtle: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, #c084fc 55%, #e63946 100%);
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  max-width: 100vw;
}

/* ═══ CUSTOM CURSOR ═══ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(192,132,252,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  backdrop-filter: blur(12px);
  background: rgba(12,8,24,0.7);
  border-bottom: 1px solid rgba(192,132,252,0.06);
  transition: padding 0.3s;
}

nav.scrolled { padding: 18px 60px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-hex {
  position: relative;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-hex svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.nav-gm {
  position: relative;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.8);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--grad);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links .nav-switch {
  color: var(--purple) !important;
  border: 1px solid rgba(192,132,252,0.3);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}

.nav-links .nav-switch:hover {
  background: rgba(192,132,252,0.1);
  border-color: rgba(192,132,252,0.5);
  color: var(--white) !important;
}

.nav-links .nav-switch::after { display: none; }

.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 7px 14px;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(251,191,36,0.05);
  transition: all 0.2s;
}

.nav-badge:hover {
  border-color: rgba(251,191,36,0.6);
  color: rgba(255,255,255,0.9);
}

.nav-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fbbf24;
  display: inline-block;
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
  animation: blink 2s infinite;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 40%, rgba(120,40,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(220,50,60,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-hex-deco {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  opacity: 0.06;
  pointer-events: none;
}

.hero-hex-deco2 {
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 300px; height: 300px;
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--purple);
}

.hero-dott {
  font-family: 'Syne', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s ease forwards;
}

.hero-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s ease forwards;
}

.hero-role {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-subtitle {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
  margin-bottom: 40px;
  line-height: 1.4;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s ease forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #7c3aed, #e63946);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid rgba(192,132,252,0.3);
  color: rgba(255,255,255,0.7);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-secondary:hover { border-color: var(--purple); color: white; transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}

.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
  animation: pulse 2s infinite;
}

/* ═══ SECTIONS ═══ */
section {
  padding: 120px 60px;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.section-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  color: var(--purple);
  letter-spacing: 0.1em;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(192,132,252,0.3), transparent);
}

/* ═══ ABOUT ═══ */
.bg-alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.about-text p strong {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 2vw, 24px);
  min-width: 0;
}

.stat-card {
  padding: clamp(14px, 3vw, 28px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.03);
  transition: border-color 0.3s, background 0.3s;
}

.stat-card:hover {
  border-color: rgba(192,132,252,0.3);
  background: rgba(192,132,252,0.06);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(0.6rem, 2vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ STACK ═══ */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}

.stack-item {
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: border-color 0.3s, transform 0.3s;
}

.stack-item:hover {
  border-color: rgba(192,132,252,0.3);
  transform: translateY(-3px);
}

.stack-emoji { font-size: 1.6rem; }

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

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.4), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.service-card:hover { border-color: rgba(192,132,252,0.25); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--purple);
  opacity: 0.8;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--purple);
  border: 1px solid rgba(192,132,252,0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ═══ PROCESS ═══ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.process-step:hover {
  border-color: rgba(192,132,252,0.25);
  transform: translateY(-3px);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

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

.project-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.project-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.project-card:hover { border-color: rgba(192,132,252,0.25); transform: translateY(-3px); }

.project-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--purple);
  margin-bottom: 16px;
}

.project-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 12px;
}

.project-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-visual {
  height: 180px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(230,57,70,0.1));
  border: 1px solid rgba(192,132,252,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(192,132,252,0.4);
}

.project-visual.featured-visual {
  height: 100%;
  min-height: 240px;
}

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

.testimonial-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: rgba(192,132,252,0.2);
  font-family: 'Syne', sans-serif;
  position: absolute;
  top: 20px; left: 28px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.testimonial-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 4px;
}

.testimonial-note {
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 40px;
}

/* ═══ FAQ ═══ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 4px;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 24px 28px;
  background: rgba(192,132,252,0.02);
  border: none;
  color: rgba(255,255,255,0.8);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}

.faq-button:hover { background: rgba(192,132,252,0.05); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-text {
  padding: 0 28px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ═══ CONTACT ═══ */
#contact { text-align: center; }

.contact-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 64px;
}

.contact-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.contact-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(192,132,252,0.02);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.contact-card:hover {
  border-color: rgba(192,132,252,0.3);
  background: rgba(192,132,252,0.05);
  transform: translateY(-4px);
}

.contact-card svg {
  width: 24px; height: 24px;
  color: var(--purple);
  opacity: 0.8;
}

.contact-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* ═══ FOOTER ═══ */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.footer-copy a {
  color: rgba(192,132,252,0.5);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--purple); }

.footer-switch {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(192,132,252,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-switch:hover { color: var(--purple); }

/* ═══ COOKIE BANNER ═══ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(12,8,24,0.97);
  border-top: 1px solid rgba(192,132,252,0.2);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(12px);
  font-family: 'Outfit', sans-serif;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 700px;
  margin: 0;
}

#cookie-banner a { color: #c084fc; text-decoration: none; }

.cookie-accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, #7c3aed, #e63946);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ═══ PRIVACY MODAL ═══ */
#privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-box {
  background: #0c0818;
  border: 1px solid rgba(192,132,252,0.2);
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
}

.privacy-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 32px;
}

.privacy-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-close {
  background: none;
  border: 1px solid rgba(192,132,252,0.2);
  color: rgba(255,255,255,0.5);
  width: 32px; height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-body {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

.privacy-body h3 {
  font-family: 'Syne', sans-serif;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin: 24px 0 10px;
}

.privacy-body p { margin-bottom: 16px; }

.privacy-body strong { color: rgba(255,255,255,0.85); }

.privacy-body a { color: #c084fc; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }

  nav { padding: 16px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-name { display: none; }

  section { padding: 64px 20px; }
  #hero { padding: 90px 20px 60px; }

  .hero-name { font-size: 3.2rem; }
  .hero-hex-deco { width: 280px; height: 280px; right: -100px; opacity: 0.04; }
  .hero-hex-deco2 { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { text-align: center; justify-content: center; }
  .hero-scroll { display: none; }

  .section-title { font-size: 1.8rem; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }

  .stack-grid { grid-template-columns: repeat(3, 1fr); }

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

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

  .portfolio-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; grid-template-columns: 1fr; gap: 24px; }
  .project-visual.featured-visual { min-height: 120px; }

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

  .contact-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .contact-grid.cols-4 { grid-template-columns: 1fr 1fr; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  #cookie-banner { flex-direction: column; padding: 20px; text-align: center; gap: 16px; }

  .privacy-box { padding: 28px 20px; }

  .faq-container { padding: 0; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.6rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px 12px; }
  .stat-num { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid.cols-4 { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
}
