/* CLERTECH — Clean Cyan Theme */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #070519;
  --bg-2: #0c0826;
  --bg-3: #100d30;
  --cyan: #24CAE3;
  --cyan-dim: rgba(36,202,227,0.15);
  --cyan-glow: rgba(36,202,227,0.35);
  --text: #E8E8F0;
  --text-dim: #8b8ba3;
  --border: rgba(36,202,227,0.18);
  --card: rgba(12,8,38,0.85);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Space Grotesk', system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
body {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(36,202,227,0.07), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(36,202,227,0.05), transparent),
    var(--bg);
}
a { color: var(--cyan); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: 0.8; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── NAVBAR ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 40px);
  height: 64px;
  background: rgba(7,5,25,0.80);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(36,202,227,0.10);
  transition: background .35s, border-color .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(7,5,25,0.97);
  border-color: rgba(36,202,227,0.20);
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav .logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: clamp(18px, 4vw, 22px);
  color: var(--cyan); letter-spacing: -0.03em;
  transition: opacity .2s;
}
.nav .logo:hover { opacity: .85; }
.nav .logo .dot { opacity: 0.45; }
.nav-links { display: flex; gap: clamp(6px, 2vw, 24px); align-items: center; }
.nav-link {
  position: relative; color: var(--text-dim); font-size: 14px; font-weight: 500;
  padding: 6px 4px; transition: color .2s; opacity: 1;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--cyan); border-radius: 2px;
  transition: width .25s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--cyan); }
.nav-link.active::after { width: 100%; }
.nav-user { display: flex; gap: 8px; align-items: center; }

/* ── NAV AVATAR DROPDOWN ── */
.nav-avatar-wrap { position: relative; }
.nav-avatar-btn {
  display: flex; align-items: center; justify-content: center;
  background: none; border: 2px solid var(--border); border-radius: 50%;
  cursor: pointer; padding: 0; width: 38px; height: 38px;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden; flex-shrink: 0;
}
.nav-avatar-btn:hover { border-color: var(--cyan); box-shadow: 0 0 12px var(--cyan-glow); }
.nav-avatar-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.nav-avatar-btn .avatar { width: 100%; height: 100%; border-radius: 50%; border: none; }
.nav-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 200px; background: rgba(12,8,38,0.98);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(36,202,227,0.08);
  backdrop-filter: blur(20px);
  padding: 6px; z-index: 200;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.nav-dropdown.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a, .nav-dropdown button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--text-dim); font-weight: 500;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-dropdown a:hover, .nav-dropdown button:hover {
  color: var(--cyan); background: var(--cyan-dim); opacity: 1;
}
.nav-dropdown .drop-divider {
  height: 1px; background: var(--border); margin: 4px 0;
}
.nav-dropdown .drop-danger { color: #ff6b6b !important; }
.nav-dropdown .drop-danger:hover { background: rgba(255,107,107,0.1) !important; color: #ff6b6b !important; }

.nav-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px; padding: 0;
  color: var(--text-dim); transition: color .2s, background .2s;
}
.nav-icon-btn:hover { color: var(--cyan); background: var(--cyan-dim); opacity: 1; }

.nav-chat-wrap { position: relative; display: inline-flex; }
.nav-chat-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; padding: 0;
  color: var(--cyan); background: var(--cyan-dim);
  border: 1px solid rgba(36,202,227,0.25);
  transition: background .2s, box-shadow .2s;
}
.nav-chat-btn:hover {
  background: rgba(36,202,227,0.22);
  box-shadow: 0 0 16px var(--cyan-glow);
  opacity: 1;
}
.nav-chat-badge {
  position: absolute; top: -5px; right: -5px;
  min-width: 17px; height: 17px; border-radius: 9px;
  background: #ff4444; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; line-height: 1;
  border: 2px solid var(--bg);
  pointer-events: none;
}

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--cyan-dim); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: rgba(7,5,25,0.98); backdrop-filter: blur(24px);
  z-index: 99; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; padding: 32px 24px;
  opacity: 0; transform: translateY(-12px);
  transition: opacity .3s, transform .3s;
}
.mobile-menu.open {
  display: flex; opacity: 1; transform: translateY(0);
  animation: slideDown .28s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a, .mobile-menu button {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 280px; padding: 14px 24px;
  font-size: 17px; color: var(--text-dim); font-weight: 600;
  background: none; border: none; border-radius: 12px;
  cursor: pointer; text-align: center; transition: color .2s, background .2s;
}
.mobile-menu a:hover, .mobile-menu button:hover,
.mobile-menu a.active { color: var(--cyan); background: rgba(36,202,227,0.08); opacity: 1; }
.mobile-menu .btn-primary {
  background: var(--cyan); color: #070519; border: none;
  box-shadow: 0 0 20px rgba(36,202,227,0.3);
}
.mobile-menu .btn-primary:hover { opacity: .9; }
body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-user { display: none; }
  .hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600; font-size: 14px;
  cursor: pointer; border: 1px solid transparent; transition: all 0.2s ease;
  background: transparent; color: var(--text); min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cyan); color: #070519;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(36,202,227,0.35);
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 0 32px rgba(36,202,227,0.5); }
.btn-outline { border-color: var(--cyan); color: var(--cyan); }
.btn-outline:hover { background: var(--cyan-dim); opacity: 1; }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--cyan); opacity: 1; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; min-height: 36px; }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #20b858; opacity: 1; transform: translateY(-1px); }
.btn-danger { border-color: #FF3366; color: #FF3366; }
.btn-danger:hover { background: rgba(255,51,102,0.12); opacity: 1; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
  backdrop-filter: blur(10px);
}
.card:hover {
  border-color: rgba(36,202,227,0.4);
  box-shadow: 0 0 24px rgba(36,202,227,0.12);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: clamp(60vh, 78vh, 90vh);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: clamp(60px, 10vw, 100px) clamp(16px, 5vw, 40px);
  overflow: hidden;
  background: linear-gradient(170deg, #080621 0%, #07051a 45%, #0b0928 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 15% 70%, rgba(36,202,227,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 65% 45% at 82% 30%, rgba(110,50,220,0.05) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 55% 90%, rgba(10,190,150,0.04) 0%, transparent 65%),
    repeating-linear-gradient(0deg, transparent, transparent 72px, rgba(36,202,227,0.022) 72px, rgba(36,202,227,0.022) 73px),
    repeating-linear-gradient(90deg, transparent, transparent 72px, rgba(36,202,227,0.018) 72px, rgba(36,202,227,0.018) 73px);
  z-index: 1;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(7,5,25,0.85) 100%);
}
#particles { position: absolute; inset: 0; z-index: 2; }
.hero-inner { position: relative; z-index: 3; max-width: 900px; width: 100%; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 7vw, 72px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--cyan); }
.hero p.lead {
  font-size: clamp(15px, 2.5vw, 19px); color: var(--text-dim);
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SMART SEARCH ── */
.search-bar-wrap { position: relative; max-width: 680px; margin: 0 auto 32px; }
.search-bar {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--cyan); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 24px rgba(36,202,227,0.18);
}
.search-bar input {
  flex: 1; padding: 16px 20px; background: none; border: none;
  color: var(--text); font-size: clamp(14px, 2.5vw, 16px);
  font-family: 'Inter', sans-serif;
}
.search-bar input:focus { outline: none; }
.search-bar input::placeholder { color: var(--text-dim); }
.search-bar button {
  padding: 14px 22px; background: var(--cyan); border: none;
  color: #070519; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: opacity .2s; white-space: nowrap;
}
.search-bar button:hover { opacity: .88; }
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px;
  z-index: 50; overflow: hidden; display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.search-suggestions.open { display: block; }
.suggestion-item {
  padding: 11px 18px; cursor: pointer; color: var(--text-dim); font-size: 14px;
  display: flex; align-items: center; gap: 10px; transition: background .15s;
}
.suggestion-item:hover, .suggestion-item.focused { background: var(--cyan-dim); color: var(--cyan); }
.suggestion-item::before { content: "🔍"; font-size: 12px; }

/* ── SECTIONS ── */
.section { padding: clamp(48px, 8vw, 80px) clamp(16px, 5vw, 40px); max-width: 1200px; margin: 0 auto; }
.section h2 {
  font-size: clamp(24px, 4vw, 38px); font-weight: 700; text-align: center; margin-bottom: 12px;
  color: var(--text);
}
.section h2 span { color: var(--cyan); }
.section .subtitle { text-align: center; color: var(--text-dim); margin-bottom: 40px; font-size: clamp(14px, 2vw, 16px); }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ── CATEGORY CARD ── */
.cat-card { text-align: center; padding: 28px 16px; }
.cat-card .icon {
  font-size: 32px; margin-bottom: 12px; display: inline-flex;
  width: 60px; height: 60px; border-radius: 14px;
  align-items: center; justify-content: center;
  background: var(--cyan-dim); border: 1px solid var(--border);
}
.cat-card h3 { font-size: 15px; margin-bottom: 6px; color: var(--cyan); }
.cat-card p { font-size: 13px; color: var(--text-dim); }

/* ── FREELANCER CARD ── */
.freelancer-card { display: flex; flex-direction: column; gap: 12px; position: relative; }
.freelancer-card .top { display: flex; gap: 14px; align-items: flex-start; }
.avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #24CAE3, #0b6a7d);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #070519; font-size: 18px;
  border: 2px solid rgba(36,202,227,0.5);
}
.freelancer-card h3 { font-size: clamp(15px, 2.5vw, 17px); line-height: 1.3; }
.freelancer-card .meta { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.freelancer-card .bio { font-size: 13px; color: var(--text-dim); line-height: 1.55; }
.freelancer-card .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 8px;
}

/* PRO / PREMIUM card highlight */
.card.plan-pro {
  border-color: rgba(36,202,227,0.55);
  box-shadow: 0 0 16px rgba(36,202,227,0.18), 0 2px 12px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(36,202,227,0.06) 0%, rgba(12,8,38,0.9) 100%);
}
.card.plan-pro:hover {
  border-color: rgba(36,202,227,0.85);
  box-shadow: 0 0 28px rgba(36,202,227,0.3), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.card.plan-premium {
  border-color: rgba(180,120,255,0.6);
  box-shadow: 0 0 18px rgba(180,120,255,0.2), 0 2px 12px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, rgba(180,120,255,0.07) 0%, rgba(12,8,38,0.9) 100%);
}
.card.plan-premium:hover {
  border-color: rgba(180,120,255,0.9);
  box-shadow: 0 0 32px rgba(180,120,255,0.35), 0 4px 20px rgba(0,0,0,0.5);
  transform: translateY(-3px);
}
.pro-highlight-label {
  font-size: 11px; color: var(--cyan); font-weight: 700;
  letter-spacing: 0.5px; opacity: 0.85;
}
.premium-highlight-label {
  font-size: 11px; color: #b478ff; font-weight: 700;
  letter-spacing: 0.5px; opacity: 0.85;
}

/* Toggle switch */
.toggle-wrap { display: flex; align-items: center; gap: 12px; }
.toggle { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; border-radius: 26px;
  background: rgba(255,255,255,0.12); border: 1px solid var(--border);
  cursor: pointer; transition: background .25s;
}
.toggle-slider:before {
  content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  left: 4px; top: 3px; background: var(--text-dim); transition: transform .25s, background .25s;
}
.toggle input:checked + .toggle-slider { background: var(--cyan); border-color: var(--cyan); }
.toggle input:checked + .toggle-slider:before { transform: translateX(20px); background: #070519; }

/* SAMPLE BADGE */
.badge-sample {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,200,0,0.12); border: 1px solid rgba(255,200,0,0.4);
  color: rgba(255,200,0,0.9); font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 6px; text-transform: uppercase; letter-spacing: 1px;
}

/* ── PLAN BADGES ── */
.badge {
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.8px; display: inline-flex; align-items: center; gap: 4px;
}
.badge-gratuito { background: rgba(139,139,163,0.15); color: var(--text-dim); border: 1px solid rgba(139,139,163,0.3); }
.badge-pro { background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(36,202,227,0.4); box-shadow: 0 0 8px rgba(36,202,227,0.2); }
.badge-premium { background: var(--cyan); color: #070519; border: 1px solid var(--cyan); font-weight: 800; }

/* ── PAYWALL ── */
.paywall-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 10px; border: 1.5px dashed rgba(139,139,163,0.4);
  background: rgba(255,255,255,0.02); color: var(--text-dim); cursor: pointer;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 14px;
  transition: all .2s; min-height: 44px;
}
.paywall-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }
.paywall-icon { font-size: 18px; }
.modal-overlay {
  position: fixed; inset: 0; background: rgba(7,5,25,0.88); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(8px);
}
.modal-box {
  background: var(--bg-3); border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(24px, 5vw, 40px); max-width: 460px; width: 100%;
  box-shadow: 0 0 60px rgba(36,202,227,0.15);
}
.modal-box h2 { font-size: clamp(20px, 4vw, 26px); margin-bottom: 10px; color: var(--text); }
.modal-box p { color: var(--text-dim); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.modal-price { font-size: clamp(28px, 6vw, 40px); font-weight: 800; color: var(--cyan); margin-bottom: 6px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── PLANS ── */
.plan-card { padding: clamp(24px, 4vw, 36px); text-align: center; display: flex; flex-direction: column; }
.plan-card.featured { border: 2px solid var(--cyan); box-shadow: 0 0 28px rgba(36,202,227,0.25); }
.plan-card h3 { font-size: clamp(18px, 3vw, 22px); margin-bottom: 8px; }
.plan-card .price-big {
  font-size: clamp(32px, 6vw, 46px); font-weight: 800; margin: 12px 0; color: var(--cyan);
  font-family: 'Space Grotesk', sans-serif;
}
.plan-card .price-big small { font-size: 14px; color: var(--text-dim); }
.plan-card ul { list-style: none; text-align: left; margin: 20px 0; flex: 1; }
.plan-card ul li { padding: 7px 0; color: var(--text-dim); display: flex; gap: 8px; align-items: center; font-size: 14px; }
.plan-card ul li::before { content: "✓"; color: var(--cyan); font-weight: bold; }

/* ── SOCIAL PROOF BADGE ── */
.social-proof {
  display: flex; justify-content: center; margin-bottom: 22px;
}
.social-proof-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(10, 28, 16, 0.55);
  border: 1px solid rgba(34, 197, 94, 0.32);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.12), inset 0 0 12px rgba(34, 197, 94, 0.05);
  backdrop-filter: blur(10px);
}
.sp-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e, 0 0 18px rgba(34, 197, 94, 0.55);
  animation: sp-pulse 1.9s ease-in-out infinite;
}
@keyframes sp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #22c55e, 0 0 18px rgba(34,197,94,0.55); }
  50%       { transform: scale(1.45); opacity: 0.65; box-shadow: 0 0 4px #22c55e, 0 0 8px rgba(34,197,94,0.3); }
}
.sp-text {
  font-size: 13px; font-weight: 600; color: #e2fce8;
  letter-spacing: 0.01em; white-space: nowrap;
}
.sp-sub {
  font-size: 11px; color: var(--text-dim); margin-top: 2px; text-align: center;
}

/* ── FORMS ── */
.form-wrap { max-width: 480px; margin: clamp(32px, 6vw, 60px) auto; padding: 0 clamp(12px, 4vw, 24px); }
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: clamp(24px, 5vw, 36px); backdrop-filter: blur(12px);
}
.form-card h1 { font-size: clamp(22px, 4vw, 28px); text-align: center; margin-bottom: 8px; color: var(--text); }
.form-card p.sub { text-align: center; color: var(--text-dim); margin-bottom: 24px; font-size: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.input, .select, textarea.input {
  width: 100%; padding: 13px 14px; background: rgba(7,5,25,0.6);
  border: 1px solid var(--border); border-radius: 10px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px; transition: all 0.2s;
  min-height: 44px;
}
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(36,202,227,0.15);
}
textarea.input { resize: vertical; min-height: 90px; }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2324CAE3'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.toggle-switch { display: flex; background: rgba(7,5,25,0.6); border: 1px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.toggle-switch button {
  flex: 1; padding: 11px; background: transparent; border: none;
  color: var(--text-dim); font-family: 'Space Grotesk', sans-serif; font-size: 13px;
  font-weight: 600; cursor: pointer; border-radius: 8px; transition: all 0.2s; min-height: 44px;
}
.toggle-switch button.active { background: var(--cyan); color: #070519; }

/* ── NOTIFICATIONS ── */
.notif-wrap { position: relative; }
.notif-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: #FF3366; color: #fff; font-size: 10px; font-weight: 700;
  font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2); line-height: 1;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer; transition: transform 0.2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* ── FOOTER ── */
.footer {
  padding: clamp(32px, 6vw, 48px) clamp(16px, 5vw, 40px) 24px;
  border-top: 1px solid var(--border); margin-top: 60px; text-align: center;
  color: var(--text-dim); font-size: 13px;
}
.footer .logo-small { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--cyan); margin-bottom: 8px; font-size: 16px; }

/* ── FILTERS ── */
.filters {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px;
  margin-bottom: 28px; padding: 18px; background: var(--card);
  border: 1px solid var(--border); border-radius: 14px;
}

/* ── PROFILE ── */
.profile-header {
  display: flex; gap: 20px; align-items: flex-start; padding: clamp(20px, 4vw, 32px);
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.profile-header .avatar-big { width: 88px; height: 88px; font-size: 30px; flex-shrink: 0; }
.profile-header h1 { font-size: clamp(22px, 4vw, 30px); margin-bottom: 4px; }

/* ── DASHBOARD ── */
.dash-grid { display: grid; grid-template-columns: 220px 1fr; gap: 20px; padding: clamp(16px, 3vw, 28px); max-width: 1300px; margin: 0 auto; }
@media (max-width: 780px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-side { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; height: fit-content; }
.dash-side a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--text-dim); margin-bottom: 3px; font-size: 14px; transition: .15s; }
.dash-side a:hover, .dash-side a.active { background: var(--cyan-dim); color: var(--cyan); opacity: 1; }
.dash-main { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: clamp(18px, 3vw, 28px); min-height: 55vh; }
.dash-main h1 { margin-bottom: 22px; font-size: clamp(20px, 3vw, 26px); }

/* ── ALERTS ── */
.alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-size: 13px; }
.alert-error { background: rgba(255,60,100,0.1); border: 1px solid rgba(255,60,100,0.4); color: #ff6b80; }
.alert-success { background: rgba(36,202,227,0.1); border: 1px solid rgba(36,202,227,0.4); color: var(--cyan); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-bottom: 22px; }
.stat-box { background: rgba(7,5,25,0.7); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.stat-box .num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(22px, 4vw, 28px); color: var(--cyan); font-weight: 700; }
.stat-box .lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

.tag {
  display: inline-block; padding: 3px 10px; border-radius: 14px; font-size: 11px;
  background: var(--cyan-dim); color: var(--cyan); border: 1px solid rgba(36,202,227,0.3); margin-right: 4px;
}

/* ── DIRECT MESSAGES ── */
.msg-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 16px; min-height: 540px; }
@media (max-width: 760px) { .msg-wrap { grid-template-columns: 1fr; } }
.msg-side { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 10px; max-height: 580px; overflow-y: auto; }
.conv-item { display: flex; gap: 10px; padding: 10px; border-radius: 10px; cursor: pointer; transition: background .15s; align-items: center; }
.conv-item:hover, .conv-item.active { background: var(--cyan-dim); }
.conv-item .avatar { width: 40px; height: 40px; font-size: 13px; }
.msg-main { background: var(--card); border: 1px solid var(--border); border-radius: 14px; display: flex; flex-direction: column; min-height: 540px; }
.msg-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.msg-list { flex: 1; padding: 16px; overflow-y: auto; max-height: 440px; display: flex; flex-direction: column; gap: 10px; }
.bubble { max-width: 72%; padding: 10px 14px; border-radius: 14px; line-height: 1.45; font-size: 14px; word-wrap: break-word; }
.bubble.me { background: var(--cyan); color: #070519; align-self: flex-end; border-bottom-right-radius: 4px; font-weight: 500; }
.bubble.them { background: rgba(255,255,255,0.06); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid var(--border); }
.bubble .time { display: block; font-size: 10px; opacity: 0.7; margin-top: 4px; }
.msg-form { display: flex; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--border); }
.msg-form input { flex: 1; }

/* ── ADMIN TABLE ── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th, .admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table th { color: var(--cyan); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; background: rgba(36,202,227,0.04); }
.admin-table tr:hover { background: rgba(255,255,255,0.02); }
.table-wrap { overflow-x: auto; }

/* ── PORTFOLIO ── */
.portfolio-item { transition: transform .2s; }
.portfolio-item:hover { transform: scale(1.02); }

.stars { display: inline-flex; gap: 1px; }

.hidden { display: none !important; }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 480px) {
  .section { padding: 36px 14px; }
  .card { padding: 16px; }
  .btn { font-size: 13px; padding: 11px 18px; }
  .profile-header { padding: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .modal-actions .btn { font-size: 13px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 28px; }
  .plan-card .price-big { font-size: 28px; }
}

/* ── PASSWORD TOGGLE ── */
.pwd-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.pwd-wrap .input {
  flex: 1;
  padding-right: 46px;
}
.pwd-eye {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-dim);
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pwd-eye:hover { color: var(--cyan); }
.pwd-eye svg { width: 20px; height: 20px; display: block; }
