  :root {
    --primary-gradient: linear-gradient(45deg, #001f3f, #003366); 
    --secondary-gradient: linear-gradient(45deg, #005b96, #001f3f);
    --accent-color: #005b96;
    --dark-color: #001a33;
    --light-color: #f8f9fa;
    --bs-primary-rgb: 0, 31, 63;
    --bs-primary: #001f3f;
    --ai-engine-bg: #0a192f;
    --ai-engine-text: #ccd6f6;
    --ai-engine-accent: #64ffda;
    --ai-engine-card-bg: rgba(10, 25, 47, 0.85);
    --ai-engine-border: rgba(100, 255, 218, 0.1);
  }
  
  body {
    overflow-x: hidden;
  }
  
  .bg-gradient-primary {
    background: var(--primary-gradient);
  }
  
  .btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    position: relative;
    z-index: 1;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 31, 63, 0.3);
    color: #fff;
  }
  
  .btn-gradient:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
  }
  
  .btn-gradient:hover:before {
    opacity: 1;
  }
  
  .hero-section {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('./assets/img/illustrations/hero-pattern.svg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 65%;
    opacity: 0.4;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-headline {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
  }
  
  .hero-subheadline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #445566;
    margin-bottom: 2.5rem;
    max-width: 600px;
  }
  
  .trial-info {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 500;
  }
  
  .feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: rgba(0, 31, 63, 0.1);
    color: #001f3f;
    font-size: 1.75rem;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
  }
  
  .hero-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
  }
  
  .dashboard-container {
    position: relative;
    z-index: 8;
    margin: 0 auto;
    max-width: 480px;
  }
  
  .main-dashboard {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.8);
  }
  
  .floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
  }
  
  .floating-element {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    animation: floatUp 5s ease-in-out infinite alternate;
    opacity: 0.95;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
  }
  
  .floating-element.keytopic {
    top: 0%;
    left: 62%;
    width: 50%;
    z-index: 10;
    animation-delay: 0s;
  }
  
  .floating-element.content-guard {
    bottom: -32%;
    right: -18%;
    width: 50%;
    z-index: 3;
    animation-delay: 2s;
  }
  
  .floating-element.elements {
    top: 85%;
    left: -17%;
    width: 50%;
    z-index: 2;
    animation-delay: 4s;
  }
  
  .platform-integration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 17;
  }
  
  .integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    border: 3px solid rgba(255,255,255,0.9);
    animation: centerPulse 3s ease-in-out infinite;
  }
  
  .integration-center::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
  }
  
  .integration-center i {
    font-size: 2rem;
    color: white;
    animation: iconFloat 2s ease-in-out infinite alternate;
  }
  
  .platform-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
  }
  
  .platform-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
  }
  
  .platform-logo:hover {
    transform: scale(1.25);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  }
  
  .platform-logo svg {
    width: 28px;
    height: 28px;
  }
  
  .platform-logo.facebook {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    animation-delay: 0s;
  }
  
  .platform-logo.linkedin {
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    animation-delay: 0.5s;
  }
  
  .platform-logo.discord {
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #5865f2, #7289da);
    animation-delay: 1s;
  }
  
  .platform-logo.telegram {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0088cc, #29b6f6);
    animation-delay: 1.5s;
  }
  
  .connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    height: 2px;
    border-radius: 1px;
    animation: lineGlow 3s ease-in-out infinite alternate;
  }
  
  .line-1 {
    top: 50%;
    left: 40px;
    right: 40px;
    transform: translateY(-50%);
  }
  
  .line-2 {
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  }
  
  .trusted-brands {
    margin-top: 2.5rem;
  }
  
  .brand-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .brand-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
  }
  
  .brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  
  @keyframes floatUp {
    0% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.9;
    }
    100% {
      transform: translateY(-30px) rotate(3deg);
      opacity: 1;
    }
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes centerPulse {
    0%, 100% {
      transform: translate(-50%, -50%) scale(1);
      box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.05);
      box-shadow: 0 20px 45px rgba(102, 126, 234, 0.6);
    }
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  @keyframes iconFloat {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(-3px);
    }
  }
  
  @keyframes lineGlow {
    0% {
      opacity: 0.3;
      box-shadow: 0 0 5px rgba(102, 126, 234, 0.2);
    }
    100% {
      opacity: 0.8;
      box-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
    }
  }
  
  .person-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .person-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .stats-item {
    position: relative;
    z-index: 1;
  }
  
  .stats-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pricing-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  }
  
  .pricing-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
               var(--primary-gradient) border-box;
    position: relative;
    z-index: 1;
  }
  
  .price-value {
    font-size: 2.5rem;
    font-weight: 800;
  }
  
  .feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }
  
  .feature-list .feature-icon-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 31, 63, 0.1);
    color: #001f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .testimonial-avatar {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  
  .cta-section {
    background: linear-gradient(45deg, #85a9ff, #9880ff);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    padding: 3.5rem 0;
    position: relative;
  }
  
  .cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .footer-section {
    background-color: #001a33;
    color: #94a3b8;
    padding-top: 5rem;
  }
  
  .footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }
  
  .footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
  }
  
  .footer-link:hover {
    color: white;
    transform: translateX(5px);
  }
  
  .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
  }
  
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    padding: 1rem 0;
  }
  
  .navbar-brand-custom {
    display: flex;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
  }
  
  .navbar-brand-custom:hover {
    opacity: 0.9;
  }
  
  .logo-img {
    height: 40px;
    max-width: 100%;
  }
  
  .nav-link-custom {
    font-weight: 600;
    color: #001f3f;
    padding: 0.5rem 1.2rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-link-custom:hover {
    color: #003366;
  }
  
  .nav-link-custom:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: #001f3f;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .nav-link-custom:hover:after {
    transform: scaleX(1);
  }
  
  .btn-outline-primary {
    border-color: #001f3f;
    color: #001f3f;
  }
  
  .btn-outline-primary:hover {
    background-color: #001f3f;
    border-color: #001f3f;
    color: white;
  }
  
  @media (max-width: 991px) {
    .hero-headline {
      font-size: 2.1rem;
    }
    
    .hero-bg {
      background-size: 100%;
      opacity: 0.3;
    }
    
    .stats-number {
      font-size: 2.5rem;
    }
    .hero-section .hero-content {
      padding-top: 8rem; 
    }
    
    .floating-element {
      display: none;
    }
    
    .platform-integration {
      width: 200px;
      height: 200px;
    }
    
    .integration-center {
      width: 60px;
      height: 60px;
    }
    
    .integration-center i {
      font-size: 1.5rem;
    }
    
    .platform-logo {
      width: 40px;
      height: 40px;
    }
    
    .platform-logo svg {
      width: 22px;
      height: 22px;
    }
    
    .platform-logo.facebook,
    .platform-logo.discord {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .platform-logo.linkedin {
      right: -20px;
      transform: translateY(-50%);
    }
    
    .platform-logo.telegram {
      left: -20px;
      transform: translateY(-50%);
    }
    
    .brand-logos {
      justify-content: center;
      gap: 1.5rem;
    }
    
    .brand-logo {
      height: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .logo-img {
      height: 34px;
    }
    
    .nav-link-custom {
      padding: 0.5rem 1rem;
    }
    
    .dashboard-container {
      max-width: 350px;
    }
    
    .platform-integration {
      width: 160px;
      height: 160px;
    }
    
    .integration-center {
      width: 50px;
      height: 50px;
    }
    
    .integration-center i {
      font-size: 1.2rem;
    }
    
    .platform-logo {
      width: 35px;
      height: 35px;
    }
    
    .platform-logo svg {
      width: 20px;
      height: 20px;
    }
    
    .platform-logo.facebook {
      top: -17px;
    }
    
    .platform-logo.discord {
      bottom: -17px;
    }
    
    .platform-logo.linkedin {
      right: -17px;
    }
    
    .platform-logo.telegram {
      left: -17px;
    }
    
    .brand-logo {
      height: 28px;
    }
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease forwards;
  }
  
  .animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
  }
  
  .animate-fade-in-up.delay-1 {
    animation-delay: 0.2s;
  }
  
  .animate-fade-in-up.delay-2 {
    animation-delay: 0.4s;
  }
  
  .animate-fade-in-up.delay-3 {
    animation-delay: 0.6s;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from { 
      opacity: 0;
      transform: translateY(30px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .count-up {
    visibility: hidden;
  }
  
  .count-up.visible {
    visibility: visible;
  }
  
  .fixed-elements-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 999;
  }
  
  .producthunt-badge {
     margin-bottom: 0;
  }
  
  .btn-back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none; 
    align-items: center;
    justify-content: center;
    opacity: 0; 
    transition: all 0.3s ease;
    padding: 0;
    font-size: 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
  }

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

  .dashboard-preview-img {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 1200px) {
    .floating-element.keytopic {
      left: -18%;
      width: 200px;
    }
    
    .floating-element.content-guard {
      right: -12%;
      width: 180px;
    }
    
    .floating-element.elements {
      left: -22%;
      width: 160px;
    }
  }

  @media (max-width: 768px) {
    .hero-content {
      z-index: 5;
    }
    .ai-engine-flow-container {
        flex-direction: column;
    }
    .ai-engine-arrow {
        transform: rotate(90deg) !important;
        margin: 1rem 0 !important;
    }
    .ai-engine-block {
        width: 80% !important;
        margin-bottom: 1rem;
    }
    .ai-engine-benefit-card {
        margin-bottom: 1rem;
    }
  }

  #ai-engine {
    background-color: var(--ai-engine-bg);
    color: var(--ai-engine-text);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #ai-engine::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%; bottom: -50%; left: -50%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.05) 0%, transparent 30%),
                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='%231d2b3f' fill-opacity='0.1'%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");
    animation: bgAnimate 30s linear infinite;
    z-index: 0;
  }
  @keyframes bgAnimate {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
  }

  #ai-engine .container {
      position: relative;
      z-index: 1;
  }
  #ai-engine .section-title {
    color: #fff;
    font-weight: 700;
  }
  #ai-engine .section-subtitle {
    color: var(--ai-engine-text);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
   #ai-engine .text-primary { color: var(--ai-engine-accent) !important; }

  .ai-engine-flow-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 4rem;
  }

  .ai-engine-block {
    background-color: var(--ai-engine-card-bg);
    border: 1px solid var(--ai-engine-border);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    width: 22%;
    box-shadow: 0 0 25px rgba(0,0,0,0.2), 0 0 15px rgba(100, 255, 218, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
  }
  .ai-engine-block:hover {
      transform: translateY(-10px);
      box-shadow: 0 0 35px rgba(100, 255, 218, 0.15), 0 0 20px rgba(100, 255, 218, 0.1);
  }

  .ai-engine-block-icon {
    font-size: 2.5rem;
    color: var(--ai-engine-accent);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(100,255,218,0.1), rgba(100,255,218,0.05));
    line-height: 1;
  }

  .ai-engine-block-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .ai-engine-block-description {
    font-size: 0.8rem;
    color: var(--ai-engine-text);
    opacity: 0.8;
    line-height: 1.5;
  }

  .ai-engine-arrow {
    font-size: 2.5rem;
    color: var(--ai-engine-accent);
    opacity: 0.6;
  }
  .llm-provider-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
  }
  .llm-provider-logo {
    height: 22px;
    max-width: 70px;
    object-fit: contain;
    opacity: 0.8;
    filter: brightness(0) invert(1) grayscale(30%) drop-shadow(0 0 3px rgba(100,255,218,0.3));
    transition: opacity 0.3s ease, filter 0.3s ease;
  }
  .llm-provider-logo:hover {
    opacity: 1;
    filter: brightness(0) invert(1) grayscale(0%) drop-shadow(0 0 5px var(--ai-engine-accent));
  }

  .ai-engine-benefits {
      margin-top: 3rem;
  }
  .ai-engine-benefit-card {
    background-color: var(--ai-engine-card-bg);
    border: 1px solid var(--ai-engine-border);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(8px);
  }
  
  .ai-engine-benefit-icon {
    font-size: 2rem;
    color: var(--ai-engine-accent);
    margin-bottom: 1rem;
    display: inline-block;
  }
  .ai-engine-benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
  }
  .ai-engine-benefit-text {
    font-size: 0.9rem;
    color: var(--ai-engine-text);
    opacity: 0.9;
    line-height: 1.6;
  }
  
    .brand-logo {
    height: 40px;
    opacity: 1 !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: none !important;
  }
  
  .brand-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1.15rem;
    font-weight: 400;
    color: #445566;
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.6;
  }
  
  .trusted-brands {
    margin-top: 2rem;
    max-width: 480px;
  }
  
  .features-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
  }

  .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
  }

  .features-section .container {
    position: relative;
    z-index: 2;
  }
  
  .features-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .features-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(0, 31, 63, 0.08);
    color: #001f3f;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 31, 63, 0.1);
  }
  
  .features-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1d;
    margin-bottom: 1rem;
  }
  
  .features-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    color: #676767;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .main-feature-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
  }

  .main-feature-showcase::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -6rem;
    right: -6rem;
    bottom: -2rem;
    background: #3874ff2e;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
  }

  .main-feature-showcase::after {
    content: '';
    position: absolute;
    top: -3rem;
    left: -3rem;
    right: -3rem;
    bottom: -1rem;
    background: linear-gradient(135deg, #85a9ff 0%, #3874ff00 100% 100%);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: -1;
  }
  
  .feature-content-left {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
  }
  
  .feature-visual-right {
    flex: 1;
    position: relative;
    z-index: 2;
  }
  
  .dashboard-feature-card {
    background: #85a9ff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.08),
      0 8px 25px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    position: relative;
  }

  .dashboard-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 16px;
    z-index: -1;
  }
  
  .dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .dashboard-title i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
  }
  
  .dashboard-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 0.75rem;
  }
  
  .dashboard-description {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #676767;
    margin-bottom: 1rem;
  }
  
  .feature-list-compact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .feature-list-compact li {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
  }
  
  .feature-list-compact li::before {
    content: '✓';
    color: #001f3f;
    font-weight: bold;
    margin-right: 0.5rem;
    flex-shrink: 0;
    font-size: 0.75rem;
  }
  
  .dashboard-preview {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.15),
      0 15px 35px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
  }
  
  .dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .platform-indicators {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.375rem;
  }
  
  .platform-indicator {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
  }
  
  .platform-indicator.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
  }
  
  .platform-indicator.linkedin {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
  }
  
  .view-dashboard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #001f3f;
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .view-dashboard-btn:hover {
    background: #003366;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 31, 63, 0.25);
    color: white;
    text-decoration: none;
  }
  
  .view-dashboard-btn i {
    font-size: 0.75rem;
  }

  .ai-insights-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 50%, #94a3b8 100%);
    position: relative;
    overflow: hidden;
  }

  .ai-insights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #94a3b8 50%, transparent 100%);
  }

  .ai-insights-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 20% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
      radial-gradient(circle at 60% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    pointer-events: none;
  }

  .ai-insights-section .container {
    position: relative;
    z-index: 2;
  }

  .ai-insights-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .ai-insights-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 31, 63, 0.08);
    color: #001f3f;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 31, 63, 0.1);
  }

  .ai-insights-badge i {
    font-size: 0.875rem;
    color: #001f3f;
  }

  .ai-insights-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1d1d1d;
    margin-bottom: 1.5rem;
  }

  .ai-insights-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
  }

  .ai-insights-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 12rem;
    position: relative;
  }

  .ai-insights-showcase::before {
    content: '';
    position: absolute;
    top: -4rem;
    left: -4rem;
    right: -4rem;
    bottom: -4rem;
    background: #9f8fe561;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: -1;
  }

  .ai-insights-visual {
    flex: 1;
    position: relative;
    z-index: 2;
  }

  .ai-insights-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
  }

  .insights-dashboard-preview {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
      0 30px 60px rgba(0, 0, 0, 0.15),
      0 20px 40px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
  }

  .insights-dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ai-badge-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 31, 63, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    backdrop-filter: blur(10px);
  }

  .ai-badge-overlay i {
    font-size: 0.875rem;
  }

  .ai-insights-card {
    background: #9f8fe561;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
      0 25px 50px rgba(0, 0, 0, 0.1),
      0 15px 35px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    backdrop-filter: blur(25px);
    position: relative;
  }

  .ai-insights-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 20px;
    z-index: -1;
  }

  .ai-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .ai-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .ai-card-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #001f3f;
    margin-bottom: 1rem;
  }

  .ai-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
  }

  .ai-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
  }

  .ai-feature-icon {
    width: 24px;
    height: 24px;
    background: #001f3f;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
  }

  .ai-feature-content h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 0.25rem;
  }

  .ai-feature-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
  }

  .try-ai-insights-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #001f3f, #003366);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2);
  }

  

  .try-ai-insights-btn i {
    font-size: 0.875rem;
  }

  @media (max-width: 1199px) {
    .hero-content {
      padding-right: 1rem;
    }
    
    .hero-subheadline {
      max-width: 480px;
    }
    
    .trusted-brands {
      max-width: 450px;
    }
    
    .features-title {
      font-size: 2rem;
    }
    
    .main-feature-showcase {
      gap: 2rem;
    }

    .ai-insights-showcase {
      gap: 3rem;
    }

    .ai-insights-title {
      font-size: 2.25rem;
    }
  }
  
  @media (max-width: 991px) {
    .hero-content {
      padding-right: 0;
      text-align: center;
    }
    
    .hero-subheadline {
      max-width: 100%;
    }
    
    .trusted-brands {
      max-width: 100%;
    }
    
    .brand-logos {
      justify-content: center !important;
    }
    
    .features-section {
      padding: 3rem 0;
    }
    
    .features-header {
      margin-bottom: 2rem;
    }
    
    .features-title {
      font-size: 1.75rem;
    }
    
    .main-feature-showcase {
      flex-direction: column;
      gap: 2rem;
    }

    .main-feature-showcase::before,
    .main-feature-showcase::after {
      left: -1rem;
      right: -1rem;
    }
    
    .feature-content-left {
      max-width: 100%;
      text-align: center;
    }
    
    .dashboard-feature-card {
      text-align: left;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .feature-list-compact {
      grid-template-columns: 1fr;
    }

    .ai-insights-section {
      padding: 4rem 0;
    }

    .ai-insights-showcase {
      flex-direction: column;
      gap: 2rem;
    }

    .ai-insights-showcase::before,
    .ai-insights-showcase::after {
      left: -1rem;
      right: -1rem;
    }

    .ai-insights-content {
      max-width: 100%;
      text-align: center;
    }

    .ai-insights-card {
      text-align: left;
      max-width: 600px;
      margin: 0 auto;
    }

    .ai-insights-title {
      font-size: 2rem;
    }

    .ai-features-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .features-title {
      font-size: 1.5rem;
    }
    
    .features-subtitle {
      font-size: 0.9rem;
    }
    
    .dashboard-feature-card {
      padding: 1.5rem;
    }
    
    .dashboard-title {
      font-size: 1.125rem;
    }
    
    .dashboard-subtitle {
      font-size: 0.9rem;
    }
    
    .main-feature-showcase {
      gap: 1.5rem;
    }

    .ai-insights-section {
      padding: 3rem 0;
    }

    .ai-insights-title {
      font-size: 1.75rem;
    }

    .ai-insights-subtitle {
      font-size: 1rem;
    }

    .ai-insights-card {
      padding: 2rem;
    }

    .ai-card-title {
      font-size: 1.25rem;
    }

    .ai-card-subtitle {
      font-size: 1rem;
    }
  }
      .who-benefits-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      position: relative;
    }

    .who-benefits-header {
      text-align: center;
      margin-bottom: 4rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .who-benefits-title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      color: #1d1d1d;
      margin-bottom: 1rem;
    }

    .who-benefits-subtitle {
      font-size: 1.125rem;
      line-height: 1.6;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .benefit-card {
      border-radius: 24px;
      padding: 0;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      min-height: 400px;
      display: flex;
      flex-direction: column;
    }

    

    .benefit-card.community-builders {
      background: linear-gradient(135deg, #85a9ff 0%, #85a9ff 100%);
    }
    .benefit-card.marketing-agencies {
         background: linear-gradient(135deg, #9f8fe5b3 0%, #9f8fe5b3 100%);
    }

    .benefit-card.network-owners {
          background: linear-gradient(135deg, #14b8a6a8 0%, #14b8a6a8 100%);
    }

    .benefit-card.clients {
          background: linear-gradient(135deg, #ec48998f 0%, #ec48998f 100%);
    }

    .benefit-card-content {
      padding: 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2;
    }

    .benefit-card-header {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .benefit-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1rem;
      font-size: 1.5rem;
      color: white;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .benefit-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }

    .benefit-description {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #000;
      margin-bottom: 1.5rem;
    }

    .benefit-features {
      list-style: none;
      padding: 0;
      margin: 0;
      flex: 1;
    }

    .benefit-features li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .benefit-features li:last-child {
      margin-bottom: 0;
    }

    .feature-bullet {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
      font-size: 0.75rem;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.25);
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .feature-text {
      color: #000;
      font-weight: 500;
      flex: 1;
    }

    .feature-text strong {
      color: #000;
      font-weight: 600;
    }

    .benefit-illustration {
      position: absolute;
      width: 120px;
      height: 120px;
      opacity: 0.15;
      z-index: 1;
    }

    .benefit-card.community-builders .benefit-illustration {
      top: 1rem;
      right: 1rem;
      transform: rotate(15deg);
    }

    .benefit-card.marketing-agencies .benefit-illustration {
      bottom: 1rem;
      left: 1rem;
      transform: rotate(-10deg);
    }

    .benefit-card.network-owners .benefit-illustration {
      top: 1rem;
      left: 1rem;
      transform: rotate(12deg);
    }

    .benefit-card.clients .benefit-illustration {
      bottom: 1rem;
      right: 1rem;
      transform: rotate(-15deg);
    }

    .benefit-illustration svg {
      width: 100%;
      height: 100%;
      fill: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 991px) {
      .who-benefits-section {
        padding: 4rem 0;
      }

      .who-benefits-title {
        font-size: 2rem;
      }

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

      .benefit-card {
        min-height: 350px;
      }

      .benefit-card-content {
        padding: 1.5rem;
      }

      .benefit-illustration {
        width: 100px;
        height: 100px;
      }
    }

    @media (max-width: 768px) {
      .who-benefits-title {
        font-size: 1.75rem;
      }

      .who-benefits-subtitle {
        font-size: 1rem;
      }

      .benefit-card {
        min-height: 320px;
      }

      .benefit-card-content {
        padding: 1.25rem;
      }

      .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
      }

      .benefit-title {
        font-size: 1.125rem;
      }

      .benefit-illustration {
        width: 80px;
        height: 80px;
      }
    }
       .features-grid-section {
      margin-top: 4rem;
      padding: 2rem 0;
    }

    .features-dual-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-top: 3rem;
    }

    .feature-showcase-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(20px);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

   

    .feature-showcase-card.management {
      background: linear-gradient(135deg, rgba(139, 195, 74, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
      border-color: rgba(139, 195, 74, 0.2);
    }

    .feature-showcase-card.optimize {
      background: linear-gradient(135deg, rgba(156, 39, 176, 0.05) 0%, rgba(233, 30, 99, 0.05) 100%);
      border-color: rgba(156, 39, 176, 0.2);
    }

    .feature-badge {
      display: inline-block;
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: 20px;
      margin-bottom: 1.5rem;
      border: 1px solid;
    }

    .feature-badge.management {
      background: rgba(139, 195, 74, 0.1);
      
      border-color: rgba(139, 195, 74, 0.3);
    }

    .feature-badge.optimize {
      background: rgba(156, 39, 176, 0.1);
     
      border-color: rgba(156, 39, 176, 0.3);
    }

    .feature-showcase-title {
      font-size: 1.75rem;
      font-weight: 700;
      color: #1d1d1d;
      margin-bottom: 0.75rem;
      line-height: 1.2;
    }

    .feature-showcase-subtitle {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    
    .feature-showcase-description {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #64748b;
      margin-bottom: 1.5rem;
    }

    .feature-showcase-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
    }

    .feature-showcase-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.75rem;
      font-size: 0.875rem;
      line-height: 1.5;
    }

    .feature-showcase-list li:last-child {
      margin-bottom: 0;
    }

    .feature-check-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      flex-shrink: 0;
      margin-top: 0.125rem;
      font-size: 0.75rem;
      font-weight: 700;
      color: white;
    }

    .feature-check-icon.management {
      background: linear-gradient(135deg, #8bc34a, #4caf50);
    }

    .feature-check-icon.optimize {
      background: linear-gradient(135deg, #9c27b0, #e91e63);
    }

    .feature-text {
      color: #374151;
      font-weight: 500;
      flex: 1;
    }

    .feature-showcase-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      border-radius: 10px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .feature-showcase-btn.management {
      background: linear-gradient(135deg, #8bc34a, #4caf50);
      color: white;
      box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
    }

   

    .feature-showcase-btn.optimize {
      background: linear-gradient(135deg, #9c27b0, #e91e63);
      color: white;
      box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
    }

  

    .feature-image-container {
      position: relative;
      margin-top: 2rem;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-image-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    .policy-violation-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(244, 67, 54, 0.95);
      color: white;
      padding: 0.375rem 0.75rem;
      border-radius: 16px;
      font-size: 0.7rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .download-badge {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: rgba(33, 150, 243, 0.95);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      gap: 0.375rem;
    }

    @media (max-width: 991px) {
      .features-dual-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .feature-showcase-card {
        padding: 1.5rem;
      }

      .feature-showcase-title {
        font-size: 1.5rem;
      }

      .feature-showcase-subtitle {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .features-grid-section {
        margin-top: 2rem;
      }

      .feature-showcase-card {
        padding: 1.25rem;
      }

      .feature-showcase-title {
        font-size: 1.25rem;
      }

      .feature-showcase-description {
        font-size: 0.875rem;
      }
    }
        /* Premium Animation System */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform, opacity;
    }

    .animate-on-scroll.animate-scale {
      transform: scale(0.95) translateY(30px);
      transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.animate-fade {
      transform: translateY(25px);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.animate-stagger-1 {
      transition-delay: 0.15s;
    }

    .animate-on-scroll.animate-stagger-2 {
      transition-delay: 0.3s;
    }

    .animate-on-scroll.animate-stagger-3 {
      transition-delay: 0.45s;
    }

    .animate-on-scroll.animate-stagger-4 {
      transition-delay: 0.6s;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

  



    /* Premium Shimmer Effect for Titles */
    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }
      100% {
        background-position: 200% center;
      }
    }

    .animate-on-scroll.visible .features-title,
    .animate-on-scroll.visible .who-benefits-title {
      background: linear-gradient(
        110deg,
        #1d1d1d 45%,
        #3b82f6 50%,
        #1d1d1d 55%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 3s ease-in-out infinite;
      animation-delay: 0.5s;
    }

    /* Sophisticated Badge Pulse */
    @keyframes subtlePulse {
      0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 31, 63, 0.3);
      }
      50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(0, 31, 63, 0);
      }
    }

    .animate-on-scroll.visible .ai-badge-overlay,
    .animate-on-scroll.visible .feature-badge {
      animation: subtlePulse 4s ease-in-out infinite;
      animation-delay: 1s;
    }

    /* Progressive List Animation */
    .animate-on-scroll.visible .benefit-features li,
    .animate-on-scroll.visible .feature-list-compact li,
    .animate-on-scroll.visible .ai-features-grid .ai-feature-item {
      opacity: 0;
      transform: translateY(20px);
      animation: progressiveSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes progressiveSlide {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(1),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(1),
    .animate-on-scroll.visible .ai-features-grid .ai-feature-item:nth-child(1) {
      animation-delay: 0.2s;
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(2),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(2),
    .animate-on-scroll.visible .ai-features-grid .ai-feature-item:nth-child(2) {
      animation-delay: 0.35s;
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(3),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(3),
    .animate-on-scroll.visible .ai-features-grid .ai-feature-item:nth-child(3) {
      animation-delay: 0.5s;
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(4),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(4),
    .animate-on-scroll.visible .ai-features-grid .ai-feature-item:nth-child(4) {
      animation-delay: 0.65s;
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(5),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(5) {
      animation-delay: 0.8s;
    }

    .animate-on-scroll.visible .benefit-features li:nth-child(6),
    .animate-on-scroll.visible .feature-list-compact li:nth-child(6) {
      animation-delay: 0.95s;
    }

    /* Premium Icon Animation */
    @keyframes iconSparkle {
      0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: brightness(1);
      }
      50% { 
        transform: rotate(180deg) scale(1.1);
        filter: brightness(1.2);
      }
    }

    .animate-on-scroll.visible .ai-card-icon,
    .animate-on-scroll.visible .benefit-icon {
      animation: iconSparkle 3s ease-in-out;
      animation-delay: 0.8s;
    }




  
    /* Testimonial Card Enhancement */
    .animate-on-scroll.visible .person-card {
      position: relative;
      overflow: hidden;
    }

    .animate-on-scroll.visible .person-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      animation: cardSweep 3s ease-in-out;
      animation-delay: 1.5s;
    }

    @keyframes cardSweep {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    /* Button Enhancement */
    .animate-on-scroll.visible .btn {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .animate-on-scroll.visible .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.6s ease;
    }

    /* Sophisticated Parallax Effect */
    .animate-on-scroll.visible .feature-showcase-card,
    .animate-on-scroll.visible .benefit-card {
      transform-style: preserve-3d;
    }

   

    /* Mobile Optimizations */
    @media (max-width: 768px) {
      .animate-on-scroll {
        transform: translateY(25px);
        transition-duration: 0.8s;
      }

      .animate-on-scroll.animate-scale {
        transform: scale(0.98) translateY(20px);
      }

      
    }

    /* Reduced Motion Support */
    @media (prefers-reduced-motion: reduce) {
      .animate-on-scroll,
      .animate-on-scroll * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }


      .text-slate-400 {
    color: #94a3b8 !important;
  }
  .text-sky-600 {
    color: #0284c7 !important;
  }
  .text-green-500 {
    color: #22c55e !important;
  }
  .table-bordered,
  .table-bordered > :not(caption) > * > * {
    border-color: #e2e8f0 !important;
  }
  .shadow-sm {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  }
  .rounded-3 {
    border-radius: 12px !important;
  }
  @media (max-width: 768px) {
    table {
      min-width: 900px !important;
    }
    td:first-child, th:first-child {
      min-width: 120px !important;
    }
  }