:root {
  --bg-deep:         #050510;
  --bg-surface:      #0a0a1a;
  --bg-card:         rgba(15, 15, 35, 0.6);
  --accent-cyan:     #00e5ff;
  --accent-violet:   #7c3aed;
  --accent-magenta:  #f72585;
  --accent-lime:     #a3e635;
  --text-primary:    #e8e8f0;
  --text-muted:      #6b6b8d;
  --text-dim:        #3a3a5c;
  --glass:           rgba(255, 255, 255, 0.03);
  --glass-border:    rgba(255, 255, 255, 0.06);
  --glow-cyan:       0 0 60px rgba(0, 229, 255, 0.15);
  --glow-violet:     0 0 60px rgba(124, 58, 237, 0.15);
  --card-accent:     var(--accent-cyan);   /* override per-card */
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-violet) var(--bg-deep);
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════ WEB AWESOME — DARK THEME OVERRIDES ═══════ */
/* Force dark background on all WA surfaces */
wa-card,
wa-drawer {
  --wa-color-neutral-fill-default: var(--bg-card);
  --wa-color-neutral-border-default: var(--glass-border);
  --wa-color-text-default: var(--text-primary);
  --wa-color-neutral-surface: var(--bg-surface);
}

/* wa-button — brand variant */
wa-button[variant="brand"]::part(base) {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: transform 0.3s, box-shadow 0.3s;
}
wa-button[variant="brand"]::part(base):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 229, 255, 0.25), 0 0 80px rgba(124, 58, 237, 0.15);
}

/* wa-button — appearance="outlined" */
wa-button[appearance="outlined"]::part(base) {
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-primary);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
wa-button[appearance="outlined"]::part(base):hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 229, 255, 0.05);
}

/* nav CTA outlined small */
.nav-cta-btn::part(base) {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  font-size: 0.8rem;
}
.nav-cta-btn::part(base):hover {
  background: var(--accent-cyan);
}

/* wa-button — appearance="plain" */
wa-button[appearance="plain"]::part(base) {
  background: rgba(0, 229, 255, 0.05);
  color: var(--accent-cyan);
  padding: 8px;
}

/* wa-tag */
wa-tag::part(base) {
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent-cyan);
  font-family: monospace;
  font-size: 0.72rem;
  border-radius: 100px;
}
.year-tag::part(base) {
  background: rgba(255,255,255,0.04);
  border-color: var(--glass-border);
  color: var(--text-muted);
}

/* wa-card — base */
wa-card::part(base) {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
  position: relative;
}
wa-card::part(base):hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Top accent line per card */
wa-card::part(header) {
  background: transparent;
  padding: 2rem 2rem 0;
  border: none;
}

/* Card body grows to push footer down */
wa-card::part(body) {
  flex: 1;
}

/* Card footer */
wa-card::part(footer) {
  background: transparent;
  border-top: 1px solid var(--glass-border);
}

/* service card top bar */
.service-card::part(base)::before,
.service-card::part(base)::after { display: none; }

/* wa-card image slot */
wa-card::part(image) {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* wa-drawer */
wa-drawer::part(panel) {
  background: var(--bg-surface);
  border-left: 1px solid var(--glass-border);
}
wa-drawer::part(title) {
  font-weight: 800;
  color: var(--text-primary);
}
wa-drawer::part(close-button) {
  color: var(--text-muted);
}

/* wa-relative-time */
wa-relative-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: monospace;
}

/* ═══════ CURSOR GLOW ═══════ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ═══════ NOISE ═══════ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ═══════ GRID BG ═══════ */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 100%);
}

/* ═══════ BLOBS ═══════ */
.blob-container { position: fixed; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: blobFloat 20s ease-in-out infinite; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-violet), transparent 70%); top: -10%; left: -5%; animation-duration: 25s; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--accent-cyan), transparent 70%); top: 40%; right: -10%; animation-delay: -5s; animation-duration: 22s; }
.blob-3 { width: 450px; height: 450px; background: radial-gradient(circle, var(--accent-magenta), transparent 70%); bottom: -5%; left: 30%; animation-delay: -10s; animation-duration: 28s; }
.blob-4 { width: 350px; height: 350px; background: radial-gradient(circle, var(--accent-lime), transparent 70%); top: 60%; left: 10%; opacity: 0.2; animation-delay: -15s; animation-duration: 30s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(80px, -60px) scale(1.1); }
  50%  { transform: translate(-40px, 80px) scale(0.95); }
  75%  { transform: translate(60px, 40px) scale(1.05); }
}

/* ═══════ CIRCUIT ═══════ */
.circuit-svg { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.12; }
.circuit-line { stroke-dasharray: 800; stroke-dashoffset: 800; animation: drawLine 4s ease-in-out forwards; }
.circuit-line:nth-child(2) { animation-delay: 0.5s; }
.circuit-line:nth-child(3) { animation-delay: 1s; }
.circuit-line:nth-child(4) { animation-delay: 1.5s; }
.circuit-line:nth-child(5) { animation-delay: 2s; }
.circuit-line:nth-child(6) { animation-delay: 2.5s; }
.circuit-dot { opacity: 0; animation: dotPulse 2s ease-in-out infinite; }
.circuit-dot:nth-child(8) { animation-delay: 4s; }
.circuit-dot:nth-child(9) { animation-delay: 4.3s; }
.circuit-dot:nth-child(10) { animation-delay: 4.6s; }
.circuit-dot:nth-child(11) { animation-delay: 4.9s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes dotPulse { 0%,100% { opacity:0; r:2; } 50% { opacity:1; r:4; } }

/* ═══════ GRID BG ═══════ fix: pointer-events kell hogy ne blokkoljla a kattintásokat */
.grid-bg { pointer-events: none; }

/* ═══════ CONTENT WRAPPER ═══════ */
.content { position: relative; z-index: 10; }

/* ═══════ SITE HEADER (wa-page slot="main-header") ═══════ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 4px 12px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 16, 0.8);
  border-bottom: 1px solid var(--glass-border);
  animation: navSlide 1s ease-out;
}
@keyframes navSlide { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 10px var(--accent-cyan); }
  50%     { box-shadow: 0 0 30px var(--accent-cyan), 0 0 60px rgba(0,229,255,0.3); }
}

.nav-links {
  list-style: none;
  --wa-space-m: 2.5rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-primary); text-shadow: 0 0 20px rgba(0,229,255,0.3); }
.nav-links a:hover::after { width: 100%; }

.nav-hamburger { display: none !important; }

/* Mobile nav inside drawer */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}
.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--accent-cyan); }

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}
.hero-orb-svg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; pointer-events: none; }
.orbit-ring { fill: none; stroke: rgba(255,255,255,0.03); stroke-width: 1; }
.orbit-dot  { fill: var(--accent-cyan); filter: drop-shadow(0 0 6px var(--accent-cyan)); }
.orbit-dot-2 { fill: var(--accent-violet); filter: drop-shadow(0 0 6px var(--accent-violet)); }
.orbit-dot-3 { fill: var(--accent-magenta); filter: drop-shadow(0 0 6px var(--accent-magenta)); }

.hero-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease-out 0.3s both;
}
.hero-badge .pulse { width: 6px; height: 6px; background: var(--accent-lime); border-radius: 50%; animation: logoPulse 2s infinite; }

.hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease-out 0.5s both;
}
.hero h1 .line { display: block; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet), var(--accent-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.hero-sub {
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease-out 0.7s both;
}

.hero-buttons {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease-out 0.9s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease-out 1.2s both;
}
.scroll-indicator span { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent-cyan), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity:0.3; transform:scaleY(0.5); } 50% { opacity:1; transform:scaleY(1); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ═══════ MARQUEE ═══════ */
.marquee-section { padding: 4rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item { font-family:  monospace; font-size: 0.85rem; color: var(--text-dim); white-space: nowrap; display: flex; align-items: center; gap: 0.6rem; transition: color 0.3s; }
.marquee-item:hover { color: var(--accent-cyan); }
.marquee-item .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════ SECTION LABELS ═══════ */
.section-label {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--accent-cyan); }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; line-height: 1.7; font-weight: 300; }

/* ═══════ SERVICES ═══════ */
.services { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }

/* service card header slot = icon area */
.service-card::part(header) { padding: 2rem 2rem 0; }
.service-card::part(body)   { padding: 1.5rem 2rem 2rem; }

.service-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 0;
}
.service-icon.violet  { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.15); color: var(--accent-violet); }
.service-icon.magenta { background: rgba(247,37,133,0.08); border-color: rgba(247,37,133,0.15); color: var(--accent-magenta); }
.service-icon.lime    { background: rgba(163,230,53,0.08);  border-color: rgba(163,230,53,0.15);  color: var(--accent-lime); }

.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }

/* ═══════ STATS ═══════ */
.stats { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem; position: relative; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--glass-border); }
.stat-item:last-child::after { display: none; }
.stat-number { font-size: 3rem; font-weight: 900; background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ═══════ WORK ═══════ */
.work { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 4rem; }

.project-card .coverimg {height:280px; object-fit: cover; }
.project-card-body { padding: 1.5rem; position: relative; }

/* Gradiens akcentus vonal ha van colors */
.project-card-body::before {
  content: '';
  display: block;
  height: 2px;
  margin: -1.5rem -1.5rem 1.25rem;
  background: linear-gradient(90deg, var(--c1, var(--glass-border)), var(--c2, var(--glass-border)));
}

/* Kártya hover glow a projekt színével */
.project-card::part(base):hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px color-mix(in srgb, var(--c1, transparent) 15%, transparent);
}

.project-tags { margin-bottom: 1rem; }
.project-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.project-title-row { margin-bottom: 0.25rem; }
.project-title-row h3 { margin: 0; }
.project-title-row .project-client { margin-bottom: 0; }
.project-logo { max-height: 50px; width: auto; object-fit: contain; flex-shrink: 0; }
.project-client { font-family: monospace; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.project-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; font-weight: 400; margin-bottom: 1.25rem; }

/* ═══════ PROJECT DETAIL ═══════ */
.project-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.project-hero-inner { display: flex; flex-direction: column; gap: 1.5rem; }

.project-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.3s, gap 0.3s;
  align-self: flex-start;
}
.project-back:hover { color: var(--accent-cyan); gap: 0.75rem; }

.project-meta-top .project-tags { margin-bottom: 0; }

.project-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.project-client-name {
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.project-cover {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  aspect-ratio: 16/10;
}
.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Case study */
.case-study {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.case-metric {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(20px);
}
.case-metric-value {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}
.case-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: monospace;
  letter-spacing: 0.05em;
}

.case-block { display: flex; flex-direction: column; gap: 0.75rem; }
.case-block-label {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--accent-cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.case-block-label::before { content: ''; width: 30px; height: 1px; background: var(--accent-cyan); }
.case-block p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* Gallery */
.project-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem 5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.gallery-grid img:hover { transform: scale(1.02); border-color: rgba(255,255,255,0.12); }

/* Error */
.error-page { padding: 8rem 3rem; text-align: center; }
.error-content { color: var(--text-muted); font-size: 1.1rem; }

/* Responsive */
@media (max-width: 900px) {
  .project-hero { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem 3rem; }
  .project-cover { order: -1; }
  .case-study { padding: 2rem 1.5rem 4rem; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
  .project-gallery { padding: 0 1.5rem 4rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .case-metrics { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ═══════ PROCESS ═══════ */
.process { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }
.process-timeline { margin-top: 4rem; display: flex; flex-direction: column; position: relative; }
.process-timeline::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet), var(--accent-magenta), var(--accent-lime)); opacity: 0.3; }
.process-step { display: flex; gap: 2.5rem; padding: 2.5rem 0; position: relative; align-items: flex-start; }
.step-marker { width: 50px; height: 50px; min-width: 50px; border-radius: 50%; background: var(--bg-surface); border: 2px solid var(--accent-cyan); display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; font-weight: 500; color: var(--accent-cyan); z-index: 1; }
.process-step:nth-child(2) .step-marker { border-color: var(--accent-violet); color: var(--accent-violet); }
.process-step:nth-child(3) .step-marker { border-color: var(--accent-magenta); color: var(--accent-magenta); }
.process-step:nth-child(4) .step-marker { border-color: var(--accent-lime); color: var(--accent-lime); }
.step-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-content p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; font-weight: 300; max-width: 500px; }

/* ═══════ ABOUT ═══════ */
.about { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }

.about-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}

.about-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 3/4;
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,229,255,0.08), rgba(124,58,237,0.08));
  pointer-events: none;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-bio {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-value {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.about-value::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-violet));
  border-radius: 3px 0 0 3px;
}
.about-value h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.about-value p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* ═══════ ARTICLES ═══════ */
.articles-section { padding: 8rem 3rem; max-width: 1200px; margin: 0 auto; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }

.article-card::part(image) { height: 200px; object-fit: cover; }
.article-card-body { padding: 1.5rem; }
.article-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.article-tags { display: flex; gap: 0.4rem; }
.article-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.article-card p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; font-weight: 300; margin-bottom: 1rem; }

/* ═══════ CTA ═══════ */
.cta { padding: 8rem 3rem; text-align: center; }
.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 3rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-box::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(0,229,255,0.1), transparent 70%); filter: blur(60px); }
.cta-box::after  { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.1), transparent 70%); filter: blur(60px); }
.cta h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta wa-button { position: relative; z-index: 1; }

/* ═══════ FOOTER ═══════ */
footer { padding: 3rem; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
footer .copy { font-size: 0.8rem; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }
footer .socials { display: flex; gap: 1.5rem; }
footer .socials a { color: var(--text-dim); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
footer .socials a:hover { color: var(--accent-cyan); }

/* ═══════ SCROLL REVEAL ═══════ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex !important; }
  .nav-cta-btn { display: none; }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .services, .work, .process, .stats, .about, .articles-section { padding: 4rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-frame { max-width: 200px; aspect-ratio: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .cta { padding: 4rem 1.5rem; }
  .cta-box { padding: 3rem 1.5rem; }

  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
}
