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

:root {
  --black:        #020204;
  --surface:      #080810;
  --surface-2:    #0c0c16;
  --cyan:         #00e5ff;
  --white:        #f0f0f8;
  --text:         #c8c8d8;
  --muted:        #9090b0;
  --border:       #12121f;
  --border-hover: #1e1e33;
  --cyan-dim:     rgba(0, 229, 255, 0.10);
  --cyan-glow:    rgba(0, 229, 255, 0.05);
  --radius-card:  16px;
}

html {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px;
}

/* ── Page layout ────────────────────────────────────────────────── */
.nq-page {
  max-width: 480px;
  margin: 0 auto;
  padding: 52px 20px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Profile ────────────────────────────────────────────────────── */
.nq-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.nq-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
  display: block;
}

.nq-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.4px;
  margin-top: 6px;
}

.nq-location {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nq-location svg {
  color: var(--muted);
  flex-shrink: 0;
}

.nq-bio {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  max-width: 320px;
}

/* ── Social icons row ───────────────────────────────────────────── */
.nq-social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.nq-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.nq-social-icon:hover {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  color: var(--cyan);
  transform: translateY(-2px);
}

.nq-social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  display: block;
}

/* ── Link groups ────────────────────────────────────────────────── */
.nq-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nq-group-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding-left: 2px;
  margin-bottom: 2px;
}

/* ── Link buttons ───────────────────────────────────────────────── */
.nq-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 13px 16px;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.15s ease;
  will-change: transform;
}

.nq-btn:hover {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.07) 0%, var(--surface-2) 100%);
  transform: translateY(-1px);
}

.nq-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nq-btn:hover .nq-btn-icon {
  border-color: rgba(0, 229, 255, 0.35);
  background: rgba(0, 229, 255, 0.08);
  color: var(--cyan);
}

.nq-btn-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.nq-btn-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nq-btn-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.nq-btn-sub {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Services list ──────────────────────────────────────────────── */
.nq-list {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.nq-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.18s ease;
}

.nq-list-item:last-child {
  border-bottom: none;
}

.nq-list-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.nq-list-item:hover .nq-list-icon {
  color: var(--cyan);
  border-color: rgba(0, 229, 255, 0.3);
}

.nq-list-chevron {
  margin-left: auto;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nq-list-chevron svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.nq-list-item:hover .nq-list-chevron {
  color: var(--cyan);
  transform: translateX(2px);
}

.nq-list-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
}

.nq-list-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nq-list-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nq-list-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nq-list-sub {
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nq-list-item:hover .nq-list-name {
  color: var(--white);
}

/* ── Bottom WhatsApp CTA ─────────────────────────────────────────── */
.nq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cyan);
  color: #020204;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 16px 24px;
  border-radius: var(--radius-card);
  text-decoration: none;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.28);
  transition: opacity 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.nq-cta:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.40);
}

.nq-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.nq-footer {
  text-align: center;
  padding-top: 4px;
}

.nq-footer a {
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.18s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.nq-footer a:hover {
  opacity: 1;
}

.nq-footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nq-footer-powered {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.22);
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* ── Floating WhatsApp ───────────────────────────────────────────── */
.nq-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cyan);
  color: #020204;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.40);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nq-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0, 229, 255, 0.55);
}

.nq-wa-float svg {
  width: 28px;
  height: 28px;
}

/* ── Entrance animations ─────────────────────────────────────────── */
@keyframes nqFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nq-profile                          { animation: nqFadeUp 0.55s ease both; }
.nq-page > .nq-group:nth-of-type(1)  { animation: nqFadeUp 0.55s ease 0.08s both; }
.nq-page > .nq-group:nth-of-type(2)  { animation: nqFadeUp 0.55s ease 0.16s both; }
.nq-page > .nq-group:nth-of-type(3)  { animation: nqFadeUp 0.55s ease 0.22s both; }
.nq-cta                              { animation: nqFadeUp 0.55s ease 0.28s both; }
.nq-footer                           { animation: nqFadeUp 0.55s ease 0.34s both; }

/* ── Very small screens ──────────────────────────────────────────── */
@media (max-width: 360px) {
  .nq-page {
    padding: 36px 16px 48px;
  }

  .nq-name {
    font-size: 22px;
  }

  .nq-btn {
    padding: 11px 14px;
    gap: 12px;
  }

  .nq-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .nq-btn-icon svg {
    width: 18px;
    height: 18px;
  }
}
