/* ===== BASE ===== */
body, h1, h2, h3, h4, h5, h6, p, a, span, div, button, input, select, textarea {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ===== SKELETON LOADER ===== */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0; 
} 
   
.skeleton-avatar { 
  width: 90px;    
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 400px 100%;
  animation: shimmer 1.2s infinite linear;
} 

.skeleton-line {
  width: 80%;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ececec 25%, #f5f5f5 50%, #ececec 75%);
  background-size: 400px 100%;
  animation: shimmer 1.2s infinite linear;
}

.skeleton-line.short {
  width: 55%;
  height: 10px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #3b065e !important;
}

.nav-link {
  color: #808080 !important;
}

header {
  border-bottom: 1px #dedede solid;
}
 
/* ===== HERO ===== */
.isuit-hero-section {
  background: linear-gradient(135deg, #2d0a4e 0%, #3b065e 40%, #6b21a8 75%, #7c3aed 100%);
  padding: 120px 0 80px;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
}  

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.hero-title strong {
  color: #7c3aed;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 35px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-hero-primary {
  background: #7c3aed;
  color: #fff;
  border: 2px solid #7c3aed;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-hero-primary:hover {
  background: #6b21a8;
  border-color: #6b21a8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.hero-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 28px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #3b065e;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* ===== SECTION TITLES ===== */
.section-title {
  color: #3b065e;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title strong {
  color: #7c3aed;
}

.section-subtitle {
  color: #888;
  font-size: 15px;
  margin: 0;
}

/* ===== PROFILE CARDS ===== */
.profile-card-link {
  text-decoration: none;
  color: inherit;
}

.profile-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 12px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(59,6,94,0.15);
}

.profile-img-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.profile-img {
  width: 90px;
  height: 90px; 
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #7c3aed;
  box-shadow: 0 4px 12px rgba(124,58,237,0.2);
}

.profile-card-body {
  padding: 0 4px;
}

.profile-name {
  font-size: 13px;
  font-weight: 600;
  color: #3b065e;
  margin-bottom: 5px;
  line-height: 1.3;
}

.profile-specialty {
  display: inline-block;
  background: #f0e8fa;
  color: #6a1fa0;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== PROFILE CARDS – SEARCH VARIANT ===== */
.profile-card--search {
  padding: 0 0 16px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.profile-card--search:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(59,6,94,0.18);
}

/* Franja superior con gradiente */
.profile-card__top {
  width: 100%;
  height: 72px;
  background: linear-gradient(135deg, #2d0a4e 0%, #3b065e 40%, #6b21a8 75%, #7c3aed 100%);
  flex-shrink: 0;
}

/* Foto superpuesta a la franja */
.profile-card--search .profile-img-wrapper {
  margin-top: -56px;
  margin-bottom: 10px;
  z-index: 1;
}

.profile-card--search .profile-img {
  width: 112px;
  height: 112px;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(124,58,237,0.2);
}

.profile-card--search .profile-name {
  font-size: 13px;
  padding: 0 10px;
}

.profile-card--search .profile-specialty {
  margin-top: 4px;
  font-size: 10.5px;
}

/* Badge de modalidad de atención */
.profile-care-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 20px;
  margin-top: 6px;
  letter-spacing: 0.2px;
}

.badge--online {
  background: #e0f7fa;
  color: #0097a7;
}

.badge--presencial {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge--ambas {
  background: #f3e5f5;
  color: #7b1fa2;
}

/* Botón "Ver perfil" que aparece en hover */
.profile-card__cta {
  font-size: 12px;
  font-weight: 600;
  color: #6a1fa0;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-card--search:hover .profile-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
  background: #f0ebf8;
}

.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card--featured {
  background: #3b065e;
  color: #fff;
}

.step-card--featured h4,
.step-card--featured p {
  color: #fff !important;
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(124,58,237,0.35);
}

.step-icon {
  font-size: 2.4rem;
  color: #7c3aed;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-card h4 {
  font-weight: 700;
  color: #3b065e;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: #fff;
}

.benefits-grid {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.benefit-panel {
  padding: 40px 36px;
  height: 100%;
}

.benefit-panel--light {
  background: #fff;
}

.benefit-panel--dark {
  background: #3b065e;
}

.benefit-panel-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
}

.benefit-panel--light .benefit-panel-title {
  color: #3b065e;
  border-color: #f0e8fa;
}

.benefit-panel--dark .benefit-panel-title {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f0e8fa;
  color: #6a1fa0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-icon--dark {
  background: rgba(255,255,255,0.12);
  color: #7c3aed;
}

.benefit-item h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #3b065e;
}

.benefit-item--dark h5 {
  color: #fff;
}

.benefit-item p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

.benefit-item--dark p {
  color: rgba(255,255,255,0.7);
}

/* ===== CTA FINAL ===== */
.final-cta-section {
  background: linear-gradient(135deg, #2d0a4e 0%, #3b065e 50%, #6b21a8 100%);
  color: #fff;
}

.final-cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.final-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .isuit-hero-section {
    padding: 90px 0 60px;
  }
  .benefit-panel {
    padding: 28px 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .btn-hero-outline {
    color: #3b065e;
    border-color: #3b065e;
  }
}

/* ===== SEARCH PAGE HERO ===== */
.search-hero-section {
  background: linear-gradient(135deg, #2d0a4e 0%, #3b065e 40%, #6b21a8 75%, #7c3aed 100%);
  padding: 60px 0 80px;
  color: #fff;
}

.search-filter-panel {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  max-width: 860px;
  margin: 0 auto;
}

.search-filter-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6a1fa0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.search-filter-label i {
  margin-right: 4px;
}

.search-select {
  border: 1.5px solid #e8e0f0;
  border-radius: 10px;
  font-size: 14px;
  color: #3b065e;
  padding: 10px 14px;
  transition: border-color 0.2s;
}

.search-select:focus {
  border-color: #6a1fa0;
  box-shadow: 0 0 0 3px rgba(106,31,160,0.12);
  outline: none;
}

@media (max-width: 768px) {
  .search-hero-section {
    padding: 40px 0 70px;
  }
  .search-filter-panel {
    padding: 20px 16px;
    border-radius: 16px;
  }
}

/* ===== LEGACY - kept for compatibility ===== */
.isuit-gallery {
  /* unchanged */
}
.isuit-hero {
  margin-top: 14vh !important;
}

form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease;
}
form input[type="text"]:focus,
form input[type="tel"]:focus,
form textarea:focus {
  outline: none;
  border-color: #4a90e2;
}
form select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
form select:focus {
  outline: none;
  border-color: #4a90e2;
}
form textarea {
  height: 100px;
  resize: none;
}
.img-circle {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
.gallery-container {
  overflow-x: auto;
  white-space: nowrap;
}
.gallery-item {
  display: inline-block;
  margin: 0 15px;
}

/* Botón flotante para abrir el chat */
#chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #3b065e;
  color: white;
  border: none;
  padding: 16px 22px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

/* Contenedor del chatbot */
#chatbot-container {
  position: fixed;
  bottom: 102px;
  right: 20px;
  width: 380px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  display: none;
}

#chat-header {
  background: #3b065e;
  color: white;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#close-chat {
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

#chat-body {
  height: 330px;
  overflow-y: auto;
  padding: 10px;
}

.message-container {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.user-message-header {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
  text-align: left;
}

.bot-message-header {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
  text-align: right;
}

.message {
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
  word-wrap: break-word;
  font-size: 14px;
  position: relative;
}

.timestamp {
  font-size: 10px;
  color: gray;
  margin-top: 3px;
  text-align: right;
}

.user-message {
  background: #f1f1f1;
  align-self: flex-start;
}

.bot-message {
  background: #3b065e;
  color: white;
  align-self: flex-end;
}

#chat-input {
  display: flex;
  border-top: 1px solid #ccc;
}

#user-input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  min-height: 100px;
  resize: none;
}

#send-button {
  background: #3b065e;
  color: white;
  border: none;
  padding: 34px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  #chatbot-container {
    width: 90%;
  }

  #chat-body {
    height: 367px;
  }
}

.btn-registrate {
  margin: 15px auto;
}

#isuit-hero-p {
  margin-top: 0px;
  margin-left: 1vh;
  margin-right: 1vh;
}

/* Efecto de pulsación en móvil */
@media only screen and (max-width: 768px) {
  #chat-toggle {
    animation: pulse 1.5s infinite;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Detener la animación cuando tiene la clase active */
#chat-toggle.active {
  animation: none;
}

/* Detener la animación cuando el chatbot está activo (opcional) */
#chat-toggle.active {
animation: none;
}

/* ===== CÓMO FUNCIONA — DUAL PANELS ===== */
.hiw-panel {
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hiw-panel--pro {
  background: linear-gradient(145deg, #2d0a4e 0%, #3b065e 100%);
  color: #fff;
}

.hiw-panel--user {
  background: linear-gradient(145deg, #4a0772 0%, #7c3aed 100%);
  color: #fff;
}

.hiw-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hiw-panel-header i {
  font-size: 1.4rem;
  opacity: 0.9;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hiw-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.hiw-step-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}

.hiw-step-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.45;
}

.hiw-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.hiw-cta:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hiw-cta--pro {
  background: #fff;
  color: #3b065e;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hiw-cta--pro:hover {
  color: #3b065e;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

.hiw-cta--user {
  background: #fff;
  color: #4a0772;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hiw-cta--user:hover {
  color: #4a0772;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
}

@media (max-width: 767px) {
  .hiw-panel {
    margin-bottom: 20px;
    padding: 24px 20px;
  }
}

/* ══════════════════════════════════════ 
   HERO V2 — 2-column layout
══════════════════════════════════════ */
.isuit-hero-v2 { padding: 100px 0 80px; }

/* Hero App Preview */
.hero-app-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin-left: auto;
}

.hap-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  animation: hap-float 6s ease-in-out infinite;
}
.hap-card:nth-child(2) { animation-delay: 2s; }
.hap-card:nth-child(3) { animation-delay: 4s; }

@keyframes hap-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hap-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hap-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.hap-avatar--purple { background: linear-gradient(135deg, #6b21a8, #7c3aed); }
.hap-avatar--green  { background: linear-gradient(135deg, #059669, #10b981); }

.hap-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.2; }
.hap-role { font-size: 11px; color: rgba(255,255,255,0.65); }

.hap-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
  line-height: 1.5;
}

.hap-reactions {
  display: flex;
  gap: 14px;
}
.hap-reaction {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.hap-reaction:first-child { color: #f87171; }

/* Profile mini card */
.hap-card--profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}
.hap-tag {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
}

/* Job mini card */
.hap-card--job {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hap-job-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  flex-shrink: 0;
}
.hap-tag--job {
  background: rgba(124,58,237,0.4);
  border-color: rgba(124,58,237,0.6);
  font-size: 10px;
}

/* ══════════════════════════════════════
   SECTION COMMON UTILS
══════════════════════════════════════ */
.section-label {
  display: inline-block;
  background: #f0ebf8;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.section-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-section-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #7c3aed;
  color: #7c3aed;
  background: transparent;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.btn-section-outline:hover {
  background: #7c3aed;
  color: #fff;
}

/* ══════════════════════════════════════
   WHAT YOU CAN DO SECTION
══════════════════════════════════════ */
.what-section { background: #fff; }

.what-card {
  background: #faf9ff;
  border: 1.5px solid #ede9f8;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.what-card:hover {
  box-shadow: 0 8px 30px rgba(124,58,237,0.1);
  transform: translateY(-3px);
}

.what-card--featured {
  background: linear-gradient(145deg, #2d0a4e 0%, #3b065e 50%, #6b21a8 100%);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.what-card--featured::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  top: -60px; right: -60px;
}

.what-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

.what-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.what-card-icon--purple { background: #f0ebf8; color: #7c3aed; }
.what-card-icon--white  { background: rgba(255,255,255,.15); color: #fff; }
.what-card-icon--light  { background: #f0f9ff; color: #2563eb; }

.what-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #2d0a4e;
  margin-bottom: 16px;
}
.what-card--featured .what-card-title { color: #fff; }

.what-card-list {
  list-style: none;
  padding: 0; margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.what-card-list li {
  font-size: 13.5px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.4;
}
.what-card-list li i { color: #7c3aed; margin-top: 2px; flex-shrink: 0; }
.what-card-list--light li { color: rgba(255,255,255,.82); }
.what-card-list--light li i { color: rgba(255,255,255,.6); }

.what-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #7c3aed;
  text-decoration: none;
  transition: gap .2s;
}
.what-card-cta:hover { gap: 12px; color: #6b21a8; }
.what-card-cta--white { color: rgba(255,255,255,.9); }
.what-card-cta--white:hover { color: #fff; }

/* ══════════════════════════════════════
   FEED SHOWCASE SECTION
══════════════════════════════════════ */
.feed-showcase-section { background: #f0ebf8; }

.feed-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 0;
}
.feed-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ffi-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #7c3aed;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124,58,237,0.1);
}
.feed-feature-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}
.feed-feature-item span {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.4;
}

.btn-feed-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn-feed-cta:hover {
  background: #6b21a8;
  transform: translateY(-2px);
}

/* Feed mockup */
.feed-mockup {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(59,6,94,0.12);
  overflow: hidden;
}

.fmock-bar {
  background: linear-gradient(135deg, #2d0a4e, #3b065e);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.fmock-bar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
.fmock-bar span { margin-left: 4px; }

.fmock-post {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}

.fmock-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fmock-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.fmock-avatar--a { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.fmock-avatar--b { background: linear-gradient(135deg, #059669, #10b981); }

.fmock-name { font-size: 13px; font-weight: 700; color: #111827; }
.fmock-meta { font-size: 11px; color: #9ca3af; }
.fmock-follow {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #7c3aed;
  cursor: pointer;
  white-space: nowrap;
}

.fmock-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.55;
  margin: 0 0 10px;
}

.fmock-actions {
  display: flex;
  gap: 16px;
}
.fmock-action {
  font-size: 12px;
  color: #9ca3af;
  display: flex; align-items: center; gap: 5px;
  cursor: pointer;
  transition: color .15s;
}
.fmock-action:hover { color: #7c3aed; }
.fmock-action--liked { color: #ef4444; }
.fmock-action--liked:hover { color: #dc2626; }

.fmock-job {
  margin: 0 20px 16px;
  background: #f8f5ff;
  border: 1.5px solid #ede9f8;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fmock-job-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #7c3aed;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.fmock-job-title { font-size: 13px; font-weight: 700; color: #111827; }
.fmock-job-meta { font-size: 11px; color: #6b7280; margin-top: 2px; }
.fmock-job-btn {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  color: #7c3aed;
  background: #ede9f8;
  padding: 5px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .15s;
}
.fmock-job-btn:hover { background: #ddd6fe; color: #6b21a8; }

/* ══════════════════════════════════════
   USER TYPES SECTION
══════════════════════════════════════ */
.user-types-section { background: #fff; }

.ut-card {
  background: #faf9ff;
  border: 1.5px solid #ede9f8;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .2s, transform .2s;
}
.ut-card:hover {
  box-shadow: 0 8px 30px rgba(124,58,237,0.1);
  transform: translateY(-3px);
}

.ut-card-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.ut-card-icon--purple { background: #f0ebf8; color: #7c3aed; }
.ut-card-icon--blue   { background: #dbeafe; color: #2563eb; }
.ut-card-icon--green  { background: #d1fae5; color: #059669; }

.ut-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.ut-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.ut-card-btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  width: 100%;
  text-align: center;
}
.ut-card-btn--primary {
  background: #7c3aed;
  color: #fff !important;
}
.ut-card-btn--primary:hover { background: #6b21a8; }
.ut-card-btn--outline {
  border: 2px solid #7c3aed;
  color: #7c3aed !important;
  background: transparent;
}
.ut-card-btn--outline:hover { background: #7c3aed; color: #fff !important; }

/* ══════════════════════════════════════
   BENEFITS V2
══════════════════════════════════════ */
.benefits-v2 { background: #f0ebf8; }

.bv2-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bv2-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: #fff;
  color: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124,58,237,0.1);
}
.bv2-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 5px;
}
.bv2-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════
   PROFILES SECTION
══════════════════════════════════════ */
.profiles-section { background: #fff; }

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .isuit-hero-v2 { padding: 80px 0 60px; }
}
@media (max-width: 768px) {
  .what-card { margin-bottom: 0; }
  .feed-showcase-section .col-lg-7 { margin-top: 32px; }
}
@media (max-width: 576px) {
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns a { width: 100%; justify-content: center; }
  .ut-card { padding: 28px 20px; }
  .what-card { padding: 24px 20px; }
}