/* ============================================================
   INPIXEL NETWORK — styles.css
   ============================================================ */

:root {
  --gold: #F0A500;
  --gold-light: #FFD166;
  --gold-dim: #8B6100;
  --black: #060608;
  --black2: #0D0D10;
  --surface: #111116;
  --surface2: #18181F;
  --border: rgba(240,165,0,0.12);
  --border-bright: rgba(240,165,0,0.35);
  --text: #E8E8F0;
  --text-muted: #6B6B80;
  --white: #FFFFFF;
  --radius: 2px;
  --glow: 0 0 40px rgba(240,165,0,0.15);
  --glow-strong: 0 0 80px rgba(240,165,0,0.3);
}

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

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

* {
  cursor: auto !important;
}

/* ──────────── NOISE OVERLAY ──────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
}

/* ──────────── GRID LINES ──────────── */
.grid-bg {
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(240,165,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,165,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ──────────── NAV ──────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(6,6,8,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s;
}
nav.scrolled {
  padding: 14px 48px;
  background: rgba(6,6,8,0.92);
  border-color: var(--border-bright);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-bright);
}
.nav-logo span {
  background: linear-gradient(135deg,#fff 40%,var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.06em;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black);
  border: none; border-radius: var(--radius);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.btn-nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
  opacity: 0; transition: opacity 0.3s;
}
.btn-nav:hover { box-shadow: 0 0 30px rgba(240,165,0,0.5); transform: translateY(-1px); }
.btn-nav:hover::before { opacity: 1; }

/* ──────────── HERO ──────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orb-drift 8s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,165,0,0.06) 0%, transparent 70%);
  bottom: 0; left: 10%;
  animation: orb-drift 10s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift { from{transform:translate(0,0)} to{transform:translate(30px,40px)} }

.hero-inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: fade-up 0.8s 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800; line-height: 1.03;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0; animation: fade-up 0.8s 0.35s forwards;
}
.hero-h1 .line { display: block; }
.hero-h1 .gold { color: var(--gold); }
.hero-h1 .outline { -webkit-text-stroke: 1.5px var(--gold); color: transparent; }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text-muted); max-width: 480px;
  margin-bottom: 44px;
  opacity: 0; animation: fade-up 0.8s 0.5s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fade-up 0.8s 0.65s forwards;
}
.btn-primary {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  border: none; border-radius: var(--radius);
  cursor: none; position: relative; overflow: hidden;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { box-shadow: var(--glow-strong); transform: translateY(-2px); }
.btn-primary .shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shine 3s 2s infinite;
}
@keyframes shine { 0%{left:-100%} 30%,100%{left:150%} }
.btn-ghost {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  padding: 15px 36px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  cursor: none;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(240,165,0,0.05); }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ──────────── HERO 3D TILT CARD ──────────── */
.hero-right {
  position: relative;
  opacity: 0; animation: fade-up 1s 0.4s forwards;
}
.tilt-scene {
  perspective: 1000px;
  width: 100%; aspect-ratio: 1;
  max-width: 520px; margin: 0 auto;
}
.tilt-card {
  width: 100%; height: 100%;
  position: relative; transform-style: preserve-3d;
  transition: transform 0.1s ease;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  overflow: hidden;
}
.tilt-card-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px;
  background: radial-gradient(ellipse at 60% 40%, rgba(240,165,0,0.07) 0%, transparent 70%);
}
.card-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,165,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,165,0,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.card-logo-wrap {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(240,165,0,0.3);
  position: relative; z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite;
}
.card-logo-wrap img { width: 80px; height: 80px; border-radius: 50%; }
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(240,165,0,0.3); }
  50% { box-shadow: 0 0 60px rgba(240,165,0,0.6); }
}
.card-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.6rem; text-align: center;
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; z-index: 1; margin-bottom: 6px;
}
.card-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim); position: relative; z-index: 1;
  margin-bottom: 40px;
}
.card-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; width: 100%; position: relative; z-index: 1;
}
.card-stat {
  background: rgba(240,165,0,0.05);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 16px;
  text-align: center;
  transition: all 0.3s;
}
.card-stat:hover { border-color: var(--gold); background: rgba(240,165,0,0.1); }
.card-stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.6rem; color: var(--gold);
  display: block; line-height: 1;
  margin-bottom: 4px;
}
.card-stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  font-family: 'Space Mono', monospace; letter-spacing: 0.05em;
}
.float-badge {
  position: absolute;
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  border-radius: 40px;
  padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em;
  box-shadow: var(--glow);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.float-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.float-badge-1 { bottom: 30px; left: -30px; animation-delay: 0s; }
.float-badge-2 { top: 30px; right: -30px; animation-delay: 1.5s; }

/* ──────────── MARQUEE ──────────── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--surface);
  position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  padding: 0 36px;
  display: flex; align-items: center; gap: 12px;
}
.marquee-item span { color: var(--gold); font-size: 1.1rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ──────────── SECTION BASE ──────────── */
section {
  padding: 120px 48px;
  position: relative; z-index: 1;
}
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.section-label::before { content:''; width:32px; height:1px; background:var(--gold); }
.section-label::after { content:''; width:8px; height:8px; border:1px solid var(--gold); transform:rotate(45deg); }
.section-h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-h2 .gold { color: var(--gold); }
.section-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-muted);
  max-width: 500px;
}
.max-w { max-width: 1400px; margin: 0 auto; }

/* ──────────── SERVICES ──────────── */
#services { background: var(--black2); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 80px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--black2);
  padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(240,165,0,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover { background: var(--surface); }
.svc-card:hover::before { opacity: 1; }
.svc-number {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 5rem; line-height: 1;
  color: rgba(240,165,0,0.06);
  position: absolute; top: 16px; right: 20px;
  transition: color 0.4s;
  pointer-events: none;
}
.svc-card:hover .svc-number { color: rgba(240,165,0,0.12); }
.svc-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s;
}
.svc-card:hover .svc-icon-wrap { border-color: var(--gold); box-shadow: 0 0 20px rgba(240,165,0,0.2); }
.svc-icon-wrap svg { width: 22px; height: 22px; stroke: var(--gold); }
.svc-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.2rem; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.svc-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.1em;
  padding: 5px 10px;
  background: rgba(240,165,0,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s;
}
.svc-card:hover .svc-tag { border-color: rgba(240,165,0,0.25); color: var(--gold-light); }
.svc-arrow {
  position: absolute; bottom: 36px; right: 36px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.4s;
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); border-color: var(--gold); }
.svc-arrow svg { width: 14px; stroke: var(--gold); }

/* ──────────── ABOUT ──────────── */
#about { background: var(--black); overflow: hidden; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 100px; align-items: center;
}
.metrics-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.metric-block {
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.4s;
}
.metric-block:hover { border-color: var(--border-bright); }
.metric-block::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.metric-block:hover::after { opacity: 1; }
.metric-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.8rem; color: var(--gold); line-height: 1;
  display: block; margin-bottom: 4px;
}
.metric-label { font-size: 0.82rem; color: var(--text-muted); }
.about-right { display: flex; flex-direction: column; gap: 24px; }
.pillar {
  border: 1px solid var(--border);
  padding: 32px 36px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
  display: flex; gap: 24px; align-items: flex-start;
}
.pillar:hover { border-color: var(--gold); background: rgba(240,165,0,0.03); transform: translateX(6px); }
.pillar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s;
}
.pillar:hover .pillar-icon { border-color: var(--gold); box-shadow: 0 0 16px rgba(240,165,0,0.2); }
.pillar-icon svg { width: 20px; stroke: var(--gold); }
.pillar h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.pillar p { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); }

/* ──────────── PROCESS ──────────── */
#process { background: var(--black2); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  margin-top: 80px;
}
.process-step {
  background: var(--black2);
  padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.process-step:hover { background: var(--surface); }
.step-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 4.5rem; color: rgba(240,165,0,0.07);
  line-height: 1; margin-bottom: 28px;
  transition: color 0.4s;
}
.process-step:hover .step-num { color: rgba(240,165,0,0.15); }
.step-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.4s;
}
.process-step:hover .step-icon { border-color: var(--gold); box-shadow: var(--glow); }
.step-icon svg { width: 20px; stroke: var(--gold); }
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.step-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); }
.step-connector {
  position: absolute; top: 44px; right: -1px;
  height: 48px; display: flex; align-items: center; z-index: 2;
}
.step-connector svg { width: 20px; stroke: var(--gold); opacity: 0.3; }

/* ──────────── CONTACT ──────────── */
#contact { background: var(--black); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-channels { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
.channel-link {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.4s;
  position: relative; overflow: hidden;
  cursor: none;
}
.channel-link::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s;
}
.channel-link:hover { border-color: var(--border-bright); background: rgba(240,165,0,0.03); }
.channel-link:hover::before { transform: scaleY(1); }
.channel-icon { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-icon svg { width: 18px; stroke: var(--gold); }
.channel-label { font-family:'Space Mono',monospace; font-size:0.65rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); margin-bottom:4px; }
.channel-value { font-family:'Syne',sans-serif; font-weight:700; font-size:0.95rem; color:var(--text); }
.contact-right {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}
.contact-right::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text);
  outline: none; border-radius: var(--radius);
  transition: border-color 0.3s;
  resize: none;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.06em;
  padding: 16px;
  background: var(--gold); color: var(--black);
  border: none; cursor: none;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { box-shadow: var(--glow-strong); transform: translateY(-2px); }
.success-panel { display: none; text-align: center; padding: 40px; }
.success-panel.show { display: block; }
.success-circle {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(240,165,0,0.3);
}
.success-circle svg { width: 28px; stroke: var(--gold); }

/* ──────────── FOOTER ──────────── */
footer {
  border-top: 1px solid var(--border);
  background: var(--black);
  padding: 40px 48px;
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.95rem;
}
.footer-logo img { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-bright); }
.footer-logo span {
  background: linear-gradient(135deg,#fff,var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-center {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.12em; color: var(--text-muted);
  text-align: center;
}
.footer-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.08em; color: var(--gold-dim);
}

/* ──────────── FLOATING CTA ──────────── */
.floating-cta {
  position: fixed; bottom: 36px; right: 36px;
  z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-pill {
  background: var(--gold); color: var(--black);
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.82rem; padding: 14px 22px;
  border: none; border-radius: 40px;
  cursor: none; box-shadow: 0 8px 32px rgba(240,165,0,0.4);
  transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
}
.float-pill:hover { transform: scale(1.05); box-shadow: 0 12px 48px rgba(240,165,0,0.6); }
.float-pill svg { width: 16px; }

/* ──────────── POPUP ──────────── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.overlay.show { opacity: 1; pointer-events: all; }
.popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  z-index: 2001;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  width: 480px; max-width: calc(100vw - 32px);
  padding: 48px;
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.popup.show { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }
.popup-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.popup-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; }
.popup-close {
  width: 36px; height: 36px; border: 1px solid var(--border);
  background: none; cursor: none; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.popup-close:hover { border-color: var(--gold); color: var(--gold); }
.popup-close svg { width: 16px; stroke: currentColor; }

/* ──────────── SCROLL REVEAL ──────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .services-header { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
  .process-grid { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
}
