  /* ===== LOADING SKELETON ===== */
  .skeleton {
    background: linear-gradient(90deg,#eee,#ddd,#eee);
    height: 20px;
    margin: 10px 0;
    border-radius: 6px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --cyan: #06b6d4;
    --dark: #020617;
    --dark-soft: #0f172a;
    --card: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.16);
    --text: #e2e8f0;
    --muted: #94a3b8;
    --white: #ffffff;
    --success: #22c55e;
    --danger: #ef4444;
    --radius: 24px;
    --shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  }

  body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background:
      radial-gradient(circle at 10% 10%, rgba(99,102,241,.35), transparent 35%),
      radial-gradient(circle at 90% 20%, rgba(6,182,212,.25), transparent 35%),
      radial-gradient(circle at 50% 100%, rgba(139,92,246,.22), transparent 40%),
      linear-gradient(135deg, #020617 0%, #0f172a 45%, #1e1b4b 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
  }

  .container {
    width: 92%;
    max-width: 1120px;
    margin: auto;
  }

  a {
    color: #a5b4fc;
    text-decoration: none;
    font-weight: 700;
  }

  a:hover {
    color: white;
  }

  h1, h2, h3, h4 {
    color: white;
    line-height: 1.2;
  }

  h1 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
  }

  h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-align: center;
    margin-bottom: 18px;
    letter-spacing: -0.8px;
  }

  h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  p {
    color: #cbd5e1;
    font-size: 1.02rem;
    margin-bottom: 16px;
  }

  .center-text {
    max-width: 760px;
    margin: auto;
    text-align: center;
  }

  /* NAVBAR */

  nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  nav .container {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .logo {
    margin-right: auto;
  }

  .logo,
  .logo a {
    color: white !important;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.5px;
  }

  .logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-links a {
    color: #cbd5e1;
    font-size: 0.92rem;
    font-weight: 600;
    transition: 0.25s ease;
  }

  .nav-links a:hover {
    color: white;
  }

  .menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
  }

  /* UNIVERSAL SECTIONS */

  section {
    padding: 64px 0;
  }

  .page-section,
  .content-section {
    padding: 64px 0;
  }

  .page-section > .container,
  .content-section > .container,
  body > section.container,
  .profile-card,
  .data-card,
  .question-card,
  .step-card,
  .mentor-card,
  .question-form {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .page-section > .container,
  .content-section > .container,
  body > section.container {
    padding: clamp(24px, 5vw, 58px);
  }

  .light-bg,
  .blue-bg {
    background: transparent;
  }

  /* HERO */

  .hero {
    padding: 20px 0 20px;
  }

  .hero + section {
    padding-top: 30px !important;
  }

  .hero h1 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14px;
  }

  .hero p {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
    color: #cbd5e1;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
  }

  .chat-section,
  .audio-booking {
    width: 100%;
    max-width: 720px;
    margin: 30px auto 0;
    padding: 24px;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  /* BUTTONS */

  .btn,
  button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    color: white !important;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(99,102,241,0.35);
    transition: 0.25s ease;
  }

  .btn:hover,
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(99,102,241,0.45);
  }

  .btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: none;
  }

  /* FORMS */

  .question-form {
    max-width: 700px;
    margin: 38px auto;
    padding: clamp(24px, 4vw, 40px);
  }

  .question-form input,
  .question-form select,
  .question-form textarea,
  .profile-card input,
  #loginBox input,
  input,
  select,
  textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(15,23,42,0.72);
    color: white;
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 0.98rem;
    margin-bottom: 15px;
    outline: none;
    transition: 0.25s ease;
  }

  textarea {
    min-height: 150px;
    resize: vertical;
  }

  input::placeholder,
  textarea::placeholder {
    color: #94a3b8;
  }

  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--primary);
    background: rgba(15,23,42,0.95);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.22);
  }

  .question-form button,
  .question-form .btn {
    width: 100%;
    margin-top: 8px;
  }

  #formMessage,
  #mentorMessage,
  #contactFormMessage,
  #msg,
  #loginMsg {
    text-align: center;
    font-weight: 800;
    margin-top: 14px;
  }

  /* CARDS / GRIDS */

  .steps,
  .mentor-container,
  .questions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 34px;
  }

  .step-card,
  .question-card,
  .mentor-card,
  .data-card {
    padding: 24px;
    transition: 0.25s ease;
  }

  .step-card:hover,
  .question-card:hover,
  .mentor-card:hover,
  .data-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165,180,252,0.45);
  }

  .mentor-card {
    overflow: hidden;
    padding: 0;
  }

  .mentor-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
  }

  .mentor-info {
    padding: 22px;
  }

  .badge {
    display: inline-block;
    background: rgba(34,197,94,0.16);
    color: #86efac;
    border: 1px solid rgba(34,197,94,0.35);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
  }

  .empty-state {
    text-align: center;
    color: var(--muted);
    margin-top: 26px;
    font-weight: 600;
  }

  /* QUESTIONS / ANSWERS */

  .questions-container {
    max-width: 1120px;
    margin: 40px auto;
  }

  .question-card h3 {
    margin-bottom: 12px;
  }

  .question-card small {
    color: #cbd5e1;
    display: inline-block;
    margin-bottom: 12px;
  }

  .answer {
    margin-top: 16px;
    padding: 18px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(165,180,252,0.2);
    border-left: 4px solid var(--primary);
    border-radius: 18px;
  }

  .reply {
    font-size: 14px;
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
  }

  /* PROFILE */

  .profile-card {
    max-width: 560px;
    margin: 48px auto;
    padding: 34px;
    text-align: center;
  }

  .profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid rgba(255,255,255,0.2);
  }

  .profile-section {
    width: 92%;
    max-width: 850px;
    margin: 40px auto;
  }

  .profile-section h3 {
    margin-bottom: 18px;
  }

  /* AUTH SIMPLE PAGES */

  body > div[style*="max-width:400px"],
  #loginBox {
    width: 92% !important;
    max-width: 430px !important;
    margin: 100px auto !important;
    padding: 34px !important;
    text-align: center !important;
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  /* ADMIN */

  .admin-section {
    width: 92%;
    max-width: 1100px;
    margin: 50px auto;
  }

  .danger-btn {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
  }

  /* USER AREA */

  #userArea {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #userArea .btn,
  #userArea a.btn,
  #userArea button {
    margin: 0;
    padding: 9px 15px;
    font-size: 0.85rem;
  }

  /* FOOTER */

  footer {
    background: rgba(2,6,23,0.9);
    color: #cbd5e1;
    text-align: center;
    padding: 34px 16px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  footer p {
    color: #cbd5e1;
    margin: 0;
  }

  /* MOBILE */



  @media (max-width: 640px) {
    section,
    .page-section,
    .content-section {
      padding: 34px 0;
    }

    .page-section > .container,
    .content-section > .container,
    body > section.container {
      width: 94%;
      padding: 24px 16px;
      border-radius: 24px;
    }

    h1 {
      font-size: 2.15rem;
    }

    h2 {
      font-size: 1.55rem;
    }

    p {
      font-size: 0.98rem;
    }

    .steps,
    .mentor-container,
    .questions-container {
      grid-template-columns: 1fr;
    }
  }

  html {
    scroll-behavior: smooth;
  }

  ::selection {
    background: rgba(99,102,241,0.35);
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .center .btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    width: 100%;
  }

  .center .btn {
    min-width: 220px;
    text-align: center;
  }

  .page-section .container {
    text-align: center;
  }

  .explore-section {
    text-align: center;
  }

  .explore-list {
    list-style: none;        /* remove bullets */
    padding: 0;
    margin-top: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;     /* THIS centers items */
    gap: 12px;
  }

  .explore-list li {
    text-align: center;
  }

  .explore-list a {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 999px;
    color: #cbd5e1;
    font-weight: 700;
    transition: 0.25s ease;
  }

  .explore-list a:hover {
    background: rgba(99,102,241,0.2);
    color: white;
    transform: translateY(-2px);
  }


  .explore-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .container ul {
    list-style: none;          /* remove bullets */
    padding: 0;
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;       /* CENTER items */
    gap: 12px;
  }

  .container ul li {
    text-align: center;
  }

  .container ul li a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #cbd5e1;
    font-weight: 700;
    transition: 0.25s ease;
  }

  .container ul li a:hover {
    background: rgba(99,102,241,0.2);
    color: white;
    transform: translateY(-2px);
  }

  section {
    text-align: center;
  }

  section p {
    max-width: 700px;
    margin: 0 auto;
  }

  .container ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .view-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
    padding-bottom: 70px;
  }

  .main-thread {
    display: grid;
    gap: 24px;
  }

  .thread-card {
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
  }

  .question-badge {
    display: inline-block;
    background: rgba(99,102,241,0.18);
    border: 1px solid rgba(165,180,252,0.28);
    color: #c7d2fe;
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 16px;
  }

  .question-meta {
    color: var(--muted);
    font-weight: 700;
    margin-top: 14px;
  }

  .answers-header {
    text-align: center;
    margin-top: 20px;
  }

  .answer-card {
    margin-bottom: 22px;
  }

  .mentor-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
  }

  .mentor-line span {
    display: block;
    color: var(--muted);
    font-size: 13px;
  }

  .answer-text {
    font-size: 1.05rem;
    color: #e2e8f0;
  }

  .answer-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
  }

  .answer-actions button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .reply-box {
    margin-top: 18px;
  }

  .reply-box textarea {
    min-height: 90px;
  }

  .replies-list {
    margin-top: 16px;
  }

  .reply-item {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px;
    margin-top: 10px;
  }

  .reply-item p {
    margin: 6px 0 0;
  }

  .thread-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 100px;
  }

  .tag-list {
    display: grid;
    gap: 10px;
  }

  .tag-list a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 10px 14px;
    color: #cbd5e1;
  }

  .empty-state-box {
    text-align: center;
  }

  .muted {
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .view-layout {
      grid-template-columns: 1fr;
    }

    .thread-sidebar {
      position: static;
    }

  }

  .profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);

    margin-bottom: 15px;
  }

  .avatar-wrapper {
    position: relative;
    display: inline-block;
  }

  .change-dp-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #6366f1;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* FIX QUESTION CARD TEXT VISIBILITY */
  .question-card,
  .question-attachment {
    margin: 14px 0;
  }

  .question-attachment img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
  }

  .question-attachment a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #2563eb;
    font-weight: 800;
  }

  .question-card h3,
  .question-card h3 a,
  .question-card:hover h3,
  .question-card:hover h3 a {
    color: #0f172a !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .question-card small,
  .question-card:hover small {
    color: #475569 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .question-card a {
    text-decoration: none;
  }

  .question-card:hover {
    transform: translateY(-5px);
  }


  .question-title-link,
  .question-title-link:hover,
  .question-title-link:visited,
  .question-title-link:active {
    color: #0f172a !important;
    text-decoration: none;
  }

  .question-meta {
    color: #475569 !important;
  }

  /* FIX FILTER BUTTON VISIBILITY */
  .filter-btn {
    color: #1e293b !important; /* dark text */
  }

  .filter-btn:hover {
    background: #2563eb !important;
    color: #ffffff !important; /* white text */
  }

  .filter-btn.active {
    background: #2563eb !important;
    color: #ffffff !important;
    border: 2px solid #ffffff;
  }

  /* FIX DISABLED LOOKING BUTTONS */
  .filter-btn[data-category] {
    opacity: 1 !important;
  }


  /* FIX BUTTON VISIBILITY */
  .btn-outline {
    background: white;
    border: 2px solid #4f46e5;
    color: #4f46e5;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
  }

  .btn-outline:hover {
    background: #4f46e5;
    color: white;
  }

  /* SEARCH BUTTON FIX */
  .search-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
  }

  .search-btn:hover {
    background: #4338ca;
  }

  input {
    background: white !important;
    color: black !important;
    border: 1px solid #ccc;
  }


  /* 🔥 FORCE FIX ADMIN BUTTON VISIBILITY */
  .btn-outline,
  button.btn-outline {
    background: #ffffff !important;
    border: 2px solid #4f46e5 !important;
    color: #4f46e5 !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 15px rgba(79,70,229,0.2) !important;
  }

  /* HOVER */
  .btn-outline:hover {
    background: #4f46e5 !important;
    color: #ffffff !important;
  }

  /* FIX SMALL ROUND BUTTONS (TOP RIGHT) */
  /* ADMIN ONLY BUTTON FIX */
  body.admin-page .btn-outline,
  body.admin-page button.btn-outline {
    background: #ffffff !important;
    border: 2px solid #4f46e5 !important;
    color: #4f46e5 !important;
  }

  body.admin-page .admin-header button,
  body.admin-page .admin-card button {
    border: 2px solid #4f46e5 !important;
    background: #ffffff !important;
    color: #4f46e5 !important;
  }

  /* ACTIVE / PRIMARY BUTTON */
  .btn,
  button.primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1) !important;
    color: white !important;
    border: none !important;
  }

  /* FIX INPUT FIELD (SEARCH BAR LOOK) */
  input {
    background: #ffffff !important;
    color: #000 !important;
    border: 1px solid #ccc !important;
  }

  /* FIX TAB BUTTONS (Questions / Mentor / Users etc) */
  .tabs button {
    background: #e5e7eb !important;
    color: #374151 !important;
    border: none !important;
  }

  .tabs button.active {
    background: #4f46e5 !important;
    color: #fff !important;
  }

  /* FIX HERO BIG BUTTONS */
  .hero-buttons a,
  .hero-buttons .btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 16px !important;
    min-width: auto !important;
  }

  /* FIX ASK / MENTOR BOX SIZE */
  .steps a,
  .steps .btn {
    width: auto !important;
    height: auto !important;
    padding: 16px 20px !important;
    border-radius: 20px !important;
  }

  /* ✅ FIX HOMEPAGE HERO BUTTON STRETCH ISSUE */
  .hero-buttons {
    align-items: center !important;
  }

  .hero-buttons > a.btn {
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 28px !important;
    border-radius: 999px !important;
    align-self: center !important;
    flex: 0 0 auto !important;
  }

  /* Put guidance box on next row */
  .hero-buttons .chat-section {
    flex: 0 0 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* CENTER HERO BUTTONS PERFECTLY */
  .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
  }

  /* REMOVE EMPTY CHAT SPACE EFFECT */
  .hero-buttons .chat-section {
    display: none !important;
  }

  .avatar-wrapper {
    position: relative;
    display: inline-block;
  }

  .change-dp-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #22c55e);
    border: none;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
    cursor: pointer;
  }


  .upload-box {
    margin: 20px 0;
    padding: 18px;
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    text-align: center;
  }

  .upload-box label {
    display: block;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 10px;
    cursor: pointer;
  }

  .upload-box input {
    width: 100%;
    background: rgba(15,23,42,0.85);
    color: white;
    padding: 12px;
    border-radius: 14px;
  }

  .upload-box small {
    display: block;
    color: #94a3b8;
    margin-top: 8px;
  }

  #filePreview {
    margin-top: 12px;
  }

  .question-file-preview-img {
    max-width: 190px;
    max-height: 190px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.18);
  }

  .file-preview-name {
    margin-top: 10px;
    color: #cbd5e1;
    font-weight: 700;
  }
  .question-detail-attachment {
    margin: 20px auto;
    max-width: 700px;
  }

  .question-detail-attachment img {
    width: 100%;
    border-radius: 15px;
    max-height: 400px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
  }

  .question-detail-attachment a {
    display: inline-block;
    padding: 10px 16px;
    background: #6366f1;
    color: white;
    border-radius: 20px;
    font-weight: 600;
  }

  .question-detail-attachment a {
    display: inline-block;
    padding: 10px 16px;
    background: #6366f1;
    color: white;
    border-radius: 20px;
    font-weight: 600;
  }

  /* ============================= */
  /* PRO DM / MY CHATS PAGE FIX */
  /* ============================= */

  body:has(.dm-wrapper) {
    background: #0b1020;
  }

  .dm-wrapper {
    max-width: 1150px;
    height: calc(100vh - 90px);
    margin: 25px auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 360px 1fr;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  }

  .dm-left {
    border-right: 1px solid #e5e7eb;
    background: #fff;
    overflow-y: auto;
  }

  .dm-left-header {
    padding: 22px;
    border-bottom: 1px solid #e5e7eb;
  }

  .dm-left-header h2 {
    text-align: left;
    font-size: 24px;
    margin: 0;
    color: #111827;
  }

  .search-box {
    margin-top: 15px;
    width: 100%;
    background: #f3f4f6 !important;
    border-radius: 999px !important;
    padding: 12px 18px !important;
    border: none !important;
    outline: none !important;
    font-size: 14px;
    color: #111827 !important;
  }

  .search-box::placeholder {
    color: #9ca3af;
  }

  .chat-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: 0.2s;
    border-bottom: 1px solid #f1f5f9;
  }

  .chat-user:hover {
    background: #f8fafc;
  }

  .chat-user img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6366f1;
  }

  .chat-user-info {
    flex: 1;
    min-width: 0;
  }

  .chat-user-info h3 {
    margin: 0;
    font-size: 15px;
    color: #111827 !important;
    font-weight: 700;
  }

  .chat-user-info p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #6b7280 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dm-right {
    background: linear-gradient(135deg, #eef2ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
  }

  .empty-chat {
    text-align: center;
  }

  .empty-chat img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 18px;
    border: 3px solid #6366f1;
  }

  .empty-chat h2 {
    margin-bottom: 10px;
    color: #111827 !important;
    font-size: 30px;
    font-weight: 800;
  }

  .empty-chat p {
    color: #4b5563 !important;
    max-width: 380px;
    margin: auto;
  }

  .open-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
  }

  .open-btn:hover {
    transform: scale(1.05);
    color: white !important;
  }

  .dm-left::-webkit-scrollbar {
    width: 6px;
  }

  .dm-left::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .dm-wrapper {
      height: auto;
      margin: 0;
      border-radius: 0;
      grid-template-columns: 1fr;
    }

    .dm-right {
      display: none;
    }
  }

  .unread-badge {
    background: #ef4444;
    color: white;
    font-size: 12px;
    font-weight: 800;
    min-width: 22px;
    height: 22px;
    padding: 2px 7px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .chat-user {
    position: relative;
  }

  .chat-user small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
  }


  /* ============================= */
  /* SMART STORE WIDGET SAFE CSS */
  /* ============================= */

  .smart-store-widget {
    color: #172033 !important;
    margin-top: 25px;
  }

  .smart-store-widget .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
  }

  .smart-store-widget .compact-grid {
    display: grid;
    gap: 14px;
  }

  .smart-store-widget .product-card {
    background: #ffffff !important;
    color: #172033 !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12) !important;
  }

  .smart-store-widget .image-wrap {
    position: relative;
    height: 190px;
    background: #f1f5f9;
  }

  .smart-store-widget .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .smart-store-widget .recommendation-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    color: #059669;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
  }

  .smart-store-widget .product-content {
    padding: 18px;
  }

  .smart-store-widget .product-content h3,
  .smart-store-widget .product-content p,
  .smart-store-widget .product-footer strong {
    color: #172033 !important;
  }

  .smart-store-widget .product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }

  .smart-store-widget .product-meta span {
    background: #eef2ff;
    color: #475569;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
  }

  .smart-store-widget .benefit {
    font-weight: 700;
    margin-bottom: 10px;
  }

  .smart-store-widget .description {
    color: #64748b !important;
    font-size: 14px;
  }

  .smart-store-widget .product-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .smart-store-widget .product-cta {
    background: #4f46e5 !important;
    color: white !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    border: none !important;
    box-shadow: none !important;
  }

  section {
    margin: 0;
  }

  h1, h2, h3 {
    margin-bottom: 10px;
  }

  p {
    margin-bottom: 10px;
  }

  /* ============================= */
  /* MENTOR PROFILE VISIBILITY FIX */
  /* ============================= */

  .mentor-profile-card,
  .mentor-profile-card * {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mentor-profile-card h1,
  .mentor-profile-card h2,
  .mentor-profile-card h3,
  .mentor-profile-card strong {
    color: #111827 !important;
  }

  .mentor-profile-card p,
  .mentor-profile-card span,
  .mentor-profile-card div,
  .mentor-profile-card small {
    color: #374151 !important;
  }

  .mentor-profile-card .verified-badge,
  .mentor-profile-card .verified,
  .mentor-profile-card .mentor-verified {
    color: #16a34a !important;
    font-weight: 700 !important;
  }

  .mentor-profile-card .btn {
    color: #ffffff !important;
  }

  .mentor-profile-card .btn-outline {
    background: #ffffff !important;
    color: #4f46e5 !important;
    border: 2px solid #4f46e5 !important;
  }

  /* FORCE TEXT FIX */
  .mentor-profile-card {
    background: #ffffff !important;
  }

  /* FIX LIGHT TEXT */
  .mentor-profile-card p,
  .mentor-profile-card span {
    text-shadow: none !important;
  }



  /* ===== BOOKING MODAL MOBILE SAFE FIX ===== */

  .booking-modal,
  .modal-content,
  .booking-popup,
  .booking-box {
    max-height: 88dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .booking-actions,
  .payment-action,
  .booking-footer {
    position: sticky !important;
    bottom: 0 !important;
    background: #ffffff !important;
    padding: 14px 0 8px !important;
    z-index: 20 !important;
  }

  #continuePaymentBtn,
  .continue-payment-btn,
  #payBtn {
    width: 100% !important;
    margin-top: 16px !important;
  }

  @media (max-width: 600px) {
    .booking-modal,
    .modal-content,
    .booking-popup,
    .booking-box {
      width: 92vw !important;
      max-height: 86dvh !important;
      padding: 24px !important;
      border-radius: 28px !important;
    }

    .time-slots,
    .slot-grid,
    #timeSlots {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 12px !important;
    }

    .time-slot,
    .slot-btn {
      min-height: 76px !important;
      padding: 12px !important;
      font-size: 15px !important;
      line-height: 1.25 !important;
    }
  }

  @media (max-width: 380px) {
    .time-slots,
    .slot-grid,
    #timeSlots {
      grid-template-columns: 1fr !important;
    }
  }


  /* ===================================== */
  /* URVIZEN ADVANCED MOBILE NAVIGATION */
  /* ===================================== */

  .mobile-bottom-nav,
  .mobile-menu-overlay,
  .mobile-bottom-sheet {
    display: none;
  }

  @media screen and (max-width: 900px) {

    body {
      padding-bottom: 110px !important;
    }

    footer {
      padding-bottom: 120px !important;
    }

    nav .nav-links {
      display: none !important;
    }

    .menu-toggle {
      display: none !important;
    }

    .mobile-bottom-nav {
      display: flex !important;
      position: fixed !important;
      left: 14px !important;
      right: 14px !important;
      bottom: 14px !important;
      height: 74px !important;

      z-index: 999999 !important;

      justify-content: space-around !important;
      align-items: center !important;

      background: rgba(10,15,30,.94) !important;
      backdrop-filter: blur(18px) !important;

      border-radius: 28px !important;
      border: 1px solid rgba(255,255,255,.08) !important;

      box-shadow:
        0 10px 40px rgba(0,0,0,.45),
        0 0 0 1px rgba(255,255,255,.03) !important;
    }

    .mobile-nav-item {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 3px !important;

      color: #cbd5e1 !important;
      text-decoration: none !important;

      background: transparent !important;
      border: none !important;
      box-shadow: none !important;

      font-size: 20px !important;
      min-width: 50px !important;

      padding: 0 !important;
      margin: 0 !important;
    }

    .mobile-nav-item span {
      font-size: 10px !important;
      line-height: 1 !important;
    }

    .mobile-nav-item.active {
      color: #8b5cf6 !important;
    }

    .mobile-nav-main {
      width: 60px !important;
      height: 60px !important;

      border-radius: 999px !important;

      background: linear-gradient(135deg,#6366f1,#8b5cf6) !important;

      display: flex !important;
      align-items: center !important;
      justify-content: center !important;

      color: white !important;
      text-decoration: none !important;

      font-size: 34px !important;

      margin-top: -30px !important;

      box-shadow:
        0 15px 35px rgba(99,102,241,.45) !important;
    }

    .mobile-menu-overlay {
      position: fixed !important;
      inset: 0 !important;

      background: rgba(0,0,0,.55) !important;
      backdrop-filter: blur(5px) !important;

      z-index: 999998 !important;

      opacity: 0;
      pointer-events: none;

      transition: .25s ease;
    }

    .mobile-menu-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-bottom-sheet {
      display: block !important;

      position: fixed !important;
      left: 0 !important;
      right: 0 !important;
      bottom: -120% !important;

      max-height: 82vh !important;
      overflow-y: auto !important;

      z-index: 999999 !important;

      background:
        linear-gradient(
          180deg,
          rgba(15,23,42,.98),
          rgba(2,6,23,.99)
        ) !important;

      border-radius: 30px 30px 0 0 !important;

      border: 1px solid rgba(255,255,255,.08) !important;

      padding: 18px 18px 120px !important;

      transition: .3s ease !important;
    }

    .mobile-bottom-sheet.active {
      bottom: 0 !important;
    }

    .sheet-handle {
      width: 44px;
      height: 5px;

      background: rgba(255,255,255,.25);

      border-radius: 999px;

      margin: 0 auto 16px;
    }

    .sheet-header h3 {
      color: white !important;
      font-size: 24px !important;
      margin: 0 !important;
    }

    .sheet-header p {
      color: #94a3b8 !important;
      margin: 5px 0 18px !important;
    }

    .sheet-grid {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 12px !important;
    }

    .sheet-grid a {
      background: rgba(255,255,255,.06) !important;

      border: 1px solid rgba(255,255,255,.07) !important;

      border-radius: 18px !important;

      padding: 18px 14px !important;

      color: white !important;

      text-decoration: none !important;

      font-weight: 800 !important;

      font-size: 14px !important;
    }
  }


  .sheet-header {
    position: relative;
  }

  .sheet-close-btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    color: white !important;
    font-size: 28px !important;
    box-shadow: none !important;
  }

  .sheet-user-box {
    display: flex;
    gap: 12px;
    margin: 16px 0 18px;
  }

  .sheet-user-box .btn {
    flex: 1;
    padding: 12px 16px !important;
  }


  /* HOMEPAGE SECTION GAP FIX */
  .brand-statement {
    padding: 28px 0 18px !important;
  }

  .brand-statement + section {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }

  .light-bg {
    padding-top: 28px !important;
  }


  /* ===================================== */
  /* HOMEPAGE GAP REDUCTION FINAL FIX */
  /* ===================================== */

  /* global section spacing smaller */
  section {
    padding: 34px 0 !important;
  }

  /* hero smaller */
  .hero {
    padding: 18px 0 10px !important;
  }

  /* remove giant spaces */
  .page-section,
  .content-section,
  .light-bg,
  .blue-bg,
  .faq-section,
  .brand-statement {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  /* container cards less tall */
  .page-section > .container,
  .content-section > .container,
  body > section.container {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }

  /* headings tighter */
  h1,
  h2,
  h3 {
    margin-bottom: 8px !important;
  }

  /* paragraph tighter */
  p {
    margin-bottom: 8px !important;
  }

  /* steps/cards smaller spacing */
  .steps,
  .explore-list,
  .questions-container,
  .mentor-container {
    margin-top: 18px !important;
    gap: 16px !important;
  }

  /* FAQ tighter */
  .faq-item {
    margin-bottom: 16px !important;
  }

  /* footer top gap remove */
  footer {
    margin-top: 10px !important;
  }

  /* explore section */
  .explore-section {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  /* about/contact sections */
  #about,
  #contact {
    padding-top: 24px !important;
    padding-bottom: 2px !important;
  }



  /* URVIZEN SPLIT HERO - SAFE HOMEPAGE ONLY */
  .split-hero {
    padding: 34px 0 28px !important;
  }

  .split-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
  }

  .split-hero .hero-text {
    text-align: left;
  }

  .hero-pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #c7d2fe;
    font-size: 14px;
    font-weight: 800;
  }

  .split-hero h1 {
    text-align: left;
    max-width: 620px;
    margin: 0 0 16px;
  }

  .split-hero p {
    max-width: 620px;
    margin: 0 0 22px;
  }

  .split-hero .hero-buttons {
    justify-content: flex-start !important;
    margin-top: 0 !important;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-card {
    width: 100%;
    max-width: 420px;
    padding: 26px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 25px 80px rgba(0,0,0,0.35);
    backdrop-filter: blur(18px);
  }

  .hero-card-top {
    display: grid;
    gap: 6px;
    margin-bottom: 24px;
  }

  .hero-card-top span {
    color: #a5b4fc;
    font-weight: 800;
    font-size: 14px;
  }

  .hero-card-top strong {
    color: white;
    font-size: 22px;
  }

  .mentor-preview {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: rgba(15,23,42,0.65);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .mentor-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: white;
    font-weight: 900;
    font-size: 24px;
  }

  .mentor-preview h3 {
    margin: 0 0 4px !important;
    font-size: 17px;
  }

  .mentor-preview p {
    margin: 0 !important;
    font-size: 13px;
    color: #94a3b8;
  }

  .hero-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
  }

  .hero-mini-grid div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .hero-mini-grid strong,
  .hero-mini-grid span {
    display: block;
  }

  .hero-mini-grid strong {
    color: white;
    font-size: 15px;
  }

  .hero-mini-grid span {
    color: #94a3b8;
    font-size: 12px;
  }

  .hero-card-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 13px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #06b6d4);
    color: white !important;
    font-weight: 900;
  }

  @media (max-width: 900px) {
    .split-hero-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .split-hero .hero-text,
    .split-hero h1 {
      text-align: center;
    }

    .split-hero p {
      margin-left: auto;
      margin-right: auto;
    }

    .split-hero .hero-buttons {
      justify-content: center !important;
    }
  }



  /* HERO IMAGE */
  .hero-main-image{
    width:100%;
    max-width:540px;
    border-radius:32px;
    object-fit:cover;
    box-shadow:0 25px 80px rgba(0,0,0,.45);
  }


  /* MOBILE HERO IMAGE FIX */
  @media (max-width: 900px) {
    .split-hero-inner {
      grid-template-columns: 1fr !important;
    }

    .hero-visual {
      margin-top: 22px;
    }

    .hero-main-image {
      max-width: 92vw;
      max-height: 300px;
      object-fit: cover;
      border-radius: 24px;
    }
  }


  /* CONTACT US PREMIUM CARD WITHOUT HTML CHANGE */

  .contact-section,
  .contact-us,
  #contact,
  section.contact {
    padding: 90px 20px !important;
    background: linear-gradient(180deg, #161b45 0%, #12163a 100%) !important;
  }

  .contact-section > div,
  .contact-us > div,
  #contact > div,
  section.contact > div {
    max-width: 1100px !important;
    margin: auto !important;

    padding: 70px 50px !important;

    border-radius: 34px !important;

    background: rgba(255,255,255,0.06) !important;

    border: 1px solid rgba(255,255,255,0.08) !important;

    backdrop-filter: blur(12px) !important;

    text-align: center !important;

    box-shadow:
      0 20px 60px rgba(0,0,0,0.35),
      inset 0 1px 0 rgba(255,255,255,0.05) !important;
  }

  .contact-section h2,
  .contact-us h2,
  #contact h2,
  section.contact h2 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-bottom: 25px !important;
  }

  .contact-section p,
  .contact-us p,
  #contact p,
  section.contact p {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    font-size: 1.2rem !important;
    line-height: 1.9 !important;

    color: rgba(255,255,255,0.82) !important;
  }

  .contact-section strong,
  .contact-us strong,
  #contact strong,
  section.contact strong {
    color: #8ea2ff !important;
  }

  @media (max-width: 768px) {

    .contact-section > div,
    .contact-us > div,
    #contact > div,
    section.contact > div {
      padding: 50px 24px !important;
      border-radius: 28px !important;
    }

    .contact-section h2,
    .contact-us h2,
    #contact h2,
    section.contact h2 {
      font-size: 2.5rem !important;
    }

    .contact-section p,
    .contact-us p,
    #contact p,
    section.contact p {
      font-size: 1rem !important;
    }
  }

  /* MOBILE APP STYLE HEADER - SAME GAP ALL PAGES */
@media (max-width: 900px) {

  nav {
    position: relative !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    z-index: 10 !important;
  }

  nav .container {
    min-height: 96px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }

  nav .nav-links,
  .menu-toggle {
    display: none !important;
  }

  .logo {
    margin: 0 auto !important;
  }

  .logo img {
    height: 72px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  body > section:first-of-type {
    padding-top: 18px !important;
  }

  .split-hero {
    padding-top: 18px !important;
  }
}
  /* GLOBAL FOOTER SPACE FIX - SAFE VERSION */
  html,
  body {
    min-height: 100%;
  }

  body {
    min-height: 100vh;
  }

  /* Keep footer normal, don't force flex layout */
 body > footer {
  margin-top: 24px !important;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 0 !important;
  }

  footer {
    padding: 24px 16px 88px !important;
    margin-top: 16px !important;
  }

  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 9999999 !important;
  }
}


/* FLOATING MY CHATS BUTTON */

.floating-chat-btn{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 14px 18px;

  border-radius: 999px;

  background: linear-gradient(135deg,#6366f1,#8b5cf6);

  color: white !important;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 15px 40px rgba(99,102,241,.35);

  transition: .25s ease;
}

.floating-chat-btn:hover{
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 900px){

  .floating-chat-btn{
    right: 14px;
    top: auto;
    bottom: 105px;

    transform: none;

    padding: 12px 16px;

    font-size: 14px;
  }

  .floating-chat-btn:hover{
    transform: scale(1.03);
  }
}


/* COMPACT HOMEPAGE FAQ DESIGN */
.compact-faq-section {
  padding: 34px 0 !important;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.faq-header h2 {
  margin-bottom: 8px !important;
}

.faq-header p {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 0 !important;
}

.section-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(129, 140, 248, 0.25);
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.faq-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 46px 16px 18px;
  position: relative;
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.35;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
  font-size: 19px;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "−";
}

.faq-card p {
  padding: 0 18px 16px;
  margin: 0 !important;
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.6;
  text-align: left;
}

.faq-card[open] {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(99, 102, 241, 0.09);
}

@media (max-width: 800px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .compact-faq-section {
    padding: 26px 0 !important;
  }

  .faq-card summary {
    font-size: 15px;
    padding: 15px 44px 15px 16px;
  }

  .faq-card p {
    font-size: 14px;
  }
}