/* New Sections Styling */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background-color: rgba(15, 15, 15, 0.7);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(1, 208, 255, 0.15);
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(1, 208, 255, 0.3);
}

.benefit-card i {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--accent);
}

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

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

.split-content .content {
  flex: 1;
}

.split-content .image {
  flex: 1;
}

.split-content img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.feature-list li:before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
}

.cta-section {
  text-align: center;
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(1, 208, 255, 0.1) 0%, transparent 70%);
}

.cta-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 36px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--light);
  opacity: 0.9;
}

@media (max-width: 992px) {
  .split-content {
    flex-direction: column;
  }
  
  .split-content .content,
  .split-content .image {
    width: 100%;
  }
}

/* Icon classes for benefit cards */
.icon-governance:before { content: '\f013'; font-family: 'Font Awesome 6 Free'; }
.icon-security:before { content: '\f132'; font-family: 'Font Awesome 6 Free'; }
.icon-insights:before { content: '\f080'; font-family: 'Font Awesome 6 Free'; }
.icon-savings:before { content: '\f155'; font-family: 'Font Awesome 6 Free'; }

/* Completely Rewritten Dropdown Menu Styling */
.navbar .nav-links .dropdown {
  position: relative;
}

/* Removed CSS-generated arrows since we use FontAwesome icons in HTML */

.navbar .nav-links .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: #0a0a0a;
  border: 1px solid rgba(1, 208, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.navbar .nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar .nav-links .dropdown-menu li {
  display: block;
  padding: 0;
  margin: 0;
}

.navbar .nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.navbar .nav-links .dropdown-menu a:hover {
  background-color: rgba(1, 208, 255, 0.1);
  color: var(--accent);
}

/* Mobile dropdown styling */
@media (max-width: 768px) {
  .navbar .nav-links {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .navbar .nav-links .dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 0 0 15px;
  }
  
  .navbar .nav-links .dropdown.active .dropdown-menu {
    display: block;
  }
  
  /* Mobile arrows removed too */
}

/* Enhanced Feature Highlight Section */
.feature-highlight {
  padding: 100px 0;
  background-color: #080808;
  position: relative;
  overflow: hidden;
}

.feature-highlight:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(1, 208, 255, 0.2) 50%, transparent 100%);
}

.feature-highlight:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(1, 208, 255, 0.2) 50%, transparent 100%);
}

.feature-highlight .section-title {
  color: var(--primary);
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.feature-highlight .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.feature-content-split {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.feature-text {
  flex: 1;
}

.feature-description {
  font-size: 18px;
  color: var(--light);
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.feature-checklist {
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}

.feature-checklist li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  color: var(--light);
  font-size: 17px;
}

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

.feature-image {
  flex: 1;
  position: relative;
}

.feature-image:before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(1, 208, 255, 0.2);
  border-radius: 12px;
  z-index: -1;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(1, 208, 255, 0.3);
  display: block;
}

@media (max-width: 992px) {
  .feature-content-split {
    flex-direction: column-reverse;
    gap: 40px;
  }
  
  .feature-text, 
  .feature-image {
    width: 100%;
  }
}

:root {
  --primary: #01d0ff;
  --secondary: #00b4dd;
  --accent: #f5a60c;
  --light: #ededef;
  --dark-1: #666666;
  --dark-2: #4d4d4d;
  --dark-3: #333333;
  --dark-bg: #222222;
  --glass-bg: rgba(20, 30, 40, 0.55);
  --glass-blur: 12px;
}

body {
  font-family: 'Inter', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: black;
  color: #e9ecef;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
  font-weight: 800;
}

/* Header - enterprise clean black/white */
#header {
  background: black;
  border-bottom: 5px solid rgba(255,255,255,0.06);
}

#header .nav-links a {
  color: #ffffff;
}

#header .nav-links a:hover,
#header .nav-links .active {
  color: #ffffff;
  opacity: 0.85;
}

.btn.btn-demo { background: #ffffff; color: white !important; border-radius: 24px; padding: 10px 18px; }

/* Reference-inspired navbar + hero */
.hero-section { 
  background-color: #000; 
  padding: 80px 0; 
  margin-top: 80px; 
  position: relative;
  overflow: hidden;
}

.hero-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
}

.hero-section h1 { 
  font-size: 3.5rem; 
  font-weight: 700; 
  line-height: 1.1; 
  margin-bottom: 24px; 
  color: #fff; 
  letter-spacing: -0.02em; 
}

.hero-section .highlight { 
  background: linear-gradient(135deg, #fff 0%, #ccc 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
}

.hero-section .hero-subtitle { 
  font-size: 1.25rem; 
  color: #ccc; 
  margin-bottom: 40px; 
  line-height: 1.6; 
  font-weight: 400; 
}

.hero-actions { 
  display: flex; 
  gap: 16px; 
  justify-content: center; 
  margin-bottom: 40px; 
  flex-wrap: wrap; 
}

.btn-primary { 
  background-color: #000; 
  color: #fff; 
  padding: 16px 32px; 
  border-radius: 4px; 
  font-weight: 600; 
  border: 2px solid #000; 
}

.btn-primary:hover { 
  background-color: #333; 
  border-color: #333; 
}

.btn-secondary { 
  background: transparent; 
  color: #000; 
  padding: 16px 32px; 
  border-radius: 4px; 
  font-weight: 600; 
  border: 2px solid #000; 
}

.hero-section .btn-primary { 
  background:#fff; 
  color:#000; 
  border-color:#fff; 
}

.hero-section .btn-primary:hover { 
  background:#f0f0f0; 
  border-color:#f0f0f0; 
}

.hero-section .btn-secondary { 
  color:#fff; 
  border-color:#fff; 
}

.hero-section .btn-secondary:hover { 
  background:#fff; 
  color:#000; 
}

.hero-trust { 
  padding-top: 20px; 
  border-top: 1px solid #333; 
}

.trust-text { 
  color:#ccc; 
  font-size:14px; 
  font-weight:500; 
  display:block; 
  margin-bottom:8px; 
}

.trust-note { 
  color:#999; 
  font-size:12px; 
}

.hero-visual .dashboard-preview { 
  background:#fff; 
  border-radius:12px; 
  box-shadow:0 20px 40px rgba(0,0,0,0.3); 
  padding:24px; 
  border:1px solid #e5e5e5; 
  position:relative; 
  overflow:hidden; 
  width:100%; 
  max-width:500px; 
}

.hero-visual .dashboard-preview::before { 
  content:''; 
  position:absolute; 
  top:0; 
  left:0; 
  right:0; 
  height:4px; 
  background:linear-gradient(90deg,#000 0%,#333 100%); 
}

.dashboard-header { 
  display:flex; 
  justify-content:space-between; 
  align-items:center; 
  margin-bottom:24px; 
  padding-bottom:16px; 
  border-bottom:1px solid #f0f0f0; 
}

.dashboard-title { 
  font-weight:600; 
  color:#000; 
  font-size:18px; 
}

.dashboard-status { 
  display:flex; 
  align-items:center; 
  gap:8px; 
  color:#666; 
  font-size:14px; 
}

.status-dot { 
  width:8px; 
  height:8px; 
  border-radius:50%; 
  background:#22c55e; 
  animation:pulse 2s infinite; 
}

@keyframes pulse { 
  0%,100%{opacity:1} 
  50%{opacity:.5} 
}

.dashboard-metrics { 
  display:grid; 
  grid-template-columns:repeat(3,1fr); 
  gap:16px; 
  margin-bottom:24px; 
}

.metric-card { 
  background:#f8f9fa; 
  padding:16px; 
  border-radius:8px; 
  text-align:center; 
  border:1px solid #f0f0f0; 
}

.metric-value { 
  font-size:24px; 
  font-weight:700; 
  color:#000; 
  margin-bottom:4px; 
}

.metric-label { 
  font-size:12px; 
  color:#666; 
  margin-bottom:8px; 
}

.metric-trend.positive { 
  color:#22c55e; 
}

.metric-trend.negative { 
  color:#ef4444; 
}

.dashboard-chart { 
  background:#f8f9fa; 
  padding:16px; 
  border-radius:8px; 
}

.chart-header { 
  font-size:14px; 
  font-weight:500; 
  color:#000; 
  margin-bottom:16px; 
}

.chart-bars { 
  display:flex; 
  align-items:end; 
  gap:8px; 
  height:80px; 
}

.bar { 
  flex:1; 
  background:#ddd; 
  border-radius:4px 4px 0 0; 
  transition:all .3s ease; 
}

.bar.active { 
  background:#000; 
}

/* Mobile Hero Section Fixes */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
    margin-top: 60px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-visual {
    display: none;
  }
  
  .dashboard-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .metric-card {
    padding: 12px;
  }
  
  .metric-value {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
    margin-top: 50px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-visual .dashboard-preview {
    padding: 16px;
  }
  
  .dashboard-header {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Links and accents to white/black minimalism akin to firstdirect.com and okta.com */
a { color: #ffffff; }
a:hover { color: rgba(255,255,255,0.8); }

/* Mobile color fixes */
@media (max-width: 768px) {
  /* Ensure proper text contrast on mobile */
  .hero-section h1,
  .hero-section .hero-subtitle,
  .hero-section .trust-text,
  .hero-section .trust-note {
    color: #ffffff !important;
  }
  
  .hero-section .highlight {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }
  
  /* Fix button colors on mobile */
  .hero-section .btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
  }
  
  .hero-section .btn-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
    background: transparent !important;
  }
  
  /* Ensure proper background colors */
  .hero-section {
    background-color: #000000 !important;
  }
  
  .hero-visual .dashboard-preview {
    background: #ffffff !important;
    color: #000000 !important;
  }
  
  .dashboard-title,
  .metric-value,
  .chart-header {
    color: #000000 !important;
  }
  
  .metric-label,
  .dashboard-status {
    color: #666666 !important;
  }
  
  /* Mobile background fixes for all sections */
  .platform-section,
  .features-section,
  .roi-section,
  .security-section,
  .pricing-section {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
  
  /* Ensure proper section backgrounds */
  .platform-section {
    background-color: #f8f9fa !important;
  }
  
  .features-section {
    background-color: #000000 !important;
  }
  
  .roi-section {
    background-color: #000000 !important;
  }
  
  .security-section {
    background-color: #f8f9fa !important;
  }
  
  .pricing-section {
    background-color: #000000 !important;
  }
  
  /* Fix card backgrounds */
  .feature,
  .feature-card,
  .pricing-card,
  .contact-pricing-card,
  .security-card {
    background: rgba(255,255,255,0.95) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  }
  
  /* Fix text colors in cards */
  .feature h3,
  .feature-card h3,
  .pricing-card h3,
  .security-card h3 {
    color: #000000 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .contact-pricing-card h3 {
    color: #ffffff !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .feature p,
  .feature-card p,
  .pricing-card p,
  .contact-pricing-card p,
  .security-card p {
    color: #666666 !important;
  }
  
  /* Fix pricing benefits visibility */
  .pricing-benefits h4,
  .pricing-benefits li {
    color: #ffffff !important;
  }
  
  .pricing-benefits li i {
    color: #01d0ff !important;
  }
  
  /* Additional mobile color fixes */
  .platform-section h2,
  .security-section h2 {
    color: #000000 !important;
  }
  
  .pricing-section h2 {
    color: #ffffff !important;
  }
  
  .features-section h2,
  .roi-section h2 {
    color: #ffffff !important;
  }
  
  .roi-section h2,
  .roi-section p {
    color: #ffffff !important;
  }
  
  .platform-section p,
  .security-section p {
    color: #666666 !important;
  }
  
  .pricing-section p {
    color: #cccccc !important;
  }
  
  .features-section p {
    color: #cccccc !important;
  }
  
  /* Fix button colors across all sections */
  .btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
  }
  
  .btn-secondary {
    background: transparent !important;
    color: #000000 !important;
    border-color: #000000 !important;
  }
  
  .roi-section .btn-primary {
    background: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
  }
  
  .roi-section .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
  }
  
  /* Fix link colors */
  a {
    color: #000000 !important;
  }
  
  .roi-section a {
    color: #ffffff !important;
  }
  
  a:hover {
    color: #666666 !important;
  }
  
  .roi-section a:hover {
    color: #cccccc !important;
  }
  
  /* Fix footer menu visibility */
  .professional-footer .footer-column h3 {
    color: #ffffff !important;
  }
  
  .professional-footer .footer-column a {
    color: #cccccc !important;
  }
  
  .professional-footer .footer-column a:hover {
    color: #ffffff !important;
  }
  
  .professional-footer .footer-column p {
    color: #cccccc !important;
  }
  
  .professional-footer .contact-info p {
    color: #cccccc !important;
  }
  
  .professional-footer .legal-links a {
    color: #cccccc !important;
  }
  
  /* Mobile header fixes */
  #header {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: none !important;
  }
  
  .navbar .logo img {
    max-height: 35px !important;
  }
  
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
  }
  
  .menu-toggle span {
    display: block !important;
    height: 2px !important;
    width: 100% !important;
    background-color: #ffffff !important;
    border-radius: 1px;
    transition: all 0.3s ease;
  }
  
  /* Mobile layout improvements */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col-md-6,
  .col-lg-4,
  .col-lg-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Mobile grid improvements */
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Mobile spacing adjustments */
  .section {
    padding: 40px 0;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .section p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Additional responsive breakpoints */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .section h2 {
    font-size: 1.8rem;
  }
  
  .feature-grid,
  .pricing-grid {
    gap: 15px;
  }
  
  .metric-card {
    padding: 10px;
  }
  
  .metric-value {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .hero-section h1 {
    font-size: 1.6rem;
  }
  
  .hero-section .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .hero-actions .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .section h2 {
    font-size: 1.6rem;
  }
  
  .dashboard-preview {
    padding: 12px;
  }
}

/* Cards and sections */
.feature, .feature-card, .pricing-card, .contact-pricing-card, .security-card { background: rgba(255,255,255,0.02) !important; border: 1px solid rgba(255,255,255,0.08) !important; box-shadow: none !important; }

/* Footer */
.professional-footer { background: #0a0a0a !important; }

.section-header h2, .hero-title {
  font-size: 2.8rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 24px rgba(1,208,255,0.12);
}

.hero-title {
  font-size: 4rem !important;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle, .section-header p {
  font-family: 'Kodchasan', sans-serif;
  font-size: 1.3rem;
  color: var(--light);
  opacity: 0.92;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 1;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.benefit-card, .feature, .pricing-info, .trial-info, .contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  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;
}

.benefit-card:hover, .feature: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);
}

.btn, .btn-primary, .btn-outline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 2px 16px rgba(1,208,255,0.10);
  border: none !important;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  text-shadow: none !important;
}

.btn:hover, .btn-primary:hover, .btn-outline:hover {
  background: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(245,166,12,0.18), 0 2px 12px rgba(1,208,255,0.18);
  transform: scale(1.04);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero, .hero-title, .hero-subtitle, .benefit-card, .feature, .section-header, .pricing-info, .trial-info {
  opacity: 0;
  animation: fadeInUp 1.1s cubic-bezier(.23,1.01,.32,1) forwards;
}
.hero { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.benefit-card { animation-delay: 0.4s; }
.feature { animation-delay: 0.5s; }
.section-header { animation-delay: 0.2s; }
.pricing-info, .trial-info { animation-delay: 0.6s; }

/* Responsive improvements */
@media (max-width: 992px) {
  .hero-title { font-size: 2.2rem; }
  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.2rem; }
  .btn, .btn-primary, .btn-outline { font-size: 1rem; padding: 12px 18px; }
}

.section-bg {
  position: relative;
  background: url('../img/section-bg-ai.jpg') center/cover no-repeat;
}
.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 32, 0.75); /* darker overlay for better readability */
  z-index: 1;
}
.section-bg > * {
  position: relative;
  z-index: 2;
}

/* Professional Top Bar */
.top-bar {
  background: linear-gradient(135deg, #0a0a0a 0%, #101820 100%);
  padding: 8px 0;
  border-bottom: 1px solid rgba(1, 208, 255, 0.1);
  font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 20px;
  color: var(--light);
}

.contact-info i {
  color: var(--primary);
  margin-right: 5px;
}

.header-actions a {
  color: var(--light);
  text-decoration: none;
  margin-left: 15px;
  font-weight: 500;
}

.header-actions a:hover {
  color: var(--primary);
}

/* Trust Indicators */
.trust-indicators {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}

.trust-badge {
  background: rgba(1, 208, 255, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(1, 208, 255, 0.3);
}

/* Social Proof Stats Bar */
.stats-bar {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  padding: 25px 0;
  border-top: 1px solid rgba(1, 208, 255, 0.2);
  border-bottom: 1px solid rgba(1, 208, 255, 0.2);
}

.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat .number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Syne', sans-serif;
}

.stat .label {
  font-size: 12px;
  color: var(--dark-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Customer Logos Section */
.customer-logos {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #101820 100%);
  position: relative;
}

.customer-logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(1, 208, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(1, 208, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.customer-logos .container {
  position: relative;
  z-index: 2;
}

.customer-logos h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.industry-focus {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Industry Card Styling */
.industry-card {
  background: rgba(20, 30, 45, 0.6);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(1, 208, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.industry-card:hover {
  border-color: #01d0ff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(1, 208, 255, 0.25);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #01d0ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: white;
  box-shadow: 0 6px 20px rgba(1, 208, 255, 0.3);
}

.industry-card h3 {
  color: var(--light);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.logos-grid img {
  max-height: 60px;
  max-width: 120px;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.logos-grid img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logos-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-top: 30px;
  font-weight: 500;
}

/* Benefit Cards Enhancement */
.benefit-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);
  padding: 30px;
  transition: all 0.3s ease;
}

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

.benefit-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-metric {
  margin-top: 15px;
  padding: 10px 15px;
  background: rgba(1, 208, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ROI Section */
.roi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.9) 0%, rgba(5, 10, 20, 0.95) 100%);
}

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

.roi-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(1, 208, 255, 0.15);
  transition: all 0.3s ease;
}

.roi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(1,208,255,0.2);
}

.roi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.roi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roi-content h3 {
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 15px;
}

.roi-quote {
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--light);
}

.roi-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.roi-metrics .metric {
  background: rgba(245, 166, 12, 0.15);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.roi-content cite {
  color: var(--dark-1);
  font-size: 14px;
  font-style: normal;
}

/* REARRANGED ENTERPRISE SECURITY & COMPLIANCE SECTION */
.security-section {
  padding: 100px 0;
  background: white !important;
  position: relative;
}

.security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.security-section > * {
  position: relative;
  z-index: 2;
}

.security-section .section-header h2 {
  color: black;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.security-section .section-header p {
  color: black;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}


/* Compliance Enablement Cards */
.compliance-enablement {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0 60px;
}

.compliance-help-card {
  background: white;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(1, 208, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.compliance-help-card:hover {
  border-color: #01d0ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(1, 208, 255, 0.2);
}

.help-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #01d0ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 20px rgba(1, 208, 255, 0.3);
}

.compliance-help-card h3 {
  color: black;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.compliance-help-card p {
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Improved security cards layout */
.security-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.security-card {
  background: white !important;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(1, 208, 255, 0.15) !important;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important; 

}

.security-card:hover {
  border-color: #01d0ff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(1, 208, 255, 0.2) !important;
}

.security-list {
  list-style: none;
  padding: 0;
  
}

.security-card h3 {
  color:black;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.security-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: black;
}

.security-list i {
  color: #01d0ff;
  margin-right: 12px;
  font-size: 14px;
}

.compliance-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Compliance Badge Placeholders */
.compliance-badge-placeholder {
  width: 100px;
  height: 100px;
  background: rgba(1, 208, 255, 0.12) !important;
  border: 2px solid rgba(1, 208, 255, 0.3) !important;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.compliance-badge-placeholder:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(1, 208, 255, 0.2);
}

.badge-icon {
  font-size: 24px;
  margin-bottom: 4px;
}

.badge-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--light);
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compliance-badge {
  max-height: 80px;
  max-width: 100px;
  opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: black;
}

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

.pricing-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(1, 208, 255, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1,208,255,0.15);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-section .section-header h2 {
  color: white !important;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.pricing-section .section-header p {
  color: white;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--light);
}

.price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.price span {
  font-size: 16px;
  color: var(--dark-1);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--light);
}

.pricing-features i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 12px;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 40px;
  color: var(--dark-1);
  font-size: 14px;
}

.pricing-guarantee i {
  color: var(--primary);
  margin-right: 8px;
}

/* Contact for Pricing Section */
.contact-pricing-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-pricing-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid #01d0ff !important;
  position: relative;
  transition: all 0.3s ease;
}

.contact-pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(1,208,255,0.15);
}

.contact-pricing-icon {
  margin-bottom: 30px;
}

.contact-pricing-icon i {
  font-size: 48px;
  color: var(--primary);
}

.contact-pricing-card h3 {
  margin-bottom: 20px;
  color: var(--light);
  font-size: 24px;
  font-weight: 700;
}

.contact-pricing-card > p {
  color: var(--dark-1);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.pricing-benefits {
  margin: 30px 0;
  text-align: left;
}

.pricing-benefits h4 {
  color: var(--light);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.pricing-benefits ul {
  list-style: none;
  padding: 0;
}

.pricing-benefits li {
  margin-bottom: 12px;
  color: var(--light);
  display: flex;
  align-items: center;
}

.pricing-benefits li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 12px;
}

.contact-pricing-cta {
  margin-top: 30px;
}

.contact-pricing-cta .btn {
  margin: 0 10px 15px 10px;
}

@media (max-width: 768px) {
  .contact-pricing-card {
    padding: 30px 20px;
  }
  
  .contact-pricing-icon i {
    font-size: 36px;
  }
  
  .contact-pricing-card h3 {
    font-size: 20px;
  }
  
  .pricing-benefits {
    text-align: center;
  }
  
  .contact-pricing-cta .btn {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 280px;
  }
}

/* CTA Section */
/* Enhanced Final CTA Section */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.95) 0%, rgba(1, 208, 255, 0.1) 50%, rgba(245, 166, 12, 0.1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(1, 208, 255, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  font-size: 3.2rem;
  color: var(--light);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(1, 208, 255, 0.15);
}

.cta-content p {
  font-size: 1.3rem;
  color: var(--light);
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.cta-guarantee {
  color: var(--light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.cta-guarantee i {
  margin-right: 8px;
  color: var(--primary);
}

/* Professional Footer */
.professional-footer {
  background: black !important;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--light);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: var(--dark-1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-badge {
  max-height: 30px;
}

.compliance-status {
  background: rgba(1, 208, 255, 0.1);
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(1, 208, 255, 0.2);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--dark-1);
}

.contact-info i {
  color: var(--primary);
  margin-right: 10px;
  width: 16px;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: var(--dark-1);
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(1, 208, 255, 0.1);
  padding-top: 30px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-1);
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  color: var(--dark-1);
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-info span {
    margin-right: 15px;
    font-size: 12px;
  }
  
  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .security-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .btn-large {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* About Page Styles */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.95) 0%, rgba(5, 10, 20, 0.9) 100%);
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  color: var(--light);
  margin-bottom: 20px;
}

.page-hero .hero-subtitle {
  font-size: 20px;
  color: var(--dark-1);
  max-width: 800px;
  margin: 0 auto;
}

.company-story {
  padding: 80px 0;
  background: rgba(5, 10, 20, 0.8);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 30px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-1);
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(1,208,255,0.15);
}

.mission-vision {
  padding: 80px 0;
  background: rgba(10, 16, 32, 0.9);
}

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

.mission-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(1, 208, 255, 0.15);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1,208,255,0.2);
}

.mission-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 25px;
}

.mission-card h3 {
  font-size: 24px;
  color: var(--light);
  margin-bottom: 20px;
}

.mission-card p {
  color: var(--dark-1);
  line-height: 1.6;
}

.leadership-team {
  padding: 80px 0;
  background: rgba(5, 10, 20, 0.85);
}

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

.team-member {
  background: rgba(20, 30, 40, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(1, 208, 255, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(1,208,255,0.15);
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 22px;
  color: var(--light);
  margin-bottom: 8px;
}

.member-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.member-bio {
  color: var(--dark-1);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  color: var(--dark-1);
  font-size: 18px;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: var(--primary);
}

.company-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 800;
  display: block;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.company-culture {
  padding: 80px 0;
  background: rgba(10, 16, 32, 0.9);
}

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

.culture-item {
  background: rgba(20, 30, 40, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(1, 208, 255, 0.1);
}

.culture-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

.culture-item h3 {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
}

.culture-item p {
  color: var(--dark-1);
  line-height: 1.6;
}

.careers-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #101820 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: var(--dark-1);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Contact Page Styles */
.contact-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.95) 0%, rgba(5, 10, 20, 0.9) 100%);
  text-align: center;
}

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

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

.hero-stats .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.hero-stats .stat-label {
  font-size: 12px;
  color: var(--dark-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-options {
  padding: 80px 0;
  background: rgba(5, 10, 20, 0.8);
}

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

.contact-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(1, 208, 255, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1,208,255,0.2);
}

.contact-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.card-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 25px;
}

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

.contact-card p {
  color: var(--dark-1);
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.card-features span {
  font-size: 14px;
  color: var(--dark-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-features i {
  color: var(--primary);
  margin-right: 8px;
  font-size: 12px;
}

.contact-form-section {
  padding: 80px 0;
  background: rgba(10, 16, 32, 0.9);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-content h2 {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 20px;
}

.form-content p {
  color: var(--dark-1);
  line-height: 1.6;
  margin-bottom: 30px;
}

.form-benefits h3 {
  color: var(--light);
  margin-bottom: 20px;
}

.form-benefits ul {
  list-style: none;
  padding: 0;
}

.form-benefits li {
  color: var(--dark-1);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.form-benefits i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 12px;
}

.trust-indicators {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  color: var(--dark-1);
  font-size: 14px;
}

.trust-item i {
  color: var(--primary);
  margin-right: 8px;
}

.contact-form {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(1, 208, 255, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(10, 16, 32, 0.8);
  border: 1px solid rgba(1, 208, 255, 0.2);
  border-radius: 8px;
  color: var(--light);
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(1, 208, 255, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: var(--dark-1);
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--dark-1);
  text-align: center;
  margin-top: 20px;
}

.form-disclaimer a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info-section {
  padding: 80px 0;
  background: rgba(5, 10, 20, 0.85);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: rgba(20, 30, 40, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  border: 1px solid rgba(1, 208, 255, 0.1);
}

.info-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 15px;
}

.info-card p {
  color: var(--dark-1);
  line-height: 1.6;
  margin-bottom: 10px;
}

.info-hours {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.contact-faq {
  padding: 80px 0;
  background: rgba(10, 16, 32, 0.9);
}

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

.faq-item {
  background: rgba(20, 30, 40, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(1, 208, 255, 0.1);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--light);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--dark-1);
  line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 10px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* FORCE FULL WIDTH HERO WITH COMPLETE DARK OVERLAY */
.hero {
  width: 100vw;
  height: calc(100vh - 120px);
  max-height: calc(100vh - 120px);
  padding: 0;
  margin: 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  left: 0;
  right: 0;
  background: url('../img/hero-dashboard-ai1.jpg') center center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Complete dark overlay for website theme blending */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

/* Additional deep dark overlay for perfect theme integration */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(5, 10, 15, 0.6) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(10, 15, 25, 0.6) 100%);
  z-index: 2;
  border-radius: 0 !important;
  transform: none !important;
}

/* Force layout override main.css flexbox */
.hero .carousel,
.hero .carousel-container {
  display: none !important;
}

.hero-container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 4vh 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 120px);
  gap: 3vh;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.hero-content {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

/* FULLY DYNAMIC TITLE */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem) !important;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  text-shadow: 0 8px 40px rgba(0,0,0,1), 0 4px 16px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
  hyphens: auto;
}

/* CLEAN SUBTITLE WITHOUT BACKGROUND */
.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #ffffff !important;
  line-height: 1.5;
  margin-bottom: 0;
  opacity: 0.9;
  font-weight: 400 !important;
  text-align: center;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  word-wrap: break-word;
}

/* Blue highlight for special text */
.highlight-blue {
  color: #01d0ff !important;
  text-shadow: 0 0 20px rgba(1, 208, 255, 0.6), 0 3px 12px rgba(0,0,0,0.9);
}

.trust-indicators {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.trust-badge {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 900px;
  margin-top: 0;
  box-sizing: border-box;
}

.stat {
  text-align: center;
}

.stat .number {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--primary);
  font-family: 'Syne', sans-serif;
  display: block;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(1, 208, 255, 0.6);
  white-space: nowrap;
}

.stat .label {
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
  display: block;
  font-weight: 500;
  line-height: 1.3;
  word-wrap: break-word;
  hyphens: auto;
}

/* REDESIGNED THREE WAYS BENEFITS SECTION - SOLID BACKGROUND */
.benefits-section {
  padding: 120px 0;
  background: #151921 !important;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #151921 0%, #1a1e28 100%);
  z-index: 1;
}

.benefits-section > * {
  position: relative;
  z-index: 2;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card {
  background: rgba(20, 30, 40, 0.55) !important;
  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);
  padding: 30px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.7s both;
}

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

.benefit-icon {
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}

.benefit-card h3, .benefit-metric, .benefit-card p {
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.benefit-icon i {
  color: var(--primary) !important;
  background: none !important;
}

/* Fix section styling */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--light);
  margin-bottom: 20px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-1);
  max-width: 600px;
  margin: 0 auto;
}

/* Clean Professional Button Styling */
.btn, .btn-primary, .btn-outline {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none !important;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 8px rgba(1, 208, 255, 0.15);
}

.btn-primary:hover {
  background: rgba(1, 208, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 208, 255, 0.25);
}

.btn-outline {
  background: transparent !important;
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
}

.btn-outline:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

/* RESPONSIVE HERO WITH BACKGROUND IMAGE */
@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
  }
  
  .hero-container {
    gap: 2vh;
    height: calc(100vh - 100px);
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  }
  
  .hero-subtitle {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    padding: 14px 18px !important;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 1.2rem;
  }

  .compliance-showcase {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .security-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-container {
    gap: 60px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    padding: 2vh 2vw;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    height: calc(100vh - 80px);
    max-height: calc(100vh - 80px);
  }
  
  .hero-container {
    gap: 1.5vh;
    height: calc(100vh - 80px);
  }
  
  .hero-title {
    font-size: clamp(1.3rem, 3.5vw, 2rem) !important;
  }
  
  .hero-subtitle {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    padding: 12px 16px !important;
  }
  
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }
  
  .trust-indicators {
    gap: 0.8rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Fix container max-width for consistency */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Remove conflicting animation styles */
.hero, .hero-title, .hero-subtitle {
  animation-delay: 0s;
}

/* Case Studies Page Styles */
.case-studies-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(10, 16, 32, 0.95) 0%, rgba(5, 10, 20, 0.9) 100%);
  text-align: center;
}

.case-studies-hero h1 {
  font-size: 48px;
  color: var(--light);
  margin-bottom: 20px;
}

.case-studies-hero .hero-subtitle {
  font-size: 20px;
  color: var(--dark-1);
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.case-studies-hero .stat-item {
  text-align: center;
}

.case-studies-hero .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-family: 'Syne', sans-serif;
}

.case-studies-hero .stat-label {
  font-size: 12px;
  color: var(--dark-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-studies-filter {
  padding: 40px 0;
  background: rgba(5, 10, 20, 0.8);
}

.filter-options {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  color: var(--dark-1);
  border: 2px solid rgba(1, 208, 255, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.featured-case-study {
  padding: 80px 0;
  background: rgba(10, 16, 32, 0.9);
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industry-tag {
  display: inline-block;
  background: rgba(245, 166, 12, 0.15);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.industry-tag.healthcare {
  background: rgba(32, 201, 151, 0.15);
  color: #20c997;
}

.industry-tag.technology {
  background: rgba(13, 202, 240, 0.15);
  color: #0dcaf0;
}

.industry-tag.manufacturing {
  background: rgba(253, 126, 20, 0.15);
  color: #fd7e14;
}

.industry-tag.financial {
  background: rgba(25, 135, 84, 0.15);
  color: #198754;
}

.featured-text h2 {
  font-size: 36px;
  color: var(--light);
  margin-bottom: 20px;
}

.featured-description {
  font-size: 18px;
  color: var(--dark-1);
  line-height: 1.6;
  margin-bottom: 30px;
}

.featured-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
  padding: 25px;
  background: rgba(20, 30, 40, 0.5);
  border-radius: 15px;
}

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

.metric-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  font-family: 'Syne', sans-serif;
}

.metric-label {
  font-size: 11px;
  color: var(--dark-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.featured-quote {
  margin: 30px 0;
  padding: 20px;
  background: rgba(1, 208, 255, 0.05);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}

.featured-quote blockquote {
  font-style: italic;
  color: var(--light);
  margin-bottom: 10px;
  font-size: 16px;
}

.featured-quote cite {
  color: var(--dark-1);
  font-size: 14px;
}

.featured-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(1,208,255,0.15);
}

.case-studies-grid {
  padding: 80px 0;
  background: rgba(5, 10, 20, 0.85);
}

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

.case-study-card {
  background: rgba(20, 30, 40, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(1, 208, 255, 0.15);
  transition: all 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(1,208,255,0.2);
}

.card-header {
  margin-bottom: 25px;
}

.company-info h3 {
  color: var(--light);
  font-size: 20px;
  margin-bottom: 5px;
}

.company-size {
  color: var(--dark-1);
  font-size: 14px;
}

.case-metrics {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.case-metrics .metric {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.case-metrics .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.case-metrics .label {
  font-size: 10px;
  color: var(--dark-1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-challenge,
.case-solution {
  margin-bottom: 20px;
}

.case-challenge h4,
.case-solution h4 {
  color: var(--light);
  font-size: 16px;
  margin-bottom: 10px;
}

.case-challenge p,
.case-solution p {
  color: var(--dark-1);
  font-size: 14px;
  line-height: 1.5;
}

.case-quote {
  margin: 20px 0;
  padding: 15px;
  background: rgba(1, 208, 255, 0.05);
  border-radius: 8px;
}

.case-quote blockquote {
  font-style: italic;
  color: var(--light);
  font-size: 14px;
  margin-bottom: 8px;
}

.case-quote cite {
  color: var(--dark-1);
  font-size: 12px;
}

.roi-calculator-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
}

.roi-calculator-cta h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}

.roi-calculator-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.roi-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.roi-item {
  color: white;
}

.roi-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.roi-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
}

/* Responsive case studies */
@media (max-width: 768px) {
  .case-studies-hero .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .featured-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .studies-grid {
    grid-template-columns: 1fr;
  }
  
  .case-metrics {
    justify-content: space-between;
  }
  
  .roi-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .filter-options {
    justify-content: center;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .featured-metrics {
    grid-template-columns: 1fr;
  }
  
  .case-metrics {
    flex-direction: column;
    gap: 10px;
  }
  
  .case-studies-hero h1 {
    font-size: 32px;
  }
}

/* Core Features Section Styles */
.features-section {
  padding: 80px 0;
  background: black;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(1, 208, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(1, 208, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

.features-section .section-header h2 {
  color: white !important;
  font-size: 2.2rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.features-section .section-header p {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

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

.feature-card {
  background: black !important;
  backdrop-filter: blur(15px);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 0.5px solid white !important;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(1, 208, 255, 0.2);
  border-color: 2px solid #01d0ff !important;
}

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

.feature-card h3 {
  color: white !important;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card p {
  color: white;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* Enhanced Final CTA Section */
.final-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-header h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.value-prop {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  color: white;
}

.value-text h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.value-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  min-width: 220px;
}

.btn-large i {
  font-size: 18px;
}

.btn-subtitle {
  font-size: 0.85rem;
  font-weight: 400;
  margin-top: 5px;
  opacity: 0.9;
}

.btn-primary.btn-large {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-primary.btn-large:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline.btn-large {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline.btn-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.guarantee-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.guarantee-item i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 25px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .cta-value-props {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-prop {
    padding: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    min-width: 280px;
  }
  
  .guarantee-badges {
    flex-direction: column;
    gap: 15px;
  }
}

/* Platform Overview Section */
.platform-section {
  padding: 80px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

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

.platform-section .section-header h2 {
  color: black;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-section .section-header p {
  color: black;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.value-propositions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.value-card {
  background: white;
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(1, 208, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1.5px solid rgba(1, 208, 255, 0.2);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(1, 208, 255, 0.2);
}

.value-card.featured {
  border: 2px solid #01d0ff;
  box-shadow: 0 15px 35px rgba(1, 208, 255, 0.25);
}

.value-card.featured:hover {
  box-shadow: 0 25px 50px rgba(1, 208, 255, 0.35);
}

.value-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #01d0ff, #0099cc);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(1, 208, 255, 0.4);
}

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

.value-card h3 {
  color: black;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.value-card p {
  color: black;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.value-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.value-features li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: black;
  font-size: 0.95rem;
  line-height: 1.5;
}

.value-features li i {
  color: #01d0ff;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 600;
}

.value-metric {
  background: rgba(1, 208, 255, 0.1);
  border: 1px solid rgba(1, 208, 255, 0.3);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  color: #01d0ff;
  font-weight: 600;
}

/* Product Links Grid - Clean link containers without heavy card styling */
.product-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.product-link-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Ensure readable text when product link cards appear inside light sections */
.platform-section .product-link-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.platform-section .link-content h3 { color: #0a0a0a; }
.platform-section .link-content p { color: #333333; }
.platform-section .link-icon { background: rgba(1, 208, 255, 0.12); color: #01d0ff; }
.platform-section .link-badge { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.platform-section .product-link-card:hover { background: #ffffff; border-color: rgba(0,0,0,0.1); }


.product-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(1, 208, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.product-link-card.featured {
  border: 2px solid rgba(1, 208, 255, 0.3);
  background: rgba(1, 208, 255, 0.02);
}

.product-link-card.featured:hover {
  border-color: rgba(1, 208, 255, 0.5);
  background: rgba(1, 208, 255, 0.05);
}

.link-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.link-badge {
  background: linear-gradient(135deg, #01d0ff, #0099cc);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.link-badge.azure {
  background: linear-gradient(135deg, #0078d4, #005ba1);
}

.link-icon {
  width: 60px;
  height: 60px;
  background: rgba(1, 208, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #01d0ff;
  transition: all 0.3s ease;
}

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

.link-content {
  margin-bottom: 30px;
}

.link-content h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.link-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.link-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.link-action .btn {
  min-width: 200px;
  justify-content: center;
}

/* Enhanced responsive design for platform section */
@media (max-width: 768px) {
  .product-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .product-link-card {
    padding: 30px 25px;
  }

  .link-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .link-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .link-content h3 {
    font-size: 1.3rem;
  }

  .value-propositions {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .value-card {
    padding: 30px;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .value-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Contact Stats Section */
.contact-stats {
  padding: 40px 0;
  background: rgba(10, 10, 10, 0.9);
  border-bottom: 1px solid rgba(1, 208, 255, 0.1);
}

.contact-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-stats .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  font-family: 'Syne', sans-serif;
}

.contact-stats .stat-label {
  display: block;
  font-size: 0.95rem;
  color: var(--light);
  opacity: 0.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contact-stats {
    padding: 30px 0;
  }
  
  .contact-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .contact-stats .stat-number {
    font-size: 2rem;
  }
}

/* Form Success Styling */
.form-success {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, rgba(1, 208, 255, 0.1) 0%, rgba(0, 255, 127, 0.1) 100%);
  border-radius: 12px;
  border: 1px solid rgba(1, 208, 255, 0.3);
}

.form-success i {
  font-size: 48px;
  color: #00ff7f;
  margin-bottom: 20px;
  display: block;
}

.form-success h3 {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.form-success p {
  color: var(--light);
  font-size: 16px;
  opacity: 0.9;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ULTIMATE MOBILE MENU FIX - LOADED LAST TO OVERRIDE EVERYTHING */
@media (max-width: 768px) {
  .mobile-nav-active .navmenu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  
  .mobile-nav-active .navmenu ul {
    display: block !important;
    position: absolute !important;
    top: 80px !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    background: #1a1a1a !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    overflow-y: auto !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: calc(100% - 40px) !important;
    height: calc(100vh - 100px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
  }
  
  .mobile-nav-active .navmenu ul li {
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
  }
  
  .mobile-nav-active .navmenu ul li a {
    color: #ffffff !important;
    font-size: 18px !important;
    padding: 18px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-nav-active .navmenu ul li a:hover {
    color: #01d0ff !important;
    transform: translateX(10px) !important;
  }
  
  /* Hide dropdown menus by default */
  .mobile-nav-active .navmenu ul li .dropdown-menu {
    display: none !important;
    position: static !important;
    background: #1a1a1a !important;
    border-radius: 8px !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    width: 100% !important;
  }
  
  /* Show dropdown when active */
  .mobile-nav-active .navmenu ul li.dropdown.active .dropdown-menu {
    display: block !important;
  }
  
  .mobile-nav-active .navmenu ul li .dropdown-menu li {
    margin: 0 !important;
    width: 100% !important;
  }
  
  .mobile-nav-active .navmenu ul li .dropdown-menu a {
    padding: 12px 20px !important;
    font-size: 16px !important;
    color: #cccccc !important;
    border-bottom: none !important;
    width: 100% !important;
    display: block !important;
  }
  
  .mobile-nav-active .navmenu ul li .dropdown-menu a:hover {
    color: #01d0ff !important;
    background: rgba(1, 208, 255, 0.1) !important;
  }
  
  /* Style dropdown toggle arrows */
  .mobile-nav-active .navmenu ul li.dropdown > a i {
    transition: transform 0.3s ease !important;
    transform: rotate(0deg) !important;
  }
  
  .mobile-nav-active .navmenu ul li.dropdown.active > a i {
    transform: rotate(180deg) !important;
  }
  
  /* Hide Solutions and Resources dropdowns on mobile */
  .mobile-nav-active .navmenu ul li.dropdown:nth-child(3),
  .mobile-nav-active .navmenu ul li.dropdown:nth-child(4) {
    display: none !important;
  }
  
  /* Close button for mobile menu */
  .mobile-nav-active .navmenu::before {
    content: '×' !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    color: #ffffff !important;
    font-size: 32px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 1000000 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
  }
  
  .mobile-nav-active .navmenu::before:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
  }
} 