  /* Professional Layout Grid */
  .main-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
  }

  .left-content {
    grid-column: 1;
  }

  .right-sidebar {
    grid-column: 2;
    margin-top: 0;
  }

  @media (max-width: 992px) {
    .main-layout-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .left-content,
    .right-sidebar {
      grid-column: 1;
    }
  }

  /* Professional Hero Section */
  .professional-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    margin: 0 0 2rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .professional-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

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

  .hero-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.875rem;
    color: #e2e8f0;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  /* Trust Badges */
  .trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
  }

  .trust-badge i {
    color: #fbbf24;
    font-size: 16px;
  }

  /* Professional Filter Section */
  .filter-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .filter-section .form-select {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    background: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .filter-section .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  }

  /* Professional Grid Layout - 2 columns for left content */
  .professional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
  }

  @media (max-width: 768px) {
    .professional-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Professional Industry Card */
  .industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .industry-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    border-color: #3b82f6;
  }

  .industry-card-header {
    position: relative;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .industry-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .industry-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  }

  .industry-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .industry-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
  }

  .industry-card-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }

  .industry-stat {
    text-align: center;
    flex: 1;
  }

  .industry-stat-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
  }

  .industry-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  .industry-card-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
  }

  .industry-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
  }

  .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    color: white;
  }

  .btn-outline {
    border: 1px solid #d1d5db;
    background: transparent;
    padding: 10px 20px;
    border-radius: 10px;
    color: #6b7280;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.875rem;
  }

  .btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: #f8fafc;
  }

  /* Sidebar Styles */
  .sidebar-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
  }

  .sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .sidebar-header {
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
  }

  .sidebar-body {
    padding: 20px;
  }

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

  .industry-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
  }

  .industry-list li:hover {
    background: #f8fafc;
    padding-left: 8px;
    margin: 0 -8px;
    border-radius: 8px;
  }

  .industry-list li:last-child {
    border-bottom: none;
  }

  .industry-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .industry-list a:hover {
    color: #3b82f6;
  }

  .item-count {
    background: #3b82f6;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
  }

  /* Premium Hook Styles */
  .subscription-hook {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
  }

  .subscription-hook::before {
    content: '🔥 BEST DEAL';
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 8px 40px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .subscription-benefits .benefit-item {
    padding: 2px 0;
  }

  .pricing-highlight {
    border: 1px solid #f59e0b;
  }

  .custom-data-hook {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(245, 158, 11, 0.3);
  }

  .rounded-8 {
    border-radius: 8px;
  }

  .btn-outline-warning {
    border-color: #f59e0b;
    color: #f59e0b;
  }

  .btn-outline-warning:hover {
    background-color: #f59e0b;
    border-color: #f59e0b;
    color: #1f2937;
  }

  .btn-dark {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: none;
    transition: all 0.3s ease;
  }

  .btn-dark:hover {
    background: linear-gradient(135deg, #111827, #1f2937);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  /* Ad Styles */
  .ad-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid #e5e7eb;
  }

  .ad-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  /* Square Grid Ad Tile - Same size as industry cards (REMOVED FROM USE, but kept for reference) */
  .grid-ad-tile {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    height: 100%;
    min-height: 300px;
  }

  .grid-ad-tile ins {
    width: 100% !important;
    height: 250px !important;
  }

  /* Horizontal Ad in Grid */
  .horizontal-ad {
    grid-column: 1 / -1; /* This makes it span both columns in the 2-column grid */
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 0; /* Margin is handled by grid gap */
    text-align: center;
    border: 1px solid #e5e7eb;
  }

  /* Full Width 3 Grid Layout */
  .full-width-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 3rem 0;
  }

  @media (max-width: 992px) {
    .full-width-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .full-width-grid {
      grid-template-columns: 1fr;
    }
  }

  .mini-industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mini-industry-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: inherit;
  }

  .mini-industry-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
  }

  .mini-industry-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: center;
  }

  .mini-industry-count {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .professional-hero {
      padding: 2.5rem 1rem;
      border-radius: 20px;
      margin-bottom: 2rem;
    }

    .hero-stats {
      gap: 1rem;
    }

    .hero-stat-number {
      font-size: 1.5rem;
    }

    .filter-section {
      padding: 20px;
    }

    .industry-card-stats {
      flex-direction: column;
      gap: 8px;
    }
  }
  
  
    /* * Page-specific Styles
   */

  /* === Header / Hero Section === */
  .home-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0a0f1e 100%);
    min-height: 85vh;
  }

  .home-hero-content-row {
    min-height: 85vh;
  }
  
    @media (min-width: 768px) {
    .hero-badges > div {
      flex: 0 0 auto !important;
      max-width: none !important;
    }
  }
  @media (max-width: 767.98px) {
    .hero-badges > div {
      flex: 1 1 45% !important;
      max-width: 48% !important;
    }
  }

  
  .btn.btn-outline-light {
    border-color: #eee;
    background-color: transparent;
    color: rgb(255 255 255);
}

  /* Background glow effects */
  .home-hero-glow-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    z-index: 0;
  }

  .home-hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    z-index: 0;
  }

  .home-hero-container {
    z-index: 1;
  }

  .home-hero-subheader {
    color: #e2e8f0;
    font-size: 1.25rem;
  }
  
  /* Style for the outline button */
  .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
  }
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
  }

  /* === Video Thumbnail Styles === */
  .video-thumbnail-container {
    background-size: cover;
    background-position: center center;
  }
  
  .video-play-trigger {
    position: relative;
    z-index: 2;
    /* This adds the dark overlay */
    background-color: rgba(0, 0, 0, 0.4); 
    transition: all 0.3s ease;
  }

  .video-play-trigger:hover {
    /* Overlay lightens on hover */
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  /* Keep the scroll pill above content */
.scroll-indicator { z-index: 5; }

/* Prevent overlap on mobile: reserve bottom space in the hero */
@media (max-width: 767.98px) {
  .home-hero {
    padding-bottom: 110px; /* space for scroll indicator + breathing room */
  }
  .video-hook {
    margin-bottom: 8px;   /* keep it tidy on small screens */
  }
}

  
  .video-play-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Gradient matches the old button */
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%); 
    transition: all 0.3s ease;
    /* Aligns the 'bi-play-fill' icon perfectly */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .video-play-trigger:hover .video-play-icon-bg {
    /* Button scales up on hover */
    transform: scale(1.1);
  }
  
  .video-play-text {
    /* Adds shadow to text for readability over any image */
    text-shadow: 0 2px 4px rgba(0,0,0,0.7); 
  }


  /* === Scroll Indicator === */
  .scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .scroll-indicator-icon {
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-8px);
    }
    60% {
      transform: translateY(-4px);
    }
  }

  /* === General Overrides === */
  .shadow-lg-dark {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
  }
  
  .border-opacity-25 {
    border-color: rgba(255, 255, 255, 0.25) !important;
  }

  /* === Responsive Hero Button/Text/Hook === */
 /* === Responsive Hero Button/Text/Hook === */
@media (max-width: 767.98px) {
  .btn-hero-text {
    font-size: 0.85rem !important;
  }

  .hero-info-text {
    font-size: 0.8rem !important;
  }

  /* Keep both buttons in a single row */
  .hero-cta-row {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
  }

  .btn-lg.btn-hero-mobile {
    flex: 1 1 0;                /* both share the row */
    width: auto;                /* no forced 100% */
    padding: 0.6rem 0.7rem !important; /* slightly smaller padding */
    justify-content: center;
  }

  .btn-lg.btn-hero-mobile .bi {
    margin-right: 0.35rem !important;
  }

  /* Flame animation on See Free Sample */
  .btn-free-sample .flame-icon {
    display: inline-block;
    font-size: 1rem;
    animation: flame-pulse 0.9s infinite alternate;
  }

  /* Hook adjustments stay same */
  .hero-hook {
    padding: 0.75rem !important;
  }
  .hero-hook-icon {
    font-size: 1.25rem !important;
    margin-right: 0.75rem !important;
  }
  .hero-hook-text {
    font-size: 1rem !important;
  }
}

/* Flame keyframes (place outside media) */
@keyframes flame-pulse {
  0% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 2px rgba(248, 250, 109, 0.6));
  }
  100% {
    transform: translateY(-2px) scale(1.15);
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.9));
  }
}

