/* ═══════════════════════════════════════════════════════════
   ZENZILE MOLLO — PORTFOLIO STYLES
   Palette: #0A0A0A · #1E6FFF · #FF6B2B · #F5F2EE
   Fonts: Syne (display) + Bricolage Grotesque (body)
═══════════════════════════════════════════════════════════ */

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

:root {
  --black:    #0A0A0A;
  --black-2:  #111111;
  --black-3:  #1A1A1A;
  --blue:     #1E6FFF;
  --blue-dim: #1456CC;
  --blue-glow:#1E6FFF33;
  --orange:   #FF6B2B;
  --orange-dim:#CC5522;
  --cream:    #F5F2EE;
  --cream-2:  #EDE9E3;
  --white:    #FFFFFF;
  --gray:     #888888;
  --gray-2:   #555555;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Bricolage Grotesque', sans-serif;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor-orb {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              border-color 0.3s ease,
              background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

body.cursor-hover .cursor-orb {
  width: 64px;
  height: 64px;
  background: var(--blue-glow);
  border-color: var(--orange);
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-z { color: var(--blue); }
.logo-m { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--orange); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-up.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }

/* ── SECTION LABELS ─────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.label-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.label-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.label-text::before {
  content: '—— ';
  color: var(--blue);
}

/* ── SECTION TITLES ─────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30, 111, 255, 0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 6rem;
  overflow: hidden;
}

/* Giant background text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  animation: bgTextDrift 20s ease-in-out infinite alternate;
}

@keyframes bgTextDrift {
  from { transform: translate(-50%, -50%) translateX(-2%); }
  to   { transform: translate(-50%, -50%) translateX(2%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Left */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(30, 111, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.accent-line {
  color: transparent;
  -webkit-text-stroke: 2px var(--blue);
  position: relative;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 380px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Right — Image Frame */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: clamp(280px, 35vw, 460px);
  aspect-ratio: 3/4;
}

.frame-accent {
  position: absolute;
  border-radius: 2px;
  z-index: 0;
}

.frame-accent-1 {
  inset: -12px -12px auto auto;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.frame-accent-2 {
  inset: auto auto -12px -12px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.5s ease;
}

.hero-photo:hover {
  filter: grayscale(0%) contrast(1.1);
}

/* Rotating badge */
.hero-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  z-index: 2;
}

.badge-ring {
  width: 100%;
  height: 100%;
  animation: rotateBadge 12s linear infinite;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  fill: var(--orange);
  text-transform: uppercase;
}

.badge-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--cream);
  background: var(--black-3);
  border-radius: 50%;
  margin: 22px;
  border: 1px solid rgba(255,255,255,0.1);
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero Stats */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: var(--blue);
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.marquee-dot {
  color: var(--orange) !important;
  font-size: 0.6rem !important;
}

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

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,111,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.about-image-block {
  position: relative;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 340px;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.about-photo:hover { filter: grayscale(0%); }

.about-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

.about-right {
  padding-top: 4rem;
}

.about-text {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(245, 242, 238, 0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: var(--cream);
  font-weight: 600;
}

.about-roles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2.5rem 0;
}

.role-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}

.role-card:hover {
  border-color: rgba(30, 111, 255, 0.3);
  background: rgba(30, 111, 255, 0.05);
  transform: translateX(6px);
}

.role-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 111, 255, 0.1);
  border-radius: 8px;
  color: var(--blue);
}

.role-icon svg { width: 20px; height: 20px; }

.role-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.role-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out);
}

.social-pill svg { width: 14px; height: 14px; }

.social-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   WORK / SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.work {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.work::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,43,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.work-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}

.service-card {
  background: var(--black);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,111,255,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover { background: var(--black-3); }
.service-card:hover::before { opacity: 1; }

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 111, 255, 0.1);
  border-radius: 10px;
  color: var(--blue);
  transition: background 0.3s ease, color 0.3s ease;
}

.service-icon svg { width: 22px; height: 22px; }
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 { color: var(--white); }

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-tags span {
  border-color: rgba(30, 111, 255, 0.3);
  color: var(--blue);
}

/* ═══════════════════════════════════════════════════════════
   TOOLS SECTION
═══════════════════════════════════════════════════════════ */
.tools {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.tools::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30,111,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.tools-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.tools-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 1rem;
  margin-bottom: 3.5rem;
  max-width: 500px;
}

.tools-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.tools-category {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}

.category-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  min-width: 100px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.tool-item::after {
  content: attr(data-name);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  transition: bottom 0.3s var(--ease-out);
}

.tool-item:hover {
  border-color: rgba(30, 111, 255, 0.4);
  background: rgba(30, 111, 255, 0.06);
  transform: translateY(-6px);
}

.tool-item:hover::after { bottom: 8px; }

.tool-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease-out);
}

.tool-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.tool-item:hover .tool-icon-wrap { transform: scale(1.1); }

.tool-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  text-align: center;
  transition: color 0.3s ease;
}

.tool-item:hover span { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  margin-top: 3rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}

.contact-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  color: var(--gray);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-out);
}

.contact-social svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact-social .link-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.contact-social:hover {
  border-color: rgba(255, 107, 43, 0.4);
  color: var(--orange);
  background: rgba(255, 107, 43, 0.05);
  transform: translateX(4px);
}

.contact-social:hover .link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 0.875rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--black-3);
  color: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: rgba(30, 111, 255, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 136, 136, 0.5);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: none;
  transition: background 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  margin-top: 0.5rem;
}

.btn-submit svg { width: 16px; height: 16px; }

.btn-submit:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 43, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-socials a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-right {
    order: -1;
  }

  .hero-image-frame {
    width: clamp(220px, 50vw, 340px);
    margin: 0 auto;
  }

  .hero-title { font-size: clamp(3rem, 8vw, 5rem); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-block { max-width: 280px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-orb, .cursor-dot { display: none; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

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

  .tools-row {
    gap: 0.75rem;
  }

  .tool-item {
    min-width: 80px;
    padding: 1.25rem 1rem;
  }

  .hero-badge {
    width: 80px;
    height: 80px;
    bottom: -16px;
    right: -16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }

  .about-socials { flex-direction: column; }
  .social-pill { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   LOADING SCREEN
═══════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  overflow: hidden;
}

.loader-logo .logo-z { color: var(--blue); }
.loader-logo .logo-m { color: var(--orange); }

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 1px;
  animation: loadProgress 1.4s var(--ease-out) forwards;
}

@keyframes loadProgress {
  from { width: 0%; }
  to   { width: 100%; }
}