/* ===== FEATURE PAGE STYLING ===== */

/* Core Feature Page Styling */
:root {
  --primary: #ffffff;
  --secondary: #bdbdbd;
  --accent: #9aa0a6;
  --light: #ededef;
  --dark-1: #9aa0a6;
  --dark-2: #4d4d4d;
  --dark-3: #333333;
  --dark-bg: #0a0a0a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: var(--light);
  background-color: #0a0a0a;
  font-family: 'Inter', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6, .logo, .nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

/* Feature Pages Specific Styles */

/* Fix container width */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero section styling with background banner */
.feature-hero {
    padding: 120px 0 80px;
    position: relative;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
    animation-delay: 0.1s;
    overflow: hidden;
}

.feature-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: 0.3;
}

.feature-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #ffffff;
    display: inline-block;
}

.feature-hero .lead {
    font-size: 22px;
    line-height: 1.7;
    max-width: 800px;
}

/* Section spacing and dividers */
.why-choose-section, .feature-details, .case-study {
    padding: 100px 0;
    position: relative;
    background: white !important;
}

.why-choose-section::after, .feature-details::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 208, 255, 0.2), transparent);
}

/* Detailed intro styling */
.detailed-intro {
  max-width: 1400px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--light);
  position: relative;
  padding: 40px;
  background: rgba(1, 208, 255, 0.03);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(1, 208, 255, 0.25);
  border: 1px solid #01d0ff;
  overflow: hidden;
}

.detailed-intro:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(1, 208, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.detailed-intro p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 1100px; /* Wider paragraph */
    margin: 0 auto 20px;
    opacity: 0.9;
}

.detailed-intro p:last-child {
    margin-bottom: 0;
}

/* Section titles */
.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-intro {
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light);
    opacity: 0.9;
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    box-shadow: none;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
    opacity: 0;
    animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
    animation-delay: 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.feature-card h3 {
    color: #ffffff !important;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card .icon {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 18px;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    position: relative;
}

.feature-card .icon::after { display: none; }

/* Animation for icon pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Benefits container */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.2s ease;
}

.benefit-item:hover { transform: translateY(-4px); }

.benefit-icon {
    font-size: 28px;
    color: #ffffff;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Visualization section */
.visualization {
    padding: 100px 0;
    background: linear-gradient(to bottom, #050505, #080808);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content {
    flex: 1;
}

.image {
    flex: 1;
}

.image img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(1, 208, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-list {
    padding-left: 20px;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 12px;
}

/* Case study section */
.case-study {
    background: linear-gradient(to bottom, #080808, #0a0a0a);
}

.case-study h2 {
    text-align: center;
    margin-bottom: 50px;
}

.quote blockquote {
    font-size: 22px;
    padding-left: 30px;
    border-left: 4px solid var(--primary);
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

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

.number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.label {
    font-size: 18px;
    opacity: 0.8;
}

/* CTA section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                radial-gradient(circle at center, rgba(1, 208, 255, 0.2), transparent 70%);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Button styling without underline */
.cta-section .btn-demo {
    text-decoration: none;
    background: #ffffff;
    color: #000;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    padding: 12px 26px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-section .btn-demo:hover { background: #e9ecef; transform: translateY(-1px); box-shadow: none; text-decoration: none; }

/* Responsive styles */
@media (max-width: 992px) {
    .split-content {
        flex-direction: column;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-hero h1 {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .detailed-intro {
        padding: 30px 20px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 100px 0;
  position: relative;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 208, 255, 0.2), transparent);
}

.why-choose-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), #4feaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.why-choose-section p {
  font-size: 22px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  color: black;
  opacity: 0.9;
}

.why-choose-section .benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-choose-section .benefit-item {
  display: flex;
  align-items: flex-start;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(1, 208, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.why-choose-section .benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 208, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.why-choose-section .benefit-icon {
  font-size: 28px;
  color: var(--primary);
  margin-right: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: rgba(1, 208, 255, 0.08);
  flex-shrink: 0;
}

.why-choose-section .benefit-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.why-choose-section .benefit-content p {
  color: var(--light);
  opacity: 0.9;
}

/* Feature Details Section */
.feature-details {
  padding: 80px 0;
  background-color: #080808;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: rgba(20, 30, 40, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(1,208,255,0.10), 0 1.5px 8px rgba(0,0,0,0.25);
  border-radius: 18px;
  border: 1.5px solid rgba(1,208,255,0.13);
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
  animation-delay: 0.5s;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(1,208,255,0.18), 0 2px 12px rgba(0,0,0,0.30);
  transform: translateY(-8px) scale(1.025);
}

.feature-card .icon {
  font-size: 38px;
  color: var(--accent);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(1,208,255,0.10));
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  position: relative;
}

.feature-card .icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid rgba(1, 208, 255, 0.3);
    animation: pulse 2s infinite;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 24px;
}

.feature-card p {
  color: var(--light);
  opacity: 0.9;
  line-height: 1.6;
}

.feature-card.wide {
  grid-column: span 2;
}

/* Case Study Section */
.case-study {
  padding: 80px 0;
  background-color: #080808;
  border-top: 1px solid rgba(1, 208, 255, 0.1);
  border-bottom: 1px solid rgba(1, 208, 255, 0.1);
}

.study-content {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.quote {
  flex: 2;
}

/* Fix for the blockquote styling */
.quote blockquote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--light);
  padding-left: 30px;
  position: relative;
  font-style: italic;
  opacity: 0.9;
}

.quote blockquote:before {
  content: "\201C"; /* Using the correct escape sequence for the quote character */
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
}

.quote cite {
  color: var(--primary);
  font-style: normal;
  display: block;
  margin-top: 15px;
  font-weight: 500;
}

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

.stat-item {
  text-align: center;
  background: rgba(1, 208, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
}

.stat-item .number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.stat-item .label {
  color: var(--light);
  font-size: 16px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-header h2 {
  font-size: 42px;
  color: black !important;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 10px rgba(1, 208, 255, 0.3);
}

.section-header::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), transparent);
  margin: 15px auto 0;
}

.section-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: black;
  opacity: 0.9;
}


/* Visualization Section */
.visualization {
  padding: 80px 0;
  background-color: #050505;
}

.visualization h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 32px;
}

.visualization p {
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.visualization .feature-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.visualization .feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--light);
}

.visualization .feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
}

.visualization .split-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.visualization .content {
  flex: 1;
}

.visualization .image {
  flex: 1;
}

.visualization .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(1, 208, 255, 0.2);
}

/* Dashboard Preview */
.dashboard-preview {
  padding: 80px 0;
  background-color: #080808;
  border-top: 1px solid rgba(1, 208, 255, 0.1);
  border-bottom: 1px solid rgba(1, 208, 255, 0.1);
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.dashboard-item {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(1, 208, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.dashboard-item:hover {
  transform: translateY(-10px);
  border-color: rgba(1, 208, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dashboard-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dashboard-item h3 {
  color: var(--primary);
  font-size: 20px;
  margin-bottom: 10px;
}

.dashboard-item p {
  color: var(--light);
  opacity: 0.8;
}

/* ROI Calculator */
.roi-calculator {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.calculator-form {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(1, 208, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
}

.calculator-form h3 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--light);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(1, 208, 255, 0.15);
  border-radius: 6px;
  color: var(--light);
  font-size: 16px;
}

.savings-amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 10px;
  text-align: center;
}

#savings-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 208, 255, 0.15);
}

.hidden {
  display: none;
}

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

.stats-list li {
  margin-bottom: 15px;
  color: var(--light);
  font-size: 18px;
}

.stats-list .highlight {
  color: var(--accent);
  font-weight: 700;
}

/* Roadmap Section */
.roadmap {
  padding: 80px 0;
  background-color: #0a0a0a;
}

.roadmap-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--light);
  font-size: 18px;
  opacity: 0.9;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline:before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(1, 208, 255, 0.2);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-date {
  width: 80px;
  padding-right: 30px;
  font-weight: 600;
  color: var(--primary);
  text-align: right;
  font-size: 17px;
  padding-top: 3px;
}

.timeline-content {
  flex: 1;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(1, 208, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin-left: 30px;
  position: relative;
}

.timeline-content:before {
  content: '';
  position: absolute;
  left: -36px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid #0a0a0a;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 22px;
}

.timeline-content p {
  color: var(--light);
  opacity: 0.8;
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.badge-current {
  background-color: rgba(1, 208, 255, 0.2);
  color: var(--primary);
}

.badge-upcoming {
  background-color: rgba(245, 166, 12, 0.2);
  color: var(--accent);
}

.badge-planned {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.feature-request {
  text-align: center;
  padding: 60px 0;
  background-color: #080808;
  border-top: 1px solid rgba(1, 208, 255, 0.1);
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .feature-hero h1 {
    font-size: 36px;
  }
  
  .study-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .timeline-date {
    width: 60px;
    font-size: 15px;
  }
  
  .roadmap-timeline:before {
    left: 60px;
  }
  
  .timeline-content:before {
    left: -26px;
  }
  
  .feature-card.wide {
    grid-column: span 1;
  }
  
  .visualization .split-content {
    flex-direction: column;
  }
  
  .visualization .content,
  .visualization .image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-hero {
    padding: 80px 0 40px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-date {
    width: auto;
    text-align: left;
    padding-left: 60px;
    margin-bottom: 15px;
    padding-right: 0;
  }
  
  .timeline-content {
    margin-left: 60px;
  }
  
  .roadmap-timeline:before {
    left: 20px;
  }
  
  .timeline-content:before {
    left: -46px;
  }


  
  .container {
    width: 100%;
    max-width: 1400px; /* Match the hero-grid-container width */
    margin: 0 auto;
    padding: 0 30px; /* Match the hero-grid-container padding */
  }
  
  /* Header & Navigation */
  header {
    background-color: #0a0a0a; /* Darker background to match body */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(1, 208, 255, 0.1);
  }
  
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-left: -5px; /* Slight adjustment to align with hero text */
  }
  
  .logo img {
    height: 70px; /* Adjusted for better proportions */
    width: auto;
  }
  
  /* Make nav links more futuristic */
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  
  /* Remove the underline animation */
  .nav-links a::after {
    display: none;
  }
  
  /* Keep the hover state */
  .nav-links a:hover {
    color: var(--accent);
  }
  
  /* Fix the assessment button alignment */
  .nav-links li:last-child {
    display: flex;
    align-items: center;
  }
  
  .nav-links .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  
  /* Specific fix for the demo button */
  .btn-demo {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white !important;
    min-width: 140px;
  }
  
  .btn-demo:hover {
    background-color: transparent;
    color: var(--accent);
  }
  
  .btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark-3);
  }
  
  .btn-accent:hover {
    background-color: transparent;
    color: var(--accent);
  }
  
  /* Updated Hero Section with Two-Column Layout */
  .hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -90px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
      url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2301d0ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
      radial-gradient(circle at 50% 50%, #1a1a1a 0%, #111111 100%);
    opacity: 1;
    z-index: 0;
  }
  
  /* New grid layout */
  .hero-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  
  .hero-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
  }
  
  .hero-image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  /* Glow effect similar to the reference */
  .glow-effect {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero-image {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
  }
  
      /* Footer */
      footer {
        background-color: #050505;
        color: var(--light);
        padding: 80px 0 30px;
        border-top: 1px solid rgba(1, 208, 255, 0.1);
      }
      
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 50px;
        margin-bottom: 60px;
      }
      
      .footer-column {
        flex: 1;
        min-width: 250px;
      }
      
      .footer-column h3 {
        font-size: 22px;
        margin-bottom: 25px;
        color: var(--accent);
        position: relative;
        padding-bottom: 12px;
      }
      
      .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--primary);
      }
      
      .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .footer-column ul li {
        margin-bottom: 12px;
      }
      
      .footer-column a {
        color: var(--light);
        text-decoration: none;
        transition: color 0.3s;
        opacity: 0.8;
      }
      
      .footer-column a:hover {
        color: var(--primary);
        opacity: 1;
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(1, 208, 255, 0.1);
        color: var(--light);
        opacity: 0.7;
      }
  
  /* Updated typography */
  .hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: left;
  }
  
  .accent-text {
    color: var(--accent);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--light);
    opacity: 0.9;
    max-width: 600px;
    text-align: left;
    font-family: 'Kodchasan', sans-serif;
    font-weight: 300;
  }
  
  /* Button group */
  .hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark-3);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Syne', sans-serif;
  }
  
  .btn:hover {
    background-color: transparent;
    color: var(--primary);
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark-3);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--dark-3);
  }
  
  /* Make responsive */
  @media (max-width: 1200px) {
    .hero-title {
      font-size: 3.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .hero-grid-container {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 80px 20px 40px;
    }
    
    .hero-text-column {
      order: 2;
      text-align: center;
      align-items: center;
      padding-right: 0;
    }
    
    .hero-image-column {
      order: 1;
      margin-top: 60px;
    }
    
    .hero-title {
      font-size: 3.2rem;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      text-align: center;
    }
    
    /* Hide extra h2 elements in hero that were added for SEO */
    .hero-text-column h2 {
      display: none;
    }
    
    /* Adjust buttons for mobile */
    .hero-buttons {
      justify-content: center;
    }
    
    /* Make benefit cards stack */
    .benefits {
      grid-template-columns: 1fr;
    }
    
    /* Adjust workflow steps for mobile */
    .workflow-steps {
      flex-direction: column;
    }
    
    .workflow-step {
      flex-direction: column;
      text-align: center;
      margin-bottom: 40px;
    }
    
    .workflow-icon {
      margin-right: 0;
      margin-bottom: 20px;
    }
    
    .workflow-connector {
      display: none;
    }
    
    /* Make features stack on mobile */
    .features {
      grid-template-columns: 1fr;
    }
    
    /* Adjust pricing for mobile */
    .pricing-container {
      flex-direction: column;
    }
    
    .pricing-info, .trial-info {
      max-width: 100%;
    }
    
    /* Make footer stack on mobile */
    .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 767px) {
    /* Mobile navigation */
    .navbar {
      flex-direction: column;
      padding: 15px 0 5px;
    }
    
    .nav-links {
      flex-direction: column;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }
    
    .nav-links.active {
      max-height: 500px;
    }
    
    .nav-links li {
      margin: 10px 0;
      text-align: center;
    }
    
    /* Add hamburger menu */
    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      position: absolute;
      top: 25px;
      right: 20px;
    }
    
    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary);
      border-radius: 3px;
      transition: all 0.3s;
    }
    
    .menu-toggle.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Further adjust hero section for small screens */
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    /* Adjust image size for mobile */
    .hero-image {
      max-height: 300px;
    }
    
    /* Center the FAQ categories */
    .faq-categories {
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .faq-category {
      margin-bottom: 10px;
      font-size: 14px;
      padding: 6px 15px;
    }
    
    /* Simplify contact form */
    .contact-form form {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 15px;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .hero {
      margin-top: -70px;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-buttons {
      flex-direction: column;
      width: 100%;
    }
    
    .hero-buttons .btn {
      width: 100%;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .benefit-card, .feature {
      padding: 20px;
    }
  }
  
  
  /* Sections */
  section {
    padding: 100px 0;
    position: relative;
  }
  
  section:nth-child(odd) {
    background-color: black; /* Slightly lighter black for odd sections */
  }
  
  section:nth-child(even) {
    background-color: white; /* Deeper black for even sections */
  }
  
  /* Section header styling */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }
  
  .section-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(1, 208, 255, 0.3);
  }
  
  .section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), transparent);
    margin: 15px auto 0;
  }
  
  .section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light);
    opacity: 0.9;
  }
  
  /* Add subtle section separators */
  section:not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 208, 255, 0.2), transparent);
  }
  
  /* Benefits Section */
  .benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  
  .benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(1, 208, 255, 0.15);
    position: relative;
    overflow: hidden;
  }
  
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-15px);
    border-color: rgba(1, 208, 255, 0.3);
  }
  
  .benefit-card:hover::before {
    transform: scaleX(1);
  }
  
  .benefit-card i {
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), #d48c0a); /* Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  
  .benefit-card:hover i {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #f9c045, var(--accent)); /* Lighter orange gradient on hover */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .benefit-card h3 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: 24px;
  }
  
  .benefit-card p {
    color: var(--light);
    opacity: 0.9;
  }
  
  /* How It Works Section */
  .steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    counter-reset: step-counter;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-left: 90px;
    margin-bottom: 40px;
  }
  
  .step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--dark-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Syne', sans-serif;
    box-shadow: 0 5px 15px rgba(1, 208, 255, 0.3);
  }
  
  .step h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 24px;
  }
  
  .step p {
    color: var(--light);
    opacity: 0.9;
  }
  
  /* Features Section */
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
  }
  
  .feature {
    flex: 1;
    min-width: 320px;
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(1, 208, 255, 0.15);
    transition: all 0.3s;
  }
  
  .feature:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 208, 255, 0.3);
  }
  
  .feature h3 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 24px;
  }
  
  .feature h3 i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 28px;
  }
  
  .feature ul {
    list-style-type: none;
    padding-left: 20px;
  }
  
  .feature ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: var(--light);
    opacity: 0.9;
  }
  
  .feature ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
  }
  
  /* Enhanced Pricing Section */
  .pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .pricing-info, .trial-info {
    background-color: rgba(15, 15, 15, 0.7);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(1, 208, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .pricing-header, .trial-header {
    margin-bottom: 30px;
    position: relative;
  }
  
  .pricing-header h3, .trial-header h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .trial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .trial-badge {
    background-color: var(--accent);
    color: #000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
  }
  
  .pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }
  
  .pricing-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
    margin-top: 3px;
  }
  
  .pricing-cta, .trial-info a.btn {
    margin-top: auto;
    text-align: center;
  }
  
  .trial-benefits {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
  }
  
  .trial-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .trial-benefit i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .trial-info p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  @media (max-width: 992px) {
    .pricing-container {
      grid-template-columns: 1fr;
    }
    
    .trial-benefits {
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .trial-benefit {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .pricing-info, .trial-info {
      padding: 30px;
    }
  }
  
  /* Contact Form */
  .contact-form {
    max-width: 650px;
    margin: 0 auto;
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(1, 208, 255, 0.15);
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--light);
    font-size: 17px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 14px;
    background-color: var(--dark-2);
    border: 1px solid rgba(1, 208, 255, 0.2);
    border-radius: 6px;
    font-size: 16px;
    color: var(--light);
    transition: all 0.3s;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 208, 255, 0.2);
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  button[type="submit"] {
    background-color: var(--primary);
    color: var(--dark-3);
    border: 2px solid var(--primary);
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Syne', sans-serif;
  }
  
  button[type="submit"]:hover {
    background-color: transparent;
    color: var(--primary);
  }
  
  /* Footer */
  footer {
    background-color: #050505;
    color: var(--light);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(1, 208, 255, 0.1);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--accent);
    position: relative;
    padding-bottom: 12px;
  }
  
  .footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 12px;
  }
  
  .footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
  }
  
  .footer-column a:hover {
    color: var(--primary);
    opacity: 1;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(1, 208, 255, 0.1);
    color: var(--light);
    opacity: 0.7;
  }
  
  .social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  
  .social-links a {
    color: var(--light);
    font-size: 22px;
    transition: all 0.3s;
    opacity: 0.8;
  }
  
  .social-links a:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateY(-3px);
  }
  
  /* About Section Enhancements */
  .about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
  }
  
  .about-image-container {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  }
  
  .about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 208, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(1, 208, 255, 0.1) 50%, rgba(1, 208, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 1;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: block;
  }
  
  .about-content {
    flex: 1;
    min-width: 300px;
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(1, 208, 255, 0.15);
    position: relative;
  }
  
  .about-content h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
  }
  
  .about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 30px;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 120px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid rgba(1, 208, 255, 0.2);
    transition: all 0.3s;
  }
  
  .stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(1, 208, 255, 0.1);
    border-color: rgba(1, 208, 255, 0.2);
  }
  
  .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
  }
  
  .stat-label {
    font-size: 14px;
    color: var(--light);
    margin-top: 8px;
    opacity: 0.9;
  }
  
  /* How It Works Section Enhancements */
  .workflow-container {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .workflow-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(1, 208, 255, 0.15);
    transition: all 0.3s;
  }
  
  .workflow-step:hover {
    transform: translateX(10px);
    border-color: rgba(1, 208, 255, 0.3);
  }
  
  .workflow-icon {
    position: relative;
    background-color: rgba(15, 15, 15, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    border: 2px solid var(--accent);
  }
  
  .step-number {
    position: relative;
    top: auto;
    right: auto;
    background-color: var(--accent);
    color: var(--dark-3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  }
  
  .workflow-content {
    flex: 1;
  }
  
  .workflow-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .workflow-connector {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-left: 50px;
    margin-bottom: 10px;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 992px) {
    .about-wrapper {
      flex-direction: column;
    }
    
    .about-image, .about-content {
      min-width: 100%;
    }
    
    .workflow-step {
      padding: 25px;
    }
  }
  
  @media (max-width: 768px) {
    .workflow-step {
      flex-direction: column;
    }
    
    .workflow-icon {
      margin-right: 0;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
    }
    
    .workflow-connector {
      margin-left: 20px;
    }
    
    .about-stats {
      flex-direction: column;
      gap: 15px;
    }
    
    .stat-item {
      min-width: 100%;
    }
  }
  
  /* New About Section Two-Column Layout */
  .about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
  }
  
  .about-image-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-img {
    max-width: 100%;
    border-radius: 10px;
    /*
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(1, 208, 255, 0.2);
    */
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .about-img:hover {
    transform: scale(1.02);
  }
  
  .about-content-column {
    background-color: rgba(15, 15, 15, 0.7); /* Darker card backgrounds */
  /*  padding: 40px; */
    border-radius: 15px;
  /*  
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 1px solid rgba(1, 208, 255, 0.1);
  */
    position: relative;
  }
  
  .about-content-column h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-content-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
  }
  
  /* Media queries for responsive design */
  @media (max-width: 992px) {
    .about-columns {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .about-image-column {
      order: 1;
    }
    
    .about-content-column {
      order: 2;
    }
  }
  
  /* Add back the subtle grid line in header */
  .navbar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(1, 208, 255, 0.3), transparent);
  }

  /* Add these styles for the enhanced FAQ section */
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq-category {
    padding: 8px 20px;
    background: rgba(1, 208, 255, 0.1);
    border: 1px solid rgba(1, 208, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .faq-category:hover, .faq-category.active {
    background: rgba(1, 208, 255, 0.2);
  }

  .faq-item {
    background: rgba(15, 15, 15, 0.5);
    border: 1px solid rgba(1, 208, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
  }

  .faq-item:hover {
    border-color: rgba(1, 208, 255, 0.3);
  }

  .faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Syne', sans-serif;
  }

  .faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s;
  }

  .faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
  }

  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 1.6;
    opacity: 0;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    opacity: 1;
  }

  /* Fix for empty space in hero section on mobile */
  @media (max-width: 992px) {
    .hero {
      min-height: auto;
      height: auto;
      padding: 120px 0 60px;
    }
    
    .hero-grid-container {
      grid-template-columns: 1fr;
      width: 100%;
      max-width: 100%;
      padding: 0 20px;
      gap: 10px;
    }
    
    .hero-image-column {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      overflow: hidden;
    }
    
    .hero-image {
      width: 100%;
      max-width: 350px;
      max-height: 350px;
      margin: 0 auto;
      display: block;
    }
    
    .glow-effect {
      width: 250px;
      height: 250px;
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 100px 0 40px;
    }
    
    .hero-image {
      max-width: 280px;
      max-height: 280px;
    }
  }

  /* Add this CSS to your existing styles */
  .form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: none;
  }

  .form-message.success {
    background-color: rgba(0, 200, 81, 0.15);
    border: 1px solid rgba(0, 200, 81, 0.3);
    color: #00c851;
  }

  .form-message.error {
    background-color: rgba(255, 65, 54, 0.15);
    border: 1px solid rgba(255, 65, 54, 0.3);
    color: #ff4136;
  }

  .form-loading {
    display: none;
    text-align: center;
    padding: 20px;
  }

  .form-loading i {
    animation: spin 1s infinite linear;
    font-size: 24px;
    color: var(--primary);
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Updated Scroll indicator styling for better centering and visibility */
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    opacity: 0.7;
    transition: opacity 0.3s;
    animation: bounce 2s infinite;
    z-index: 10;
    width: auto;
    text-align: center;
  }

  .scroll-indicator:hover {
    opacity: 1;
  }

  .scroll-indicator span {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .scroll-indicator i {
    font-size: 18px;
    display: block;
    margin: 0 auto;
  }

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

  /* Hide scroll indicator on mobile */
  @media (max-width: 992px) {
    .scroll-indicator {
      display: none;
    }
    
    /* Fix for empty space in hero section on mobile */
    .hero {
      min-height: auto;
      height: auto;
      padding: 120px 0 60px;
      margin-top: -90px; /* Keep consistent with desktop */
    }
  }

  @media (max-width: 480px) {
    .hero {
      padding: 100px 0 40px;
    }
  }

  /* Multi-Step Form Styles */
  .multi-step-form-container {
    max-width: 750px;
    margin: 0 auto;
    background-color: rgba(15, 15, 15, 0.7);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(1, 208, 255, 0.15);
    overflow: hidden;
    position: relative;
  }

  .form-progress-container {
    padding: 15px 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(1, 208, 255, 0.1);
  }

  .form-progress-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
  }

  .form-progress-indicator {
    height: 100%;
    background-color: var(--primary);
    width: 7.7%; /* 1/13 for first step */
    transition: width 0.4s ease;
  }

  .form-step-counter {
    text-align: center;
    font-size: 14px;
    color: var(--light);
    opacity: 0.7;
    margin-top: 8px;
    font-family: 'Syne', sans-serif;
  }

  .multi-step-form {
    position: relative;
    overflow: hidden;
    min-height: 400px;
  }

  .form-step {
    padding: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.4s ease-in-out;
  }

  .form-step.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
  }

  .step-question {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
  }

  .step-subtext {
    color: var(--light);
    opacity: 0.8;
    margin-top: -15px;
    margin-bottom: 20px;
    font-style: italic;
  }

  .step-input {
    margin-bottom: 30px;
  }

  .step-input input[type="text"],
  .step-input input[type="email"],
  .step-input input[type="tel"],
  .step-input textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(1, 208, 255, 0.2);
    border-radius: 8px;
    font-size: 17px;
    color: var(--light);
    transition: all 0.3s;
  }

  .step-input input:focus,
  .step-input textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 208, 255, 0.2);
  }

  .step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }

  .radio-options,
  .checkbox-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .radio-option,
  .checkbox-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(1, 208, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
  }

  .radio-option:hover,
  .checkbox-option:hover {
    background: rgba(1, 208, 255, 0.05);
    border-color: rgba(1, 208, 255, 0.3);
  }

  .radio-option input[type="radio"],
  .checkbox-option input[type="checkbox"] {
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--accent);
    width: 20px;
    height: 20px;
  }

  .radio-option label,
  .checkbox-option label {
    font-size: 17px;
    color: var(--light);
    cursor: pointer;
    flex: 1;
  }

  .other-option {
    flex-wrap: wrap;
  }

  .other-input {
    margin-top: 10px;
    margin-left: 35px;
    flex-basis: 100%;
  }

  .thank-you-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
  }

  .thank-you-content {
    max-width: 500px;
    margin: 0 auto;
  }

  .thank-you-content i {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 20px;
  }

  .thank-you-content h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
  }

  .thank-you-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light);
  }

  .thank-you-content .btn {
    margin-top: 10px;
  }

  /* Button styling specific to form */
  .multi-step-form .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Syne', sans-serif;
    border: 2px solid transparent;
    font-size: 15px;
  }

  .multi-step-form .btn-primary {
    background-color: var(--primary);
    color: var(--dark-3);
    border-color: var(--primary);
  }

  .multi-step-form .btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
  }

  .multi-step-form .btn-prev {
    background-color: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .multi-step-form .btn-prev:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
  }

  .multi-step-form .btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark-3);
  }

  .multi-step-form .btn-accent:hover {
    background-color: transparent;
    color: var(--accent);
  }

  .multi-step-form .btn-next,
  .multi-step-form .btn-submit {
    min-width: 120px;
  }

  /* Responsive styles for the form */
  @media (max-width: 768px) {
    .multi-step-form-container {
      border-radius: 10px;
    }
    
    .form-step {
      padding: 30px 20px;
    }
    
    .step-question {
      font-size: 22px;
      margin-bottom: 20px;
    }
    
    .step-navigation {
      margin-top: 30px;
    }
    
    .multi-step-form .btn {
      padding: 10px 16px;
      font-size: 14px;
    }
    
    .radio-option, .checkbox-option {
      padding: 10px 12px;
    }
    
    .thank-you-content i {
      font-size: 50px;
    }
    
    .thank-you-content h3 {
      font-size: 26px;
    }
    
    .thank-you-content p {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .form-step {
      padding: 25px 15px;
    }
    
    .step-question {
      font-size: 20px;
    }
    
    .step-navigation {
      flex-direction: column;
      gap: 10px;
    }
    
    .multi-step-form .btn {
      width: 100%;
    }
    
    .step-navigation .btn-prev {
      order: 2;
    }
    
    .step-navigation .btn-next,
    .step-navigation .btn-submit {
      order: 1;
    }
  }

  .section-intro {
    max-width: 750px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--light);
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .section-intro {
      padding: 0 15px;
      font-size: 15px;
    }
  }

  .footer-email {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-email:hover {
    color: var(--accent);
  }

  /* Validation error message styles */
  .input-error-message {
    color: #ff4136;
    font-size: 14px;
    margin-top: 5px;
    padding-left: 5px;
    animation: fadeIn 0.3s;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Add these styles to the form inputs for better validation visual feedback */
  .step-input input:invalid:not(:placeholder-shown) {
    border-color: #ff4136;
  }

  .step-input input:valid:not(:placeholder-shown) {
    border-color: rgba(0, 200, 81, 0.4);
  }

  .input-hint {
    display: block;
    color: var(--light);
    opacity: 0.7;
    font-size: 13px;
    margin-top: 5px;
    font-style: italic;
  }

  /* Update icon styling for all feature pages */
  .feature h3 i,
  .benefit-icon i,
  .feature-card .icon i,
  .workflow-icon i,
  .capability-item i {
    background: linear-gradient(135deg, var(--accent), #d48c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  /* Update hover state for icons */
  .feature:hover h3 i,
  .benefit-item:hover .benefit-icon i,
  .feature-card:hover .icon i,
  .workflow-step:hover .workflow-icon i,
  .capability-item:hover i {
    background: linear-gradient(135deg, #f9c045, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Ensure icon containers maintain transparency */
  .feature-card .icon,
  .benefit-icon,
  .workflow-icon {
    background: rgba(245, 166, 12, 0.1);
  }

  /* Update icon container hover states */
  .feature-card:hover .icon,
  .benefit-item:hover .benefit-icon,
  .workflow-step:hover .workflow-icon {
    background: rgba(245, 166, 12, 0.15);
  }

/* Enhanced Why Section Styling - Completely Redesigned - Modern Showcase Layout */
/* Modern Insight Showcase Section */
.why-section-enhanced {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.why-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(1, 208, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(245, 166, 12, 0.06) 0%, transparent 40%),
    linear-gradient(45deg, transparent 30%, rgba(1, 208, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.why-section-enhanced .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
  text-align: center;
}

.why-section-enhanced .section-header h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, #ffffff 0%, #01d0ff 30%, #f5a60c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  position: relative;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.why-section-enhanced .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, #01d0ff, #f5a60c);
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(1, 208, 255, 0.3);
}

.why-section-enhanced .section-header p {
  font-size: 1.4rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Insight Showcase Layout */
.insight-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Column - Main Content */
.insight-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.insight-content-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-left: 4px solid transparent;
}

.insight-content-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(1, 208, 255, 0.3);
  border-left-color: #01d0ff;
  box-shadow: 0 20px 40px rgba(1, 208, 255, 0.1);
}

.insight-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(1, 208, 255, 0.5), transparent);
}

.insight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #01d0ff, #f5a60c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(1, 208, 255, 0.3);
  transition: all 0.3s ease;
}

.insight-content-card:hover .insight-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(1, 208, 255, 0.4);
}

.insight-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.insight-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.insight-content p strong {
  color: #01d0ff;
  font-weight: 600;
}

/* Right Column - Capabilities */
.insight-capabilities {
  position: sticky;
  top: 120px;
}

.capabilities-header {
  text-align: center;
  margin-bottom: 50px;
}

.capabilities-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #01d0ff, #f5a60c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  margin: 0 auto 30px;
  box-shadow: 0 12px 30px rgba(1, 208, 255, 0.3);
  animation: float 3s ease-in-out infinite;
}

.capabilities-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.capabilities-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.capabilities-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.capability-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 208, 255, 0.05), rgba(245, 166, 12, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-item:hover::before {
  opacity: 1;
}

.capability-item:hover {
  transform: translateX(10px);
  border-color: rgba(1, 208, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.capability-icon {
  width: 50px;
  height: 50px;
  background: rgba(1, 208, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #01d0ff;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.capability-item:hover .capability-icon {
  background: rgba(1, 208, 255, 0.2);
  transform: scale(1.1);
}

.capability-content {
  flex: 1;
}

.capability-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.capability-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.4;
}

.capability-status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.capability-status i {
  font-size: 18px;
  color: #00ff88;
}

.capability-item.coming-soon .capability-icon {
  background: rgba(245, 166, 12, 0.1);
  color: #f5a60c;
}

.capability-item.coming-soon .capability-status .coming-soon-badge {
  background: linear-gradient(135deg, rgba(245, 166, 12, 0.2), rgba(1, 208, 255, 0.1));
  border: 1px solid rgba(245, 166, 12, 0.3);
  color: #f5a60c;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.insight-cta {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(1, 208, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.insight-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(1, 208, 255, 0.05), rgba(245, 166, 12, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insight-cta:hover::before {
  opacity: 1;
}

.insight-cta .btn {
  background: linear-gradient(135deg, #01d0ff, #f5a60c);
  border: none;
  border-radius: 12px;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(1, 208, 255, 0.3);
}

.insight-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 208, 255, 0.4);
}

.insight-cta p {
  margin: 20px 0 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .insight-showcase {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .insight-capabilities {
    position: static;
  }
}

@media (max-width: 768px) {
  .why-section-enhanced {
    padding: 80px 0;
  }

  .insight-content-card {
    padding: 30px 25px;
  }

  .insight-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .capabilities-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}



/* Enhanced Bullet Point Lists - Global Styling */
.enhanced-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.enhanced-bullet-item {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin-bottom: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.enhanced-bullet-item:hover {
  color: #ffffff;
  background: rgba(1, 208, 255, 0.08);
  border-color: rgba(1, 208, 255, 0.2);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(1, 208, 255, 0.1);
}

.enhanced-bullet-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #01d0ff, #f5a60c);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.enhanced-bullet-item:hover::before {
  opacity: 1;
}

.enhanced-bullet-icon {
  color: #01d0ff;
  margin-right: 18px;
  font-size: 16px;
  width: 24px;
  text-align: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.enhanced-bullet-item:hover .enhanced-bullet-icon {
  color: #f5a60c;
  transform: scale(1.15);
}

.enhanced-bullet-content {
  flex: 1;
  font-weight: 500;
}

/* White Background Variant for Light Sections */
.light-section .enhanced-bullet-item {
  color: #333;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-section .enhanced-bullet-item:hover {
  color: #000;
  background: rgba(1, 208, 255, 0.05);
  border-color: rgba(1, 208, 255, 0.15);
}

.light-section .enhanced-bullet-icon {
  color: #01d0ff;
}

.light-section .enhanced-bullet-item:hover .enhanced-bullet-icon {
  color: #f5a60c;
}

/* Compact Variant for Smaller Lists */
.enhanced-bullet-list.compact .enhanced-bullet-item {
  padding: 12px 16px;
  margin-bottom: 8px;
  font-size: 15px;
}

.enhanced-bullet-list.compact .enhanced-bullet-icon {
  font-size: 14px;
  width: 20px;
  margin-right: 14px;
}

/* Grid Layout for Multiple Columns */
.enhanced-bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.enhanced-bullet-grid .enhanced-bullet-item {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-bullet-item {
    padding: 16px;
    font-size: 15px;
  }
  
  .enhanced-bullet-icon {
    font-size: 14px;
    width: 20px;
    margin-right: 14px;
  }
  
  .enhanced-bullet-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Coming Soon Badge for Identity */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 166, 12, 0.15), rgba(1, 208, 255, 0.15));
  border: 1px solid rgba(245, 166, 12, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #f5a60c;
  margin-bottom: 20px;
  animation: gentle-pulse 3s infinite;
}

.coming-soon-badge i {
  animation: spin 2s linear infinite;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-content-wrapper {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
  
  .why-main-content {
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-sidebar {
    position: static;
  }
  
  .why-section .section-header h2 {
    font-size: 40px;
  }
  
  .why-main-content {
    padding: 35px;
  }
  
  .why-capabilities-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 80px 0;
  }
  
  .why-section .section-header h2 {
    font-size: 32px;
  }
  
  .why-section .section-header p {
    font-size: 18px;
  }
  
  .why-main-content {
    padding: 25px;
    border-radius: 15px;
  }
  
  .why-main-content p {
    font-size: 16px;
  }
  
  .why-capabilities-card {
    padding: 25px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .why-content-wrapper {
    gap: 30px;
  }
  
  .why-main-content {
    padding: 20px;
  }
  
  .why-capabilities-card {
    padding: 20px;
  }
  
  .why-capabilities-title {
    font-size: 20px;
  }
}
}
}