/* ═══════════════════════════════
   RESET & VARIABLES
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --bg: #060912;
  --bg2: #0b1020;
  --bg3: #101828;
  --text: #e8eaf6;
  --muted: rgba(232,234,246,0.45);
  --dim: rgba(232,234,246,0.22);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; width: 100%;
  padding: 1rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(6,9,18,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); z-index: 200;
  transition: transform 0.3s ease;
}
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.45rem; color: #fff; letter-spacing: -0.5px; }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.87rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--blue-dark) !important; color: #fff !important; padding: 0.45rem 1.2rem; border-radius: 8px; font-weight: 500 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--blue) !important; }
.lang-switcher { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border: 1px solid var(--border2); border-radius: 8px; padding: 3px; }
.lang-btn { display: flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 6px; font-size: 0.78rem; font-weight: 500; color: var(--muted); transition: all 0.2s; cursor: pointer; }
.lang-btn img { border-radius: 2px; width: 18px; }
.lang-btn.active { background: var(--blue-dark); color: #fff; }

/* ═══════════════════════════════
   HERO — layout 2 columnas
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  padding: 7rem 5rem 4rem;
  gap: 3rem;
  max-width: 1400px; margin: 0 auto;
}
.hero-inner { flex: 0 0 420px; z-index: 2; }

/* ═══════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero { padding: 7rem 3rem 4rem; gap: 2rem; }
  .hero-inner { flex: 0 0 360px; }
  .discord-window { width: 560px; }
}

@media (max-width: 900px) {
  /* NAV */
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  /* HERO — stack vertical */
  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 3rem;
    gap: 2.5rem;
    min-height: auto;
  }
  .hero-inner { flex: none; max-width: 100%; width: 100%; }
  .hero-btns { justify-content: center; }

  /* MOCKUP — escalar para móvil */
  .hero-visual { width: 100%; justify-content: center; }
  .discord-window {
    width: 100%;
    max-width: 500px;
    height: 420px;
    animation: none;
    transform: none !important;
  }

  /* Ocultar panel de miembros en móvil */
  .dc-members { display: none; }

  /* Sidebar más estrecha */
  .dc-sidebar { width: 140px; }
  .dc-cat-name { font-size: 0.42rem; }

  /* STATS */
  .stats-bar { padding: 2rem 1.5rem; gap: 1rem; }
  .stat-item { padding: 0 1rem; }
  .stat-num { font-size: 1.5rem; }

  /* SERVICES */
  .services { padding: 4rem 1.5rem; }
  .cards { grid-template-columns: 1fr; }

  /* TEAM */
  .team-section { padding: 4rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* PROCESS */
  .process { padding: 4rem 1.5rem; }

  /* CTA */
  .cta-section { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; }
  .form-footer .btn-primary,
  .form-footer .btn-secondary { width: 100%; text-align: center; }

  /* FOOTER */
  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero { padding: 6rem 1.2rem 3rem; }

  /* Mockup más pequeño */
  .discord-window { height: 360px; }

  /* Ocultar sidebar en pantallas muy pequeñas */
  .dc-sidebar { display: none; }

  /* Chat ocupa todo */
  .dc-chat { flex: 1; }

  /* Reducir tamaño mensajes */
  .dc-mtext { font-size: 0.68rem; }
  .dc-embed-title { font-size: 0.7rem; }
  .dc-embed-list li { font-size: 0.62rem; }

  /* Team 1 columna */
  .team-grid { grid-template-columns: 1fr; }

  /* Stat sep oculto */
  .stat-sep { display: none; }
  .stats-bar { flex-wrap: wrap; gap: 1.5rem; }
  .stat-item { padding: 0; }

  /* Lang switcher más pequeño */
  .lang-btn { padding: 4px 8px; font-size: 0.72rem; }
}

@media (max-width: 400px) {
  .discord-window { height: 320px; }
  .dc-servers { width: 42px; }
  .dc-srv { width: 30px; height: 30px; font-size: 0.6rem; }
  .dc-top-icon { width: 30px; height: 30px; }
  .dc-top-icon svg { width: 16px; height: 16px; }
}

.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); color: #93c5fd; font-size: 0.75rem; padding: 0.35rem 1rem; border-radius: 999px; margin-bottom: 1.8rem; }
.badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -2px; color: #fff; margin-bottom: 1.4rem; }
.accent { color: var(--blue); }
.hero-sub { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 2.2rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-primary { background: var(--blue-dark); color: #fff; padding: 0.78rem 1.8rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; display: inline-block; transition: background 0.2s, transform 0.15s; font-family: 'DM Sans', sans-serif; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--muted); padding: 0.78rem 1.8rem; border-radius: 10px; font-size: 0.9rem; border: 1px solid var(--border); display: inline-block; transition: all 0.2s; font-family: 'DM Sans', sans-serif; cursor: pointer; }
.btn-secondary:hover { border-color: var(--border2); color: #fff; }

/* ═══════════════════════════════
   HERO VISUAL — mockup column
═══════════════════════════════ */
.hero-visual {
  flex: 1;
  display: flex; justify-content: flex-end; align-items: center;
  position: relative;
  /* Empuja el mockup hacia la derecha sin tapar el texto */
  min-width: 0;
}
.mockup-glow { position: absolute; inset: -80px; background: radial-gradient(ellipse at center, rgba(59,130,246,0.13) 0%, transparent 70%); pointer-events: none; z-index: 0; }

/* ═══════════════════════════════
   DISCORD WINDOW
═══════════════════════════════ */
.discord-window {
  width: 660px; height: 510px;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(59,130,246,0.07);
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0) rotate(-0.4deg)} 50%{transform:translateY(-12px) rotate(0.4deg)} }

/* Titlebar */
.dc-titlebar { background: #111214; padding: 9px 14px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(0,0,0,0.5); flex-shrink: 0; }
.tb { width: 12px; height: 12px; border-radius: 50%; }
.tb-r{background:#ff5f57}.tb-y{background:#febc2e}.tb-g{background:#28c840}
.dc-titlebar-title { margin-left: 10px; font-size: 0.64rem; color: rgba(255,255,255,0.22); font-weight: 500; }

.dc-body { flex: 1; display: flex; overflow: hidden; }

/* Server list */
.dc-servers { width: 52px; background: #1e1f22; display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 7px; flex-shrink: 0; border-right: 1px solid rgba(0,0,0,0.3); }
.dc-top-icon { width: 38px; height: 38px; border-radius: 50%; background: #313338; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; position: relative; flex-shrink: 0; }
.dc-top-icon:hover { background: #5865f2; border-radius: 30%; }
.dc-top-icon svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.7); }
.dc-top-icon .notif-badge { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; background: #ed4245; border-radius: 50%; border: 2px solid #1e1f22; font-size: 0.45rem; color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dc-srv-sep { width: 28px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px; }
.dc-srv { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.65rem; color: #fff; cursor: pointer; transition: border-radius 0.25s; position: relative; flex-shrink: 0; overflow: hidden; }
.dc-srv:hover { border-radius: 30%; }
.dc-srv.on { border-radius: 30%; }
.dc-srv.on::before { content:''; position:absolute; left:-7px; top:50%; transform:translateY(-50%); width:4px; height:22px; background:#fff; border-radius:0 4px 4px 0; }
.dc-srv-add { width:38px; height:38px; border-radius:50%; border:2px solid rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:center; color:#23a55a; font-size:1.2rem; cursor:pointer; transition:all 0.2s; }
.dc-srv-add:hover { border-color:#23a55a; border-radius:30%; }

/* Sidebar */
.dc-sidebar { width: 172px; background: #2b2d31; display: flex; flex-direction: column; flex-shrink: 0; overflow: hidden; }
.dc-server-hdr { padding: 0 12px; height: 44px; border-bottom: 1px solid rgba(0,0,0,0.35); font-size: 0.82rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: space-between; cursor: pointer; flex-shrink: 0; }
.dc-hdr-chevron { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.dc-chs { flex: 1; padding: 4px 0; display: flex; flex-direction: column; overflow-y: auto; overflow-x: hidden; }
.dc-chs::-webkit-scrollbar { width: 3px; }
.dc-chs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }
.dc-cat { display: flex; align-items: center; padding: 12px 6px 2px; cursor: pointer; gap: 3px; }
.dc-cat-arrow { font-size: 0.45rem; color: rgba(255,255,255,0.3); margin-right: 1px; }
.dc-cat-name { font-size: 0.48rem; font-weight: 700; color: rgba(255,255,255,0.28); letter-spacing: 0.2px; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.dc-cat-add { font-size: 0.8rem; color: rgba(255,255,255,0.18); margin-left: auto; flex-shrink: 0; cursor: pointer; }
.dc-cat-add:hover { color: rgba(255,255,255,0.7); }
.dc-ch { display: flex; align-items: center; gap: 3px; padding: 3px 6px 3px 8px; margin: 0 4px; border-radius: 4px; font-size: 0.7rem; color: rgba(255,255,255,0.32); cursor: pointer; transition: all 0.1s; min-height: 26px; }
.dc-ch:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.dc-ch.active { background: rgba(255,255,255,0.1); color: #fff; font-weight: 500; }
.dc-ch-emoji { font-size: 0.75rem; flex-shrink: 0; }
.dc-ch-prefix { color: rgba(255,255,255,0.18); font-size: 0.65rem; flex-shrink: 0; }
.dc-ch.active .dc-ch-prefix, .dc-ch:hover .dc-ch-prefix { color: rgba(255,255,255,0.45); }
.dc-ch-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dc-ch-notif { background: #ed4245; color: #fff; font-size: 0.5rem; padding: 1px 5px; border-radius: 999px; font-weight: 700; margin-left: auto; flex-shrink: 0; }
.dc-ch-lock { margin-left: auto; font-size: 0.55rem; color: rgba(255,255,255,0.12); flex-shrink: 0; }
.dc-online { width: 7px; height: 7px; background: #23a55a; border-radius: 50%; margin-left: auto; flex-shrink: 0; }
.dc-voice { display: flex; align-items: center; gap: 4px; padding: 3px 6px 3px 8px; margin: 0 4px; border-radius: 4px; font-size: 0.7rem; color: rgba(255,255,255,0.32); cursor: pointer; transition: all 0.1s; min-height: 26px; }
.dc-voice:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.dc-voice-label { flex: 1; }
.dc-voice-user { display: flex; align-items: center; gap: 5px; padding: 2px 6px 2px 22px; margin: 0 4px; border-radius: 4px; font-size: 0.65rem; color: rgba(255,255,255,0.38); cursor: pointer; }
.dc-voice-user:hover { background: rgba(255,255,255,0.05); }
.dc-vu-av { width: 16px; height: 16px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dc-vu-av-fb { width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.42rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.dc-vu-name { flex: 1; }
.dc-vu-icon { font-size: 0.55rem; color: rgba(255,255,255,0.2); }

/* Userbar */
.dc-userbar { padding: 0 8px; height: 52px; background: #232428; display: flex; align-items: center; gap: 6px; border-top: 1px solid rgba(0,0,0,0.35); flex-shrink: 0; }
.dc-uav { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; cursor: pointer; }
.dc-uav-fb { width: 30px; height: 30px; border-radius: 50%; background: var(--blue-dark); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.dc-ustatus { position: absolute; bottom: -1px; right: -1px; width: 10px; height: 10px; background: #23a55a; border-radius: 50%; border: 2px solid #232428; }
.dc-uinfo { flex: 1; min-width: 0; }
.dc-uname { font-size: 0.7rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-utag { font-size: 0.58rem; color: rgba(255,255,255,0.3); }
.dc-uicons { display: flex; gap: 4px; }
.dc-uicon { width: 24px; height: 24px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.15s; }
.dc-uicon:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

/* Chat */
.dc-chat { flex: 1; background: #313338; display: flex; flex-direction: column; overflow: hidden; min-width: 0; }
.dc-chat-hdr { height: 44px; padding: 0 12px; border-bottom: 1px solid rgba(0,0,0,0.25); display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.dc-ch-icon { font-size: 0.82rem; flex-shrink: 0; }
.dc-ch-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.1); margin: 0 2px; }
.dc-ch-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.dc-ch-topic { font-size: 0.63rem; color: rgba(255,255,255,0.25); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dc-hdr-right { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.dc-hdr-btn { font-size: 0.8rem; color: rgba(255,255,255,0.28); cursor: pointer; }
.dc-hdr-btn:hover { color: rgba(255,255,255,0.8); }
.dc-member-pill { display: flex; align-items: center; gap: 4px; font-size: 0.63rem; color: rgba(255,255,255,0.28); }
.dc-mpill-dot { width: 7px; height: 7px; background: #23a55a; border-radius: 50%; }

/* Messages */
.dc-msgs { flex: 1; padding: 10px 12px 4px; display: flex; flex-direction: column; gap: 5px; overflow-y: auto; }
.dc-msgs::-webkit-scrollbar { width: 3px; }
.dc-msgs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.07); border-radius: 2px; }
.dc-date { display: flex; align-items: center; gap: 8px; margin: 4px 0; }
.dc-date-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.dc-date-text { font-size: 0.58rem; color: rgba(255,255,255,0.22); font-weight: 600; white-space: nowrap; }
.dc-msg { display: flex; gap: 9px; align-items: flex-start; padding: 2px 4px; border-radius: 4px; }
.dc-msg:hover { background: rgba(0,0,0,0.07); }
.dc-msg-av { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; cursor: pointer; }
.dc-msg-av-fb { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.dc-mb { flex: 1; min-width: 0; }
.dc-mmeta { display: flex; align-items: baseline; gap: 6px; margin-bottom: 2px; flex-wrap: wrap; }
.dc-mname { font-size: 0.74rem; font-weight: 600; cursor: pointer; }
.dc-mname:hover { text-decoration: underline; }
.dc-badge-bot, .dc-badge-app { background: #5865f2; color: #fff; font-size: 0.5rem; padding: 1px 4px; border-radius: 3px; font-weight: 600; letter-spacing: 0.3px; }
.dc-badge-role { font-size: 0.5rem; padding: 1px 5px; border-radius: 3px; font-weight: 600; }
.dc-mtime { font-size: 0.56rem; color: rgba(255,255,255,0.2); }
.dc-mtext { font-size: 0.72rem; color: rgba(255,255,255,0.82); line-height: 1.5; word-break: break-word; }
.dc-mention { color: #93c5fd; background: rgba(88,101,242,0.2); padding: 0 2px; border-radius: 3px; cursor: pointer; }
.dc-mention:hover { background: rgba(88,101,242,0.4); }

/* Embed */
.dc-embed { background: #2b2d31; border-radius: 4px; margin-top: 6px; overflow: hidden; max-width: 340px; border-left: 4px solid var(--blue); }
.dc-embed-body { padding: 10px 12px; }
.dc-embed-title { font-size: 0.76rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.dc-embed-list { list-style: disc; padding-left: 14px; display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.dc-embed-list li { font-size: 0.68rem; color: rgba(255,255,255,0.7); line-height: 1.4; }
.ch-link { color: #00a8fc; cursor: pointer; }
.ch-link:hover { text-decoration: underline; }
.dc-embed-member { display: flex; flex-direction: column; align-items: center; padding: 10px 0 4px; border-top: 1px solid rgba(255,255,255,0.06); }
.dc-embed-member-av { width: 44px; height: 44px; border-radius: 50%; background: #5865f2; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 6px; overflow: hidden; }
.dc-embed-member-name { font-size: 0.76rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.dc-embed-member-tag { font-size: 0.6rem; color: rgba(255,255,255,0.35); }

/* Reactions */
.dc-reactions { display: flex; gap: 3px; margin-top: 4px; flex-wrap: wrap; }
.dc-reaction { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 2px 7px; font-size: 0.62rem; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.15s; }
.dc-reaction:hover { background: rgba(255,255,255,0.09); }
.dc-reaction.me { background: rgba(88,101,242,0.2); border-color: rgba(88,101,242,0.4); color: #93c5fd; }
.dc-re-em { font-size: 0.76rem; }
.dc-re-n { font-size: 0.62rem; font-weight: 600; }

/* System message */
.dc-sys { display: flex; align-items: center; gap: 8px; padding: 1px 4px; }
.dc-sys-ic { font-size: 0.75rem; flex-shrink: 0; }
.dc-sys-txt { font-size: 0.66rem; color: rgba(255,255,255,0.28); line-height: 1.4; }
.dc-sys-txt strong { color: rgba(255,255,255,0.6); font-weight: 600; }
.dc-sys-link { color: #00a8fc; cursor: pointer; }
.dc-sys-link:hover { text-decoration: underline; }

/* Typing */
.dc-typing { display: flex; align-items: center; gap: 6px; padding: 3px 4px 2px; }
.dc-tdots { display: flex; gap: 3px; align-items: center; }
.dc-tdots span { width: 5px; height: 5px; background: rgba(255,255,255,0.35); border-radius: 50%; animation: tbounce 1.3s infinite; }
.dc-tdots span:nth-child(2){animation-delay:0.15s}
.dc-tdots span:nth-child(3){animation-delay:0.3s}
@keyframes tbounce{0%,60%,100%{transform:translateY(0)}30%{transform:translateY(-5px)}}
.dc-typing-txt { font-size: 0.63rem; color: rgba(255,255,255,0.28); }
.dc-typing-txt strong { color: rgba(255,255,255,0.55); font-weight: 600; }

/* Members panel */
.dc-members {
  width: 130px; background: #2b2d31;
  border-left: 1px solid rgba(0,0,0,0.25);
  flex-shrink: 0; overflow: hidden;
}
.dc-members-inner { padding: 8px 8px; display: flex; flex-direction: column; gap: 2px; }
.dc-members-role {
  font-size: 0.5rem; font-weight: 700;
  color: rgba(255,255,255,0.28); text-transform: uppercase;
  letter-spacing: 0.5px; padding: 8px 6px 3px;
}
.dc-member-item {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 6px; border-radius: 4px; cursor: pointer;
  transition: background 0.1s;
}
.dc-member-item:hover { background: rgba(255,255,255,0.06); }
.dc-member-av-img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dc-member-av {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.dc-member-info { flex: 1; min-width: 0; }
.dc-member-name { font-size: 0.64rem; font-weight: 600; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-member-status { display: flex; align-items: center; gap: 3px; font-size: 0.53rem; color: rgba(255,255,255,0.3); }
.dc-status-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* Telegram button */
.btn-telegram { border-color: rgba(0,136,204,0.3) !important; color: #29b6f6 !important; }
.btn-telegram:hover { border-color: #29b6f6 !important; color: #fff !important; background: rgba(41,182,246,0.08) !important; }

/* Input */
.dc-input-wrap { padding: 0 12px 10px; flex-shrink: 0; }
.dc-input { background: #383a40; border-radius: 8px; padding: 0 12px; height: 40px; display: flex; align-items: center; gap: 8px; }
.dc-input-plus { font-size: 1.1rem; color: rgba(255,255,255,0.3); cursor: pointer; }
.dc-input-plus:hover { color: rgba(255,255,255,0.7); }
.dc-input-ph { flex: 1; font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.dc-input-icons { display: flex; gap: 8px; }
.dc-input-ic { font-size: 0.85rem; color: rgba(255,255,255,0.22); cursor: pointer; }
.dc-input-ic:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-bar { display: flex; justify-content: center; align-items: center; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2.5rem 4rem; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 3rem; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.stat-label { font-size: 0.78rem; color: var(--dim); margin-top: 4px; }
.stat-sep { width: 1px; height: 40px; background: var(--border); }

/* ═══════════════════════════════
   SECTION COMMONS
═══════════════════════════════ */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-label { font-size: 0.68rem; letter-spacing: 2.5px; color: var(--blue); text-transform: uppercase; margin-bottom: 0.8rem; font-weight: 600; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #fff; letter-spacing: -1px; margin-bottom: 0.8rem; line-height: 1.1; }
.section-sub { color: var(--muted); font-size: 0.93rem; max-width: 520px; line-height: 1.75; font-weight: 300; }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services { padding: 7rem 4rem; max-width: 1100px; margin: 0 auto; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 2.2rem; transition: border-color 0.3s, transform 0.2s; position: relative; }
.card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-2px); }
.card.featured { border-color: rgba(59,130,246,0.35); background: rgba(59,130,246,0.04); }
.featured-badge { position: absolute; top: 1.4rem; right: 1.4rem; background: rgba(59,130,246,0.15); color: #93c5fd; font-size: 0.68rem; padding: 0.25rem 0.75rem; border-radius: 999px; border: 1px solid rgba(59,130,246,0.25); font-weight: 500; }
.card-plan { font-size: 0.7rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 0.6rem; }
.card-price { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 0.5rem; }
.card-price span { font-size: 0.82rem; color: var(--dim); font-family: 'DM Sans', sans-serif; font-weight: 400; letter-spacing: 0; }
.card-tagline { font-size: 0.87rem; color: var(--muted); font-style: italic; margin-bottom: 1.5rem; }
.card-divider { height: 1px; background: var(--border); margin: 1.2rem 0; }
.card-includes-title { font-size: 0.7rem; font-weight: 600; color: var(--dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.card-features li { font-size: 0.84rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.check { color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
/* Precio variable y nota informativa */
.price-variable {
  font-size: 1.1rem;
  color: #93c5fd;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px dashed rgba(147,197,253,0.4);
  cursor: default;
}
.price-tooltip { font-size: 0.8rem; color: var(--dim); font-weight: 400; margin-left: 2px; }
.card-note {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  color: rgba(147,197,253,0.8);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.btn-card { display: block; text-align: center; padding: 0.78rem; border-radius: 10px; font-size: 0.87rem; font-weight: 500; border: 1px solid var(--border); color: var(--muted); transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.btn-card:hover { border-color: var(--border2); color: #fff; }
.btn-card-featured { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-card-featured:hover { background: var(--blue); border-color: var(--blue); }

/* ═══════════════════════════════
   TEAM
═══════════════════════════════ */
.team-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 7rem 4rem; }
.team-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.5rem; text-align: center; transition: border-color 0.3s, transform 0.2s; }
.team-card:hover { border-color: rgba(59,130,246,0.3); transform: translateY(-2px); }
.team-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; color: #fff; margin: 0 auto 1rem; }
.team-role { font-family: 'Syne', sans-serif; font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.team-desc { font-size: 0.81rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════
   PROCESS
═══════════════════════════════ */
.process { padding: 7rem 4rem; max-width: 1100px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; max-width: 680px; }
.step { display: flex; gap: 2rem; align-items: flex-start; }
.step-num { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: rgba(59,130,246,0.18); line-height: 1; flex-shrink: 0; width: 60px; padding-top: 2px; }
.step-content { flex: 1; padding-bottom: 2rem; }
.step-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.87rem; color: var(--muted); line-height: 1.75; }
.step-line { width: 1px; height: 28px; background: var(--border); margin-left: 29px; }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 7rem 4rem; }
.cta-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 1rem; }
.cta-inner p { color: var(--muted); font-size: 0.93rem; margin-bottom: 2rem; line-height: 1.75; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════
   CONTACT FORM
═══════════════════════════════ */
.cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.contact-form { margin-top: 2.5rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 500; color: rgba(232,234,246,0.6); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(59,130,246,0.5);
  background: rgba(255,255,255,0.06);
}
.form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.3)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: #1e2030; color: #fff; }
.form-group textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.form-footer { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; flex-wrap: wrap; }
.btn-submit { cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(35,165,90,0.12);
  border: 1px solid rgba(35,165,90,0.3);
  border-radius: 8px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; color: rgba(255,255,255,0.22); font-size: 1.1rem; }
.footer-logo span { color: rgba(59,130,246,0.4); }
.footer-tagline { font-size: 0.76rem; color: var(--dim); margin-top: 4px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--dim); font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 0.73rem; color: var(--dim); }

/* ═══════════════════════════════
   FADE IN ANIMATION
═══════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }