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

:root {
  --bg: #040408;
  --bg2: #080810;
  --surface: #0d0d1a;
  --border: rgba(255,255,255,0.07);
  --accent: #e8ff00;
  --accent2: #00d4ff;
  --accent3: #ff3366;
  --text: #f0f0f5;
  --text-muted: #6b6b80;
  --text-dim: #3a3a50;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --glow: 0 0 40px rgba(232,255,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== CANVAS & CURSOR ===== */
#particleCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.3;
}

.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-trail {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease; opacity: 0.5;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px; transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(4,4,8,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 4px;
  color: var(--text); text-decoration: none;
}

.logo-bracket { color: var(--accent); font-size: 32px; }

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

.nav-links a {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}

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

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

.nav-cta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--bg); background: var(--accent);
  border: none; padding: 10px 20px; border-radius: 4px;
  cursor: none; transition: all 0.3s; font-weight: 700;
}

.nav-cta:hover {
  background: transparent; color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--glow);
}

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: none; z-index: 1001;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--text); transition: all 0.3s ease; display: block;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 60px;
  overflow: hidden; z-index: 1;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: 0.4; pointer-events: none;
}

.page-hero::before {
  content: ''; position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.05), transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: ''; position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,255,0,0.04), transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative; z-index: 2;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 3px; color: var(--accent);
  text-transform: uppercase; display: block; margin-bottom: 16px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88; letter-spacing: 3px;
  margin: 20px 0 28px;
  display: flex; flex-direction: column; align-items: center;
}

.page-title .line {
  display: block; opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.page-title .line:nth-child(1) { animation-delay: 0.2s; }
.page-title .line:nth-child(2) { animation-delay: 0.4s; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-title .accent {
  color: transparent;
  -webkit-text-stroke: 3px var(--accent); position: relative;
}

.page-title .accent::before {
  content: attr(data-text);
  position: absolute; left: 0; right: 0;
  color: var(--accent); -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0);
  animation: textReveal 2s ease 1s forwards;
}

@keyframes textReveal { to { clip-path: inset(0 0% 0 0); } }

.page-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted); line-height: 1.7;
  opacity: 0; animation: slideUp 0.8s ease 0.7s forwards;
}

.page-subtitle em { color: var(--accent2); font-style: normal; }
.page-subtitle strong { color: var(--accent); font-weight: 500; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: slideUp 0.8s ease 1.1s forwards;
}

.scroll-line {
  width: 40px; height: 1px; background: var(--accent);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--bg);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; } 50% { left: 0%; } 100% { left: 100%; }
}

.hero-scroll-hint span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim);
}

/* ===== CONTACT MAIN ===== */
.contact-main {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
}

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

/* ===== FORM SIDE ===== */
.form-header { margin-bottom: 48px; }

.form-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1; letter-spacing: 2px; margin: 16px 0 12px;
}

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

.form-sub {
  font-size: 15px; color: var(--text-muted);
}

.form-sub strong { color: var(--accent); font-weight: 500; }

/* ===== FORM STEPS ===== */
.form-step {
  display: none;
  animation: stepIn 0.4s ease forwards;
}

.form-step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

.step-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}

.step-num {
  font-family: var(--font-display); font-size: 48px;
  color: var(--text-dim); line-height: 1;
}

.step-label > span:last-child {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
}

/* ===== FORM ELEMENTS ===== */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.form-group {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim);
}

.req { color: var(--accent3); }

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-body);
  font-size: 15px; padding: 14px 18px;
  border-radius: 6px; outline: none;
  transition: all 0.3s; resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,255,0,0.06);
  background: rgba(232,255,0,0.02);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--accent3);
  box-shadow: 0 0 0 3px rgba(255,51,102,0.08);
}

.field-error {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--accent3);
  display: none;
}

.field-error.show { display: block; }

.char-count {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; color: var(--text-dim);
  text-align: right;
}

/* ===== PICKER BUTTONS ===== */
.service-picker,
.budget-picker,
.timeline-picker,
.source-picker {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.sp-btn, .bp-btn, .tp-btn, .src-btn {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 16px; border-radius: 4px;
  cursor: none; transition: all 0.3s;
  white-space: nowrap;
}

.sp-btn { font-size: 12px; padding: 12px 16px; }

.sp-btn:hover, .bp-btn:hover, .tp-btn:hover, .src-btn:hover {
  border-color: rgba(232,255,0,0.3); color: var(--accent);
}

.sp-btn.selected, .bp-btn.selected, .tp-btn.selected, .src-btn.selected {
  background: rgba(232,255,0,0.08);
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 12px rgba(232,255,0,0.1);
}

/* ===== CHECKBOX ===== */
.checkbox-group { flex-direction: row; align-items: flex-start; gap: 0; }

.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: none; font-size: 14px; color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 3px;
  background: var(--surface); margin-top: 2px;
  transition: all 0.3s; position: relative;
}

.checkbox-custom::after {
  content: '✓'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 12px; color: var(--bg); opacity: 0;
  transition: opacity 0.2s;
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--accent); border-color: var(--accent);
}

.checkbox-label input:checked ~ .checkbox-custom::after { opacity: 1; }
.checkbox-label a { color: var(--accent2); text-decoration: none; }
.checkbox-label a:hover { text-decoration: underline; }

/* ===== STEP NAV ===== */
.step-nav {
  display: flex; gap: 12px; align-items: center; margin-top: 8px;
}

.btn-step {
  display: flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  border: none; padding: 14px 28px;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 4px;
  cursor: none; transition: all 0.3s;
  position: relative; overflow: hidden;
}

.btn-step::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn-step:hover::before { transform: translateX(150%) skewX(-15deg); }
.btn-step:hover { box-shadow: 0 0 24px rgba(232,255,0,0.4); transform: translateY(-2px); }
.btn-step span { transition: transform 0.3s; }
.btn-step:hover span { transform: translateX(4px); }

.btn-back {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); padding: 14px 20px;
  border-radius: 4px; cursor: none; transition: all 0.3s;
}

.btn-back:hover { color: var(--accent2); border-color: var(--accent2); }

.btn-submit {
  display: flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  border: none; padding: 16px 32px;
  font-family: var(--font-mono); font-size: 13px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; border-radius: 4px;
  cursor: none; transition: all 0.3s; flex: 1;
  justify-content: center; position: relative; overflow: hidden;
}

.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.4s ease;
}

.btn-submit:hover::before { transform: translateX(150%) skewX(-15deg); }
.btn-submit:hover { box-shadow: 0 0 30px rgba(232,255,0,0.4); }

.btn-submit svg {
  width: 18px; height: 18px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round;
  transition: transform 0.3s;
}

.btn-submit:hover svg { transform: translateX(4px); }

.submit-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(4,4,8,0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn-submit.loading .submit-spinner { display: block; }
.btn-submit.loading svg { display: none; }
.btn-submit.loading .submit-text { opacity: 0.6; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none; text-align: center; padding: 60px 40px;
  background: var(--surface); border: 1px solid rgba(232,255,0,0.15);
  border-radius: var(--radius); animation: stepIn 0.5s ease forwards;
}

.form-success.show { display: block; }

.success-icon {
  width: 72px; height: 72px;
  background: rgba(232,255,0,0.1);
  border: 2px solid var(--accent);
  border-radius: 50%; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--accent);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  font-family: var(--font-display); font-size: 40px;
  letter-spacing: 2px; margin-bottom: 12px;
}

.form-success p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 28px;
}

.form-success p strong { color: var(--accent); }

.success-ref {
  display: flex; align-items: center;
  justify-content: center; gap: 12px;
}

.ref-code {
  font-family: var(--font-mono); font-size: 16px;
  letter-spacing: 3px; color: var(--accent2);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 8px 20px; border-radius: 4px;
}

.ref-copy-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 4px; cursor: pointer;
  font-size: 16px; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.ref-copy-btn:hover {
  border-color: var(--accent); color: var(--accent);
}

.success-warning {
  margin-top: 20px;
  background: rgba(232,255,0,0.06);
  border: 1px solid rgba(232,255,0,0.25);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

/* ===== FORM PROGRESS ===== */
.form-progress {
  display: flex; align-items: center;
  margin-top: 40px; gap: 0;
}

.fp-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.3s;
}

.fp-step.active { color: var(--accent); }
.fp-step.done { color: var(--accent2); }

.fp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--text-dim);
  transition: all 0.3s;
}

.fp-step.active .fp-dot {
  border-color: var(--accent); background: var(--accent);
  box-shadow: 0 0 10px rgba(232,255,0,0.4);
}

.fp-step.done .fp-dot {
  border-color: var(--accent2); background: var(--accent2);
}

.fp-line {
  flex: 1; height: 1px; background: var(--border);
  margin-bottom: 18px; transition: background 0.4s;
}

.fp-line.done { background: var(--accent2); }

/* ===== INFO SIDE ===== */
.info-side {
  display: flex; flex-direction: column; gap: 20px;
}

/* Contact Cards */
.contact-cards {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}

.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: all 0.3s; cursor: none;
  background: var(--surface);
}

.contact-card:last-child { border-bottom: none; }
.contact-card:hover { background: rgba(232,255,0,0.04); padding-left: 32px; }

.cc-icon {
  width: 44px; height: 44px;
  background: rgba(232,255,0,0.06);
  border: 1px solid rgba(232,255,0,0.15);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: all 0.3s;
}

.contact-card:hover .cc-icon {
  background: rgba(232,255,0,0.12);
  border-color: var(--accent);
}

.cc-info {
  flex: 1; display: flex; flex-direction: column; gap: 2px;
}

.cc-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim);
}

.cc-info strong { font-size: 15px; font-weight: 500; }
.cc-sub { font-size: 12px; color: var(--text-dim); }

.cc-arrow {
  font-size: 18px; color: var(--text-dim);
  transition: all 0.3s;
}

.contact-card:hover .cc-arrow { color: var(--accent); transform: translateX(4px); }

/* Response Card */
.response-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}

.rc-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}

.rc-dot {
  width: 8px; height: 8px; background: #10b981;
  border-radius: 50%; animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.rc-title {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: #10b981;
}

.rc-stats {
  display: flex; align-items: center; gap: 0;
}

.rc-stat {
  flex: 1; text-align: center;
}

.rc-num {
  font-family: var(--font-display); font-size: 36px;
  color: var(--accent); line-height: 1;
}

.rc-unit {
  font-family: var(--font-display); font-size: 24px;
  color: var(--accent2);
}

.rc-stat p {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim); margin-top: 4px;
}

.rc-div { width: 1px; height: 50px; background: var(--border); }

/* Social Links */
.social-links { }

.social-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px;
}

.social-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  text-decoration: none; color: var(--text);
  transition: all 0.3s; cursor: none;
}

.social-card:hover {
  border-color: rgba(232,255,0,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.social-icon {
  width: 40px; height: 40px;
  background: rgba(232,255,0,0.06);
  border: 1px solid rgba(232,255,0,0.15);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  font-family: var(--font-mono);
  color: var(--accent); font-weight: bold;
  transition: all 0.3s;
}

.social-card:hover .social-icon {
  background: rgba(232,255,0,0.12); border-color: var(--accent);
}

.social-card strong { display: block; font-size: 13px; font-weight: 500; }
.social-card span { font-size: 11px; color: var(--text-dim); font-family: var(--font-mono); }

/* Map Card */
.map-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}

.map-visual {
  height: 200px; position: relative; overflow: hidden;
  background: var(--bg2);
}

.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.pin-dot {
  width: 14px; height: 14px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 20px rgba(232,255,0,0.6);
  z-index: 2;
}

.pin-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border: 1px solid rgba(232,255,0,0.3);
  border-radius: 50%;
  animation: pinPulse 2s ease-in-out infinite;
}

@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.pin-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); background: rgba(4,4,8,0.8);
  border: 1px solid rgba(232,255,0,0.2);
  padding: 4px 12px; border-radius: 3px;
  white-space: nowrap; margin-top: 20px;
}

.map-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}

.map-link {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 1px; color: var(--accent2);
  text-decoration: none; transition: color 0.3s;
}

.map-link:hover { color: var(--accent); }

/* ===== CONTACT FAQ ===== */
.contact-faq {
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  position: relative; z-index: 2;
  background: var(--surface);
}

.section-header { margin-bottom: 56px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1; letter-spacing: 2px;
}

.faq-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.faq-mini {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.3s; cursor: none;
}

.faq-mini:hover {
  border-color: rgba(232,255,0,0.15);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.faq-mini h3 {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 1px; margin-bottom: 12px;
  line-height: 1.2; transition: color 0.3s;
}

.faq-mini:hover h3 { color: var(--accent); }

.faq-mini p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border); padding: 40px 60px 32px;
}

.footer-top {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 32px;
}

.footer-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 4px; }
.footer-links { display: flex; gap: 32px; }

.footer-links a {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}

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

.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom span { font-size: 13px; color: var(--text-dim); }
.footer-mono { font-family: var(--font-mono); font-size: 11px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .faq-mini-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .page-hero { padding: 0 24px; }
  .contact-main { padding: 80px 24px; }
  .contact-faq { padding: 80px 24px; }

  .form-row { grid-template-columns: 1fr; }
  .faq-mini-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .rc-stats { flex-wrap: wrap; }

  .footer { padding: 32px 24px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .social-grid { grid-template-columns: 1fr; }
  .service-picker { gap: 6px; }
  .sp-btn { font-size: 11px; padding: 10px 12px; }
}