      :root {
        --primary-gradient: linear-gradient(135deg, #6b3bff, #ff6ec7);
        --secondary-gradient: linear-gradient(135deg, #667eea, #764ba2);
        --accent-gradient: linear-gradient(135deg, #f093fb, #f5576c);
        --surface-gradient: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
        --glass-background: rgba(255, 255, 255, 0.25);
        --glass-border: rgba(255, 255, 255, 0.18);
        --shadow-primary: 0 8px 32px rgba(107, 59, 255, 0.2);
        --shadow-elevated: 0 20px 40px rgba(0, 0, 0, 0.1);
        --animation-duration: 0.6s;
        --border-radius-lg: 20px;
        --border-radius-xl: 30px;
      }

      * {
        box-sizing: border-box;
      }

      body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-attachment: fixed;
        color: #333;
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* Enhanced Button Styles */
      .btn-brand {
        background: var(--primary-gradient);
        border: none;
        color: #fff;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: var(--border-radius-lg);
        transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-primary);
      }

      .btn-brand::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s;
      }

      .btn-brand:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(107, 59, 255, 0.4);
        color: #fff;
      }

      .btn-brand:hover::before {
        left: 100%;
      }

      .btn-brand-hero {
        background: var(--primary-gradient);
        border: none;
        color: #fff;
        font-weight: 700;
        padding: 18px 40px;
        border-radius: var(--border-radius-xl);
        font-size: 1.1rem;
        transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(107, 59, 255, 0.3);
        position: relative;
        overflow: hidden;
      }

      .btn-brand-hero:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(107, 59, 255, 0.4);
        color: #fff;
      }

      .btn-outline-hero {
        background: var(--glass-background);
        backdrop-filter: blur(20px);
        border: 2px solid var(--glass-border);
        color: #333;
        font-weight: 600;
        padding: 16px 36px;
        border-radius: var(--border-radius-xl);
        font-size: 1.1rem;
        transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
      }

      .btn-outline-hero:hover {
        background: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: var(--shadow-elevated);
        color: #333;
      }

      /* Enhanced Hero Section */
      .hero-enhanced {
        background: linear-gradient(135deg, 
          rgba(102, 126, 234, 0.8) 0%, 
          rgba(118, 75, 162, 0.8) 50%,
          rgba(255, 110, 199, 0.8) 100%),
          url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23000000" stop-opacity=".1"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>');
        position: relative;
        padding: 60px 0;
        overflow: hidden;
      }

      .hero-content {
        padding-right: 2rem;
        position: relative;
        z-index: 2;
      }

      .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
        background-image: 
          radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
          radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
        background-size: 60px 60px, 40px 40px;
        animation: particleFloat 20s ease-in-out infinite;
      }

      .hero-particles::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 20s infinite linear;
        top: 10%;
        left: 10%;
      }

      .hero-particles::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(255,110,199,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 15s infinite linear reverse;
        top: 60%;
        right: 15%;
      }

      @keyframes float {
        0% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
        100% { transform: translateY(0px) rotate(360deg); }
      }

      .hero-badge {
        display: inline-block;
        background: var(--glass-background);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 8px 24px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #333;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
      }

      .hero-title {
        font-weight: 800;
        font-size: 4rem;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      }

      .highlight-text {
        background: linear-gradient(135deg, #ffffff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
      }

      .hero-subtitle {
        font-size: 1.3rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
      }

      .hero-buttons {
        margin-bottom: 4rem;
        position: relative;
        z-index: 2;
      }

      .hero-stats {
        display: flex;
        justify-content: flex-start;
        gap: 2rem;
        position: relative;
        z-index: 2;
        margin-top: 2rem;
      }

      .stat-item {
        text-align: center;
        color: #fff;
      }

      .stat-number {
        display: block;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
      }

      .hero-visual {
        position: relative;
        z-index: 2;
      }

      .hero-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: var(--border-radius-xl);
        box-shadow: var(--shadow-elevated);
        border: 2px solid var(--glass-border);
        transition: transform var(--animation-duration) ease;
      }

      .hero-image:hover {
        transform: translateY(-10px) scale(1.02);
      }
      /* Dual Browser Demo Styles */
      .dual-demo-section {
        padding: 100px 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
        position: relative;
      }

      .demo-browser-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 3rem;
        position: relative;
      }

      .browser-mockup {
        flex: 1;
        background: var(--glass-background);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-elevated);
        transition: transform var(--animation-duration) ease;
      }

      .browser-mockup:hover {
        transform: translateY(-5px);
      }

      .browser-header {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.1);
      }

      .browser-controls {
        display: flex;
        gap: 6px;
      }

      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
      }

      .dot.red { background: #ff5f57; }
      .dot.yellow { background: #ffbd2e; }
      .dot.green { background: #28ca42; }

      .browser-url {
        flex: 1;
        background: #fff;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        color: #666;
        border: 1px solid #ddd;
      }

      .user-indicator {
        background: var(--primary-gradient);
        color: #fff;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
      }

      .user-a-indicator {
        background: linear-gradient(135deg, #667eea, #764ba2);
      }

      .user-b-indicator {
        background: linear-gradient(135deg, #f093fb, #f5576c);
      }

      .browser-content {
        height: 300px;
        position: relative;
        overflow: hidden;
      }

      .mock-linkedin {
        padding: 20px;
        background: linear-gradient(180deg, #0077b5, #0e76a8);
        height: 100%;
        color: #fff;
      }

      .mock-linkedin.alt {
        background: linear-gradient(180deg, #0077b5, #2e8b57);
      }

      .profile-header {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        opacity: 0.9;
      }

      .profile-card {
        background: rgba(255,255,255,0.1);
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 1rem;
        backdrop-filter: blur(10px);
      }

      .activity-feed {
        background: rgba(255,255,255,0.05);
        padding: 15px;
        border-radius: 8px;
        opacity: 0.8;
      }

      .sync-indicator {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--glass-background);
        backdrop-filter: blur(20px);
        border: 2px solid var(--glass-border);
        padding: 12px 20px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-weight: 600;
        font-size: 0.9rem;
      }

      .sync-pulse {
        width: 12px;
        height: 12px;
        background: var(--primary-gradient);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }

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

      .demo-caption h3 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 1rem;
      }

      .demo-caption p {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
      }
      .feature-card {
        border: none;
        border-radius: 16px;
        padding: 32px;
        background: #fff;
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
      }
      .feature-card i {
        font-size: 40px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #6b3bff, #ff6ec7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .stats {
        padding: 60px 0;
        text-align: center;
      }
      .stats h2 {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
      }
      .stats p {
        color: #fff;
        font-size: 1rem;
      }
      footer {
        background: #1a1a1a;
        color: #ccc;
        padding: 60px 0;
        font-size: 0.9rem;
      }
      footer h6 {
        color: #fff;
        font-weight: 600;
        margin-bottom: 16px;
      }
      footer a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        display: block;
        margin: 6px 0;
        transition: all 0.3s ease;
      }
      footer a:hover {
        color: #fff;
        transform: translateX(5px);
      }
      .vertical-nav {
        position: fixed;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        z-index: 1000;
        display: none;
      }
      .vertical-nav a {
        display: block;
        font-size: 1.5rem;
        background: linear-gradient(135deg, #6b3bff, #ff6ec7);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 10px 0;
        transition: all 0.3s ease;
        position: relative;
      }
      .vertical-nav a:hover {
        transform: scale(1.2);
        filter: brightness(1.2);
      }

      .vertical-nav a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(107, 59, 255, 0.1), rgba(255, 110, 199, 0.1));
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.3s ease;
        z-index: -1;
      }

      .vertical-nav a:hover::before {
        transform: translate(-50%, -50%) scale(1);
      }
      .scroll-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: linear-gradient(135deg, #6b3bff, #ff6ec7);
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .scroll-top.show {
        opacity: 1;
      }
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 2.2rem;
        }
        .hero p {
          font-size: 1rem;
        }
        .vertical-nav {
          display: none;
        }
      }
      @media (min-width: 992px) {
        .vertical-nav {
          display: block;
        }
      }

  .table-pro {
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  .table-pro thead {
    background: linear-gradient(135deg, #6b3bff, #ff6ec7);
    color: #fff;
  }
  .table-pro th {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px;
    text-align: center;
  }
  .table-pro td {
    padding: 16px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.95rem;
    color: #333;
  }
  .table-pro tr {
    transition: background 0.3s;
  }
  .table-pro tr:hover {
    background: rgba(107, 59, 255, 0.05);
  }
  .table-pro td:first-child {
    font-weight: 600;
    text-align: left;
    color: #222;
  }
  .table-pro td i {
    font-size: 16px;
    background: linear-gradient(135deg, #6b3bff, #ff6ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .table-pro .text-success i,
  .table-pro .text-danger i,
  .table-pro .text-warning i {
    font-size: 14px;
    background: none;
    -webkit-text-fill-color: initial;
  }
  .table-pro .highlight-col {
    background: rgba(107, 59, 255, 0.08);
    font-weight: 700;
  }
  .header-underline {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #6b3bff, #ff6ec7);
    border-radius: 2px;
    margin-top: 12px;
  }
  @media (max-width: 768px) {
    .table-pro th,
    .table-pro td {
      font-size: 0.9rem;
      padding: 12px;
    }
    .table-pro td i {
      font-size: 14px;
    }
  }
  @media (max-width: 576px) {
    .table-pro {
      display: block;
    }
    .table-pro thead {
      display: none;
    }
    .table-pro tbody,
    .table-pro tr,
    .table-pro td {
      display: block;
      width: 100%;
    }
    .table-pro tr {
      margin-bottom: 16px;
      padding: 12px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .table-pro td {
      text-align: left;
      padding: 8px 12px;
    }
    .table-pro td:first-child {
      font-size: 1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 6px;
      border-bottom: 1px solid #eee;
    }
    .table-pro td:not(:first-child) {
      font-size: 0.85rem;
    }
  }
.step-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.step-icon .badge {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
}
.number-counting{
    background: linear-gradient(135deg, #6b3bff, #ff6ec7);
}

/* General */
body.auth-bg { background: #f5f5f5; font-family: 'Poppins', sans-serif; }
.container-auth { display: flex; justify-content: center; min-height: 100vh; padding: 40px 20px; }
.card-auth { background: #fff; border-radius: 12px; padding: 30px; max-width: 400px; width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.auth-header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.auth-logo { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,#7a4bff,#ff7ecb); box-shadow: 0 6px 20px rgba(122,75,255,.35); }
.auth-header h1 { margin: 0; font-weight: 600; font-size: 1.5rem; }
.muted { color: #777; font-size: 0.875rem; }

/* Tabs */
.tabs { display: flex; gap: 10px; margin: 20px 0; }
.tabs input[type="radio"] { display: none; }
.tabs label { flex: 1; padding: 10px; text-align: center; border-radius: 8px; background: #eee; cursor: pointer; transition: 0.3s; }
.tabs input[type="radio"]:checked + label { background: #6b3bff; color: #fff; }

/* Forms */
.forms { position: relative; }
form { flex-direction: column; gap: 15px; }
form.active { display: flex; }
.stack { display: flex; flex-direction: column; gap: 5px; }
.input { padding: 10px; border: 1px solid #ccc; border-radius: 8px; width: 100%; }
.btn { padding: 10px; border-radius: 8px; border: none; cursor: pointer; font-weight: 500; }
.btn-brand { background: #6b3bff; color: #fff; transition: 0.3s; }
.btn-brand:hover { background: #5e36ec; }

/* Social buttons */
.social-btns button { margin-top: 5px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-google { background: #4285F4; color: #fff; }
.btn-apple { background: #000; color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }

/* Divider */
.auth-divider { display: flex; align-items: center; gap: 10px; color: #999; font-size: 0.875rem; text-align: center; margin: 10px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #ddd; }

/* Promo aside */
.promo-auth { max-width: 400px; background: #6b3bff; color: #fff; border-radius: 12px; padding: 30px; display: flex; flex-direction: column; gap: 15px; }
.promo-auth h3 { margin-bottom: 10px; }
.promo-auth .row { display: flex; align-items: flex-start; gap: 10px; }
.btn-pill { background: #fff; color: #5e36ec; border: 0; padding: 5px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }

/* Responsive */
@media(max-width: 992px) {
  .container-auth { flex-direction: column; align-items: center; }
}
    
/* Container */
.container-narrow { max-width: 900px; margin: 0 auto; font-family: 'Poppins', sans-serif; }

/* Header */
.card-header { background: #fff; border-radius: 12px; padding: 25px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: left; }
.card-header h1 { margin-bottom: 5px; font-weight: 600; }
.card-header .muted { color: #777; }

/* Sessions Table */
.sessions-table { display: flex; flex-direction: column; background: #fff; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.table-header, .table-row { display: grid; grid-template-columns: 150px 1fr 80px 100px 200px; align-items: center; padding: 12px 20px; }
.table-header { background: #f5f3ff; font-weight: 600; border-bottom: 1px solid #ddd; }
.table-row { border-bottom: 1px solid #eee; }
.table-row:last-child { border-bottom: none; }
.table-row:hover { background: #f9f7ff; }

.col-hide { display: block; }
@media(max-width: 768px) { .col-hide { display: none; } }

/* Buttons */
.btn-brand { background: #6b3bff; color: #fff; transition: 0.3s; }
.btn-brand:hover { background: #5e36ec; }
.btn-sm { padding: 5px 12px; font-size: 0.875rem; border-radius: 8px; }

/* ================================
   Summary Page Styles
   ================================ */

/* Layout */
.summary-bg {
  background: #f9f9ff;
  font-family: 'Poppins', sans-serif;
}

/* Topbar */
.summary-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.tabs input[type="radio"] {
  display: none;
}
.tabs label {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: #eee;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}
.tabs input[type="radio"]:checked + label {
  background: #6b3bff;
  color: #fff;
}

/* Tab panels */
.tab-panels .panel {
  display: none;
}
.tab-panels .panel.active {
  display: block;
}
.tab-body {
  padding: 0.5rem 0;
}

/* Timeline */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.t-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.75rem;
}
.t-item:last-child {
  border-bottom: none;
}
.t-item .fw-bold a {
  text-decoration: none;
  color: #333;
}
.t-item .fw-bold a:hover {
  color: #6b3bff;
}
.badges .badge {
  margin-right: 5px;
  font-size: 0.75rem;
  border-radius: 6px;
  padding: 5px 8px;
}

/* Notes */
.notes-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.note {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}
.note-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.note a {
  color: #6b3bff;
  font-size: 0.875rem;
  text-decoration: none;
}
.note a:hover {
  text-decoration: underline;
}
.note .text {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.note .tag {
  background: #f5f3ff;
  color: #5e36ec;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 50px;
  margin-right: 5px;
}

/* Sidebar cards */
.card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.avatar {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Sticky toolbar */
.sticky-toolbar {
  position: sticky;
  bottom: 0;
  border-radius: 12px;
}

.workspace { display:grid; grid-template-columns: 1fr 300px; gap:16px; margin-top:20px; }
    .panels { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
    .panel { background:#fff; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,.05); overflow:hidden; }
    .panel__header { background:linear-gradient(135deg, #6b3bff, #ff6ec7); padding:10px 15px; font-weight:600; border-bottom:1px solid #eee; }
    .browser-chrome { display:flex; align-items:center; gap:6px; padding:8px 12px; background:#fafafa; border-bottom:1px solid #eee; }
    .dot { width:10px; height:10px; border-radius:50%; display:inline-block; }
    .dot--red{background:#ff5f56;} .dot--yellow{background:#ffbd2e;} .dot--green{background:#27c93f;}
    .omnibox { flex:1; border:1px solid #ddd; border-radius:6px; padding:6px 10px; font-size:.9rem; }
    .panel__viewport { height:250px; display:flex; align-items:center; justify-content:center; color:#888; font-size:.9rem; background:#fdfdfd; }

    .rail { display:flex; flex-direction:column; gap:16px; }
    .tile { background:#fff; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,.05); overflow:hidden; }
    .tile.video { height:180px; background:#eaeaea; }
    .chat { display:flex; flex-direction:column; height:300px; }
    .chat__header { background:#6b3bff; color:#fff; padding:10px; font-weight:600; display:flex; justify-content:space-between; }
    .chat__body { flex:1; padding:10px; overflow-y:auto; background:#fafafa; }
    .msg { padding:8px 12px; border-radius:8px; margin-bottom:8px; font-size:.9rem; max-width:80%; }
    .msg--in { background:#e9e5ff; color:#3b2a88; align-self:flex-start; }
    .msg--out { background:#6b3bff; color:#fff; align-self:flex-end; }
    .chat__input { border-top:1px solid #ddd; padding:8px; }
    .chat__input input { width:100%; padding:8px 10px; border-radius:8px; border:1px solid #ccc; }

    .card--tight { background:#fff; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,.05); padding:10px 20px; margin-top:20px; }
    .btn-brand { background:#6b3bff; color:#fff; border-radius:8px; }
    .btn-brand:hover { background:#5e36ec; }
    .btn-danger { background:#ff4c61; border:none; border-radius:8px; color:#fff; }
    .btn-pill { background:#f4efff; border:1px solid #d5c7ff; color:#3b2a88; border-radius:50px; padding:5px 15px; font-size:.85rem; font-weight:600; }

    /* Container */
.container-narrow { max-width: 1024px; margin: 40px auto; }

/* Plans grid */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }

/* Individual plan card */
.plan { background:#fff; border-radius:16px; box-shadow:0 10px 30px rgba(0,0,0,0.05); padding: 20px; border:none; }
.plan h3 { font-weight:600; margin-bottom:12px; }
.price { font-size:2rem; font-weight:900; margin-bottom:12px; }
.plan ul { padding-left: 18px; margin-bottom:16px; }
.plan li { margin:6px 0; }

/* Buttons */
.btn-brand { 
  background: linear-gradient(135deg, #6b3bff, #ff6ec7); 
  color:#fff; 
  border-radius:8px; 
  font-weight:500;
  transition:0.3s;
}
.btn-brand:hover { background: linear-gradient(135deg, #5e36ec, #ff57b0); }

/* Card header */
.card-tight { border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,0.05); background:#fff; }

/* Reusable utility classes */
/* Reusable utility classes */
.text-muted {
  color: #555;
}

.text-small {
  font-size: 0.9rem;
}

.btn-brand {
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-brand:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.icon-brand {
  color: #6b3bff;
}

/* Pricing header */
.pricing-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Plans section */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 15px;
}

/* Ensure navbar container doesn't conflict with plans */
.plans .container {
  padding: 0;
}

.plan {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.plan-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #6b3bff;
  margin-bottom: 16px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.plan-features li {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.plan-features li:before {
  content: "✓";
  color: #6b3bff;
  position: absolute;
  left: 0;
}

/* Responsive design */
@media (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
  }

  .container-narrow {
    margin: 40px auto;
  }

  .plan {
    padding: 20px;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .plan-price {
    font-size: 1.8rem;
  }
}

/* Reusable utility classes */
.text-muted {
  color: #555;
}

.text-small {
  font-size: 0.9rem;
}

.btn-brand {
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-brand:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.icon-brand {
  color: #6b3bff;
}

/* Help header */
.help-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.help-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Help section */
.help-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.help-question {
  cursor: pointer;
  font-weight: 900;
  color: #3b2a88;
}

/* Responsive design */
@media (max-width: 900px) {
  .container-narrow {
    margin: 40px auto;
  }

  .help-title {
    font-size: 2rem;
  }
}

/* Reusable utility classes */
.text-muted {
  color: #555;
}

.text-small {
  font-size: 0.9rem;
}

.btn-brand {
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-brand:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.icon-brand {
  color: #6b3bff;
}

/* Contact header */
.contact-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

/* Form styles */
.contact-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: block; /* Ensure form is visible */
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  width: 100%; /* Ensure full width */
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #6b3bff;
  box-shadow: 0 0 5px rgba(107, 59, 255, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Aside styles */
.contact-info {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.contact-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 16px 0 8px;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.contact-info a {
  color: #6b3bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .container-narrow {
    margin: 40px auto;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }
}



/* Privacy header */
.privacy-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.header-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7a4bff, #ff7ecb);
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-notice {
  background: #fff7d8;
  border: 1px solid #ffe39d;
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 8px;
}

/* Privacy content */
.privacy-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.privacy-section {
  margin: 18px 0 10px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-list li {
  font-size: 1rem;
  color: #555;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.section-list li:before {
  content: "•";
  color: #6b3bff;
  position: absolute;
  left: 0;
}

.kicker {
  color: #5e36ec;
  font-weight: 900;
  letter-spacing: 0.25px;
}

.privacy-content p {
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.privacy-content a {
  color: #6b3bff;
  text-decoration: none;
}

.privacy-content a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 900px) {
  .container-narrow {
    margin: 40px auto;
  }

  .privacy-title {
    font-size: 2rem;
  }

  .privacy-content,
  .privacy-header {
    padding: 20px;
  }
}

/* Reusable utility classes */
.text-muted {
  color: #555;
}

.text-small {
  font-size: 0.9rem;
}

.btn-brand {
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-brand:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid #6b3bff;
  color: #6b3bff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  background: #6b3bff;
  color: #fff;
}

.icon-brand {
  color: #6b3bff;
}

/* Research header */
.research-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.research-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Research stack */
.research-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 44px;
}

.feature-content {
  font-size: 1rem;
  color: #555;
}

.feature-content b {
  color: #333;
  font-weight: 600;
}

/* Action row */
.action-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: center;
}

/* Responsive design */
@media (max-width: 900px) {
  .container-narrow {
    margin: 40px auto;
  }

  .research-title {
    font-size: 2rem;
  }

  .research-header,
  .feature-item {
    padding: 20px;
  }

  .action-row {
    flex-direction: column;
    align-items: center;
  }

  .action-row .btn {
    width: 100%;
    text-align: center;
  }
}



/* Hero section */
.hero-about {
  text-align: center;
  color: #fff;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7a4bff, #ff7ecb);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  background: #fff;
  color: #5e36ec;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.22);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 10px 0 6px;
}

.hero-text {
  font-size: 1rem;
  opacity: 0.95;
  margin: 0;
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

/* Article styles */
.about-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-list li {
  font-size: 1rem;
  color: #555;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.section-list li:before {
  content: "•";
  color: #6b3bff;
  position: absolute;
  left: 0;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.about-content a {
  color: #6b3bff;
  text-decoration: none;
}

.about-content a:hover {
  text-decoration: underline;
}

/* Aside styles */
.about-aside {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.facts-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 16px 0 8px;
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 14px 0;
}

/* Responsive design */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .container-narrow {
    margin: 40px auto;
  }

  .hero-title {
    font-size: 2rem;
  }

  .about-content,
  .about-aside,
  .hero-about {
    padding: 20px;
  }
}



/* Dialog styles */
.dialog {
  max-width: 560px;
  width: 92vw;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.dialog-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

/* Stack container */
.dialog-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Input and select styles */
.form-input,
.form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #6b3bff;
  box-shadow: 0 0 5px rgba(107, 59, 255, 0.3);
}

.form-input[readonly] {
  background: #f5f5f5;
}

/* Segmented control */
.segmented-control {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.segmented-control input[type="radio"] {
  display: none;
}

.segmented-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #6b5db0;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.segmented-control input:checked + .segmented-label {
  background: #6b3bff;
  color: #fff;
  border-color: #6b3bff;
}

/* Options row */
.options-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
}

/* Switch styles */
.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e0e0e0;
  border-radius: 10px;
  transition: background 0.3s;
}

.switch-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.switch input:checked + .switch-bg {
  background: #6b3bff;
}

.switch input:checked + .switch-bg + .switch-knob {
  transform: translateX(20px);
}

/* Inline label */
.inline-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b5db0;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 8px 0 2px 4px;
}

/* Link row */
.link-row {
  display: flex;
  gap: 10px;
}

/* Icon buttons */
.icon-btn {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.icon-btn:hover {
  background: #e0e0e0;
}

/* Action row */
.action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

/* Toast styles */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

#sent:target .toast {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.toast-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9df5a1;
}

/* Responsive design */
@media (max-width: 900px) {
  .dialog {
    margin: 20px auto;
    padding: 20px;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .action-row {
    flex-direction: column;
    gap: 10px;
  }

  .action-row .btn-brand {
    width: 100%;
    text-align: center;
  }
}


/* Terms header */
.terms-header {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.header-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7a4bff, #ff7ecb);
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #6b3bff, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.terms-callout {
  background: #e8fff3;
  border: 1px solid #bff1d4;
  border-radius: 12px;
  padding: 10px 12px;
  margin-top: 8px;
}

/* Terms content */
.terms-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.terms-section {
  margin: 18px 0 10px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-list li {
  font-size: 1rem;
  color: #555;
  margin: 6px 0;
  position: relative;
  padding-left: 20px;
}

.section-list li:before {
  content: "•";
  color: #6b3bff;
  position: absolute;
  left: 0;
}

.kicker {
  color: #5e36ec;
  font-weight: 900;
  letter-spacing: 0.25px;
}

.terms-content p {
  font-size: 1rem;
  color: #555;
  margin: 8px 0;
}

.terms-content a {
  color: #6b3bff;
  text-decoration: none;
}

.terms-content a:hover {
  text-decoration: underline;
}

/* Use Cases Section Styles */
.use-cases-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.section-title {
  font-weight: 800;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.use-case-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 0;
  height: 100%;
  transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.use-case-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.use-case-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--animation-duration) ease;
}

.use-case-card:hover .card-image {
  transform: scale(1.05);
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.use-case-card.research-mode::before {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.use-case-card.fun-mode::before {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-elevated);
}

.use-case-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  box-shadow: var(--shadow-primary);
}

.use-case-content {
  padding: 2rem;
}

.research-mode .use-case-icon {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.fun-mode .use-case-icon {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.use-case-icon i {
  font-size: 2rem;
  color: #fff;
}

.use-case-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.use-case-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.use-case-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #333;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.feature-item i {
  font-size: 1.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-research {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  transition: all var(--animation-duration) ease;
}

.btn-research:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  color: #fff;
}

.btn-fun {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  transition: all var(--animation-duration) ease;
}

.btn-fun:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
  color: #fff;
}

/* Core Features Enhanced */
.core-features-section {
  padding: 80px 0;
  background: rgba(255,255,255,0.05);
}

.feature-card-enhanced {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  text-align: center;
  transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.feature-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  transition: all var(--animation-duration) ease;
}

.feature-card-enhanced:hover .feature-bg {
  opacity: 0.15;
  transform: scale(1.05);
}

.feature-card-enhanced > *:not(.feature-background-image) {
  position: relative;
  z-index: 1;
}

.feature-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
}

.feature-icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon-container i {
  font-size: 1.8rem;
  color: #fff;
}

.feature-card-enhanced h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.feature-card-enhanced p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* How It Works Section */
.how-it-works-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
}

.workflow-container {
  max-width: 800px;
  margin: 0 auto;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  transition: all var(--animation-duration) ease;
}

.workflow-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-elevated);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 60px;
}

.step-content {
  flex: 1;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-icon i {
  font-size: 1.2rem;
  color: #fff;
}

.step-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #fff;
  margin-bottom: 0;
  line-height: 1.6;
}

.workflow-arrow {
  text-align: center;
  margin: 1rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
}

.workflow-arrow i {
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Competitive Advantage Section */
.competitive-section {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}

.competitive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.advantage-card {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--animation-duration) cubic-bezier(0.4, 0, 0.2, 1);
}

.advantage-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-elevated);
}

.advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--primary-gradient);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.advantage-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.advantage-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.metric {
  display: inline-block;
  background: var(--primary-gradient);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.comparison-visual {
  margin-top: 3rem;
}

.vs-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.solution {
  flex: 1;
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
}

.solution.dualsurfer {
  border: 2px solid rgba(107, 59, 255, 0.3);
  transform: scale(1.05);
}

.solution h5 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.solution.dualsurfer h5 {
  color: #fff;
}

.solution.others h5 {
  color: #fff;
}

.feature-list {
  space-y: 0.75rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #fff;
}

.feature.disabled {
  opacity: 0.8;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Responsive design */
@media (max-width: 900px) {
  .container-narrow {
    margin: 40px auto;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-content,
  .terms-header {
    padding: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .demo-browser-container {
    flex-direction: column;
  }

  .vs-container {
    flex-direction: column;
  }

  .workflow-step {
    flex-direction: column;
    text-align: center;
  }

  .competitive-grid {
    grid-template-columns: 1fr;
  }

  .use-case-card {
    padding: 0;
  }

  .hero-image {
    height: 250px;
  }

  .use-case-image {
    height: 150px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .use-case-icon {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .use-case-content {
    padding: 1.5rem;
  }
}

/* Session Page Styles - Enhanced Dual-Browsing Interface */
.session-main {
  min-height: 100vh;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.95) 0%, 
    rgba(118, 75, 162, 0.95) 50%,
    rgba(255, 110, 199, 0.95) 100%);
  padding: 0;
  overflow: hidden;
}

.session-header {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.session-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.session-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.session-status {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(40, 167, 69, 0); }
}

.session-id {
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

.session-participants {
  display: flex;
  gap: 1rem;
}

.participant {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.participant-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}

.participant.user-a .participant-avatar {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.participant.user-b .participant-avatar {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.session-controls {
  display: flex;
  gap: 0.5rem;
}

/* Dual Workspace */
.dual-workspace {
  display: flex;
  height: calc(100vh - 140px);
  gap: 1rem;
  padding: 1rem;
}

.browsing-panels {
  flex: 1;
  display: flex;
  gap: 1rem;
  position: relative;
}

.browser-panel {
  flex: 1;
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transition: all var(--animation-duration) ease;
}

.browser-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.panel-header {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.user-indicator-full {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.user-a-bg {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.user-b-bg {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.user-role {
  font-size: 0.8rem;
  color: #666;
}

.panel-controls {
  display: flex;
  gap: 6px;
}

/* Browser Interface */
.browser-interface {
  height: calc(100% - 64px);
  display: flex;
  flex-direction: column;
}

.browser-toolbar {
  background: #ffffff;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.browser-traffic-lights {
  display: flex;
  gap: 6px;
}

.light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.light.red { background: #ff5f57; }
.light.yellow { background: #ffbd2e; }
.light.green { background: #28ca42; }

.browser-nav {
  display: flex;
  gap: 4px;
}

.nav-btn {
  background: #f0f0f0;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #666;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #e0e0e0;
  color: #333;
}

.address-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
}

.address-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: #333;
  outline: none;
}

.secure-indicator {
  background: none;
  border: none;
  color: #28a745;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* Enhanced Browser Controls */
.address-bar-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.url-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: #333;
  background: transparent;
  margin: 0 8px;
}

/* Browser Sharing Controls */
.share-control-btn,
.sync-browse-btn {
  background: #f8f9fa;
  border: 1px solid #e0e6ed;
  border-radius: 4px;
  padding: 4px 8px;
  margin-left: 4px;
  font-size: 0.75rem;
  transition: all 0.2s ease;
  color: #6c757d;
}

.share-control-btn:hover,
.sync-browse-btn:hover {
  background: #e9ecef;
  color: #495057;
}

.sync-browse-btn.active {
  background: #6b3bff;
  color: white;
  border-color: #6b3bff;
}

/* Control Status Indicator */
.control-status {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
}

.control-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 500;
}

.control-indicator.you-control {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.control-indicator.partner-control {
  background: rgba(107, 59, 255, 0.1);
  color: #6b3bff;
}

/* Browser Action Buttons */
.browser-actions {
  display: flex;
  gap: 4px;
  margin-left: 10px;
}

.action-btn {
  background: #f8f9fa;
  border: 1px solid #e0e6ed;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  color: #495057;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-1px);
}

/* Real-time Interaction Indicators */
.interaction-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.cursor-indicator {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 15;
  pointer-events: none;
}

.cursor-indicator.your-cursor {
  color: #28a745;
}

.cursor-indicator.partner-cursor {
  color: #6b3bff;
}

.cursor-label {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.click-ripple {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #28a745;
  border-radius: 50%;
  animation: clickRipple 0.6s ease-out;
}

@keyframes clickRipple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.scroll-indicator {
  position: absolute;
  background: rgba(107, 59, 255, 0.9);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: scrollPulse 1s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Enhanced Sync Controls */
.sync-controls {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.sync-control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.sync-control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.sync-control-btn.active {
  background: #28a745;
  border-color: #28a745;
  color: white;
}

/* Data Flow Visualization */
.data-flow {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  position: relative;
}

.flow-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: flowPulse 2s ease-in-out infinite;
}

.flow-arrow.left-to-right {
  animation-delay: 0s;
}

.flow-arrow.right-to-left {
  animation-delay: 1s;
}

@keyframes flowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Enhanced Video Integration */
.video-status {
  position: absolute;
  top: 5px;
  right: 5px;
}

.status-indicator {
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.6rem;
  font-weight: 500;
}

.status-indicator.browsing {
  background: rgba(40, 167, 69, 0.9);
}

.status-indicator.controlling {
  background: rgba(107, 59, 255, 0.9);
}

.quick-communication {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.communication-buttons {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.comm-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  transition: all 0.2s ease;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comm-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
}

/* Browser Viewport */
.browser-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.website-mockup {
  height: 100%;
  padding: 20px;
  position: relative;
}

.linkedin-research {
  background: linear-gradient(180deg, #0077b5, #0e76a8);
  color: #fff;
}

.linkedin-marketing {
  background: linear-gradient(180deg, #0077b5, #2e8b57);
  color: #fff;
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mock-logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.mock-search {
  background: rgba(255,255,255,0.1);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.profile-section {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profile-pic.researcher {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
}

.profile-pic.marketer {
  background: linear-gradient(135deg, #5f27cd, #00d2d3);
}

.profile-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.profile-info p {
  margin: 0 0 12px 0;
  opacity: 0.9;
}

.experience-points {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.point {
  font-size: 0.85rem;
  opacity: 0.8;
  padding: 2px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}

.recommendations h4 {
  margin: 0 0 12px 0;
  font-size: 1.1rem;
}

.job-card {
  background: rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  border-left: 3px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.job-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(4px);
}

/* Research Annotations */
.research-annotations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.annotation {
  position: absolute;
  pointer-events: all;
  cursor: pointer;
}

.annotation.note-1, .annotation.note-2 {
  background: #ffd700;
  color: #333;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  animation: noteFloat 3s infinite;
}

.annotation.highlight-1 {
  background: rgba(255, 255, 0, 0.3);
  border: 2px solid rgba(255, 255, 0, 0.8);
  border-radius: 4px;
  animation: highlightPulse 2s infinite;
}

.annotation.highlight-2 {
  background: rgba(255, 0, 255, 0.3);
  border: 2px solid rgba(255, 0, 255, 0.8);
  border-radius: 4px;
  animation: highlightPulse 2s infinite;
}

@keyframes noteFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

@keyframes highlightPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.annotation:hover .tooltip {
  opacity: 1;
}

/* Sync Bridge */
.sync-bridge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.sync-indicator-advanced {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 2px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.sync-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--primary-gradient);
  border-radius: 50%;
  animation: syncRingPulse 2s infinite;
}

@keyframes syncRingPulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.sync-icon {
  font-size: 1.2rem;
  color: #333;
  z-index: 1;
}

.sync-status {
  font-size: 0.8rem;
  color: #333;
  font-weight: 600;
  z-index: 1;
}

/* Collaboration Sidebar */
.collaboration-sidebar {
  width: 480px;
  min-width: 420px;
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Video Section */
.video-section {
  padding: 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.video-tile {
  aspect-ratio: 4/3;
  background: #f8f9fa;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-height: 160px;
}

.video-tile:hover {
  border-color: var(--primary-gradient);
  transform: scale(1.02);
}

.video-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.avatar-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.3rem;
}

.video-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.video-controls {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.video-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.3s ease;
}

.video-btn.active {
  background: #28a745;
  color: #fff;
}

.video-btn.muted {
  background: #dc3545;
  color: #fff;
}

/* Research Tools */
.research-tools {
  flex: 1;
  padding: 1rem;
  overflow-y: visible;
  min-height: 300px;
}

.tool-section {
  margin-bottom: 1.5rem;
}

.tool-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.notes-area {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 12px;
  min-height: 80px;
}

.note-item {
  background: rgba(255,255,255,0.5);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border-left: 3px solid var(--primary-gradient);
}

.timestamp {
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
}

.note-item p {
  margin: 4px 0 0 0;
  font-size: 0.85rem;
  color: #333;
}

.timeline {
  max-height: 100px;
  overflow-y: auto;
}

.timeline-item {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.time {
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
  min-width: 40px;
}

.action {
  font-size: 0.8rem;
  color: #333;
}

.export-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Control Bar */
.control-bar {
  background: var(--glass-background);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 16px;
  border-radius: 12px;
  color: #333;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.control-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.control-btn.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
}

.session-timer, .session-quality {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.fab-menu {
  position: relative;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-fab {
  background: var(--primary-gradient);
  color: #fff;
}

.main-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(107, 59, 255, 0.4);
}

.fab-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-menu:hover .fab-options {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.option-fab {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  color: #333;
  font-size: 1rem;
}

.option-fab:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}

.option-fab.danger {
  background: #dc3545;
  color: #fff;
}

.option-fab.danger:hover {
  background: #c82333;
}

/* Responsive Design for Session Page */
@media (max-width: 1600px) {
  .collaboration-sidebar {
    width: 420px;
    min-width: 380px;
  }
}

@media (max-width: 1400px) {
  .collaboration-sidebar {
    width: 380px;
    min-width: 350px;
  }
}

@media (max-width: 1200px) {
  .dual-workspace {
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
  }

  .collaboration-sidebar {
    width: 100%;
    min-width: auto;
    max-height: 450px;
    order: 2;
  }

  .browsing-panels {
    height: 70vh;
    min-height: 500px;
    order: 1;
  }

  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 900px) {
  .collaboration-sidebar {
    max-height: 400px;
  }
  
  .browsing-panels {
    height: 60vh;
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .dual-workspace {
    padding: 0.5rem;
    gap: 1rem;
  }

  .browsing-panels {
    flex-direction: column;
    height: auto;
    min-height: 400px;
  }

  .browser-panel {
    height: 350px;
  }

  .collaboration-sidebar {
    max-height: 350px;
  }

  .sync-bridge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
  }

  .session-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .session-info {
    justify-content: center;
  }

  .control-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .control-group {
    justify-content: center;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .video-tile {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .dual-workspace {
    padding: 0.25rem;
  }
  
  .browser-panel {
    height: 300px;
  }
  
  .collaboration-sidebar {
    max-height: 300px;
  }
  
  .video-tile {
    min-height: 100px;
  }
}

/* ========== ENHANCED HERO ANIMATIONS & MICRO-INTERACTIONS ========== */

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

/* Enhanced Hero Badge */
.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  position: relative;
  overflow: hidden;
}

.badge-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Enhanced CTA Buttons */
.cta-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6b3bff, #00d4aa) !important;
  border: none;
  box-shadow: 0 15px 35px rgba(107, 59, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(107, 59, 255, 0.5);
  color: white !important;
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0;
  animation: particleGlow 2s ease-in-out infinite;
}

@keyframes particleGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); }
}

.cta-secondary {
  position: relative;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.5) !important;
  color: #333 !important;
}

.play-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #00d4aa;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.7; transform: translateY(-50%) scale(1.2); }
}

/* Enhanced Hero Visual */
.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.hero-image-container:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.4s ease;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(107, 59, 255, 0.1) 0%,
    rgba(0, 212, 170, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-image-overlay {
  opacity: 1;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b3bff;
  font-size: 1.2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.icon-1 {
  top: 20%;
  right: 15%;
  animation: float1 4s ease-in-out infinite;
}

.icon-2 {
  bottom: 30%;
  right: 20%;
  animation: float2 3s ease-in-out infinite 0.5s;
}

.icon-3 {
  top: 60%;
  left: 10%;
  animation: float3 3.5s ease-in-out infinite 1s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}

/* ========== ENHANCED MOBILE RESPONSIVENESS ========== */

@media (max-width: 768px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 10px 20px;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .hero-buttons .me-3 {
    margin-right: 0 !important;
  }
  
  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .hero-image-container:hover {
    transform: translateY(-5px);
  }
  
  .cta-primary:hover,
  .cta-secondary:hover {
    transform: translateY(-1px);
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }
  
  .stat-item {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .floating-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
  
  .btn-brand-hero {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .btn-outline-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ========== LOADING STATES & SKELETON SCREENS ========== */

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 1rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-text.medium {
  width: 80%;
}

.skeleton-text.long {
  width: 100%;
}

.skeleton-button {
  height: 3rem;
  border-radius: 20px;
  width: 150px;
}

.skeleton-image {
  height: 300px;
  border-radius: 20px;
}

/* ========== ENHANCED SCROLL ANIMATIONS ========== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ========== PREMIUM MICRO-INTERACTIONS ========== */

.interactive-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.interactive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.interactive-card:active {
  transform: translateY(-4px);
}

.btn-magnetic {
  transition: all 0.3s ease;
}

.btn-magnetic:hover {
  transform: scale(1.05);
}

.text-gradient {
  background: linear-gradient(135deg, #6b3bff, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== BETTER FOCUS STATES FOR ACCESSIBILITY ========== */

.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #6b3bff;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px rgba(107, 59, 255, 0.2);
}

.btn:focus-visible,
.nav-link:focus-visible {
  outline: 3px solid #6b3bff;
  outline-offset: 2px;
}

.cta-primary:focus,
.cta-primary:focus-visible {
  outline: 3px solid #ffffff !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #6b3bff, 0 0 0 5px rgba(107, 59, 255, 0.3) !important;
}

.cta-secondary:focus,
.cta-secondary:focus-visible {
  outline: 3px solid #6b3bff !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px rgba(107, 59, 255, 0.3) !important;
}

.floating-icon:focus,
.floating-icon:focus-visible {
  outline: 3px solid #6b3bff;
  outline-offset: 3px;
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 4px rgba(107, 59, 255, 0.3);
  transform: scale(1.1);
}

.hero-badge:focus,
.hero-badge:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #6b3bff;
}

/* Complete High Contrast Mode Support */
@media (prefers-contrast: high) {
  .hero-badge {
    background: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    backdrop-filter: none !important;
  }
  
  .floating-icon {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    backdrop-filter: none !important;
  }
  
  .btn-brand,
  .btn-brand-hero,
  .cta-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
  }
  
  .btn-outline-hero,
  .cta-secondary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
  }
  
  .hero-image-overlay,
  .hero-particles,
  .badge-shimmer,
  .btn-particles {
    display: none !important;
  }
}

/* ========== COMPLETE REDUCED MOTION SUPPORT ========== */

@media (prefers-reduced-motion: reduce) {
  /* DISABLE ANIMATIONS AND TRANSITIONS WHILE PRESERVING STATIC LAYOUTS */
  *,
  *::before,
  *::after {
    animation: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    /* NOTE: NOT disabling all transforms - only animated ones below */
  }
  
  /* OVERRIDE SPECIFIC KEYFRAME ANIMATIONS */
  @keyframes float { 0%, 50%, 100% { transform: none !important; } }
  @keyframes pulse { 0%, 50%, 100% { transform: none !important; opacity: 1 !important; } }
  @keyframes particleFloat { 0%, 33%, 66%, 100% { transform: none !important; } }
  @keyframes iconPulse { 0%, 50%, 100% { transform: none !important; } }
  @keyframes shimmer { 0%, 100% { left: 0 !important; } }
  
  /* SPECIFIC ANIMATED ELEMENTS */
  .hero-particles {
    animation: none !important;
    background-image: none !important;
  }
  
  .badge-icon {
    animation: none !important;
  }
  
  .badge-shimmer {
    animation: none !important;
  }
  
  .sync-pulse,
  .play-indicator {
    animation: none !important;
  }
  
  /* DISABLE ONLY ANIMATED HOVER TRANSFORMS - PRESERVE STATIC POSITIONING */
  .cta-primary:hover,
  .cta-secondary:hover,
  .hero-image-container:hover,
  .btn-brand:hover,
  .btn-brand-hero:hover,
  .btn-outline-hero:hover,
  .btn-outline-dark:hover,
  .advantage-card:hover,
  .feature-card:hover,
  .interactive-card:hover,
  .browser-mockup:hover,
  .browser-a:hover,
  .browser-b:hover,
  .method-card:hover,
  .action-btn:hover,
  .icon-btn:hover,
  .nav-link:hover,
  .navbar-nav .nav-link:hover {
    /* Disable hover animations but preserve any base positioning */
    animation: none !important;
    transition: none !important;
  }
  
  /* Specific transforms that are animated on hover - disable these specifically */
  .cta-primary:hover {
    transform: none !important; /* was: translateY(-4px) scale(1.02) */
  }
  
  .cta-secondary:hover {
    transform: none !important; /* was: translateY(-2px) */
  }
  
  .hero-image-container:hover {
    transform: none !important; /* was: translateY(-10px) rotateY(5deg) */
  }
  
  /* DISABLE ANIMATED FOCUS TRANSFORMS WHILE PRESERVING STATIC POSITIONING AND ACCESSIBILITY */
  .floating-icon:focus,
  .floating-icon:focus-visible,
  .cta-primary:focus,
  .cta-secondary:focus,
  .btn-brand:focus,
  .btn-brand-hero:focus,
  .btn-outline-hero:focus,
  .btn-outline-dark:focus {
    /* Remove focus animations but keep static positioning */
    animation: none !important;
    transition: none !important;
    /* Maintain accessibility with enhanced focus styles */
    outline: 3px solid #6b3bff !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 1px #ffffff, 0 0 0 4px rgba(107, 59, 255, 0.8) !important;
  }
  
  /* Disable specific animated focus transforms */
  .floating-icon:focus,
  .floating-icon:focus-visible {
    /* Remove scale animation but preserve centering transform if present */
    transform: translate(-50%, -50%) !important; /* Preserve positioning, remove scale(1.1) */
  }
  
  /* DISABLE ALL AOS ANIMATIONS */
  [data-aos],
  [data-aos-delay],
  [data-aos-duration],
  [data-aos-easing] {
    transform: none !important;
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
  
  /* FORCE ALL SCROLL REVEAL ELEMENTS TO BE VISIBLE */
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  /* FORCE STATIC STATES FOR LOADING ELEMENTS */
  .hero-image,
  .hero-content {
    opacity: 1 !important;
    transition: none !important;
  }
  
  /* DISABLE ANIMATIONS WHILE PRESERVING LAYOUT TRANSFORMS */
  .floating-icon,
  .hero-badge,
  .btn-particles,
  .skeleton,
  .sync-indicator,
  .demo-caption,
  .stat-item {
    animation: none !important;
    transition: none !important;
    /* Keep essential positioning transforms, only remove animated ones */
  }
  
  /* Preserve essential static transforms for layout */
  .play-indicator {
    /* Keep centering transform: translate(-50%, -50%) */
    animation: none !important;
    transition: none !important;
  }
  
  .floating-icon {
    /* Keep centering transform but remove float animation */
    animation: none !important;
    transition: none !important;
  }
}

/* ========== HIGH CONTRAST MODE SUPPORT ========== */

@media (prefers-contrast: high) {
  .hero-badge {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  .floating-icon {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  .btn-brand,
  .btn-brand-hero,
  .cta-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
  }
  
  .btn-outline-hero,
  .cta-secondary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
  }
  
  .hero-image-overlay {
    display: none !important;
  }
}

@media (forced-colors: active) {
  .hero-badge,
  .floating-icon,
  .btn-brand,
  .btn-brand-hero,
  .btn-outline-hero,
  .cta-primary,
  .cta-secondary {
    forced-color-adjust: none;
    background: ButtonFace !important;
    color: ButtonText !important;
    border: 2px solid ButtonText !important;
  }
  
  .hero-particles,
  .hero-image-overlay,
  .badge-shimmer,
  .btn-particles,
  .floating-elements {
    display: none !important;
  }
  
  .hero-enhanced {
    background: Canvas !important;
  }
}

video {
  overscroll-behavior: contain;
}

.table-row-empty {
  padding: 1.5rem;
  text-align: center;
  color: #6c757d;
  font-style: italic;
}

.sessions-table .table-header,
.sessions-table .table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr 1fr;
  align-items: center;
  gap: 1rem;
}

.sessions-table .table-row .dropdown-item.text-danger {
  font-weight: 500;
}

.sessions-table .table-row .dropdown-item {
  cursor: pointer;
}

.table-action-dropdown {
  position: static;
}

.btn-icon-only {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
}

.btn-icon-only {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  line-height: 0; 
}

.btn-icon-only::after {
  display: none;
}

