/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #02093f;
    background-attachment: fixed;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:       #02093f;
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-20px); }
    50% { transform: translateX(10px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(15px); }
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.navbar .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
   padding: 7px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar .btn-primary {
    background: linear-gradient(135deg, #5a6fd8 0%, #764c9e 100%);
    color: white;
    border: 2px solid transparent;
}

.navbar  .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}



.navbar  .btn-outline {
    background: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Gradient Text */
.gradient-text {
    background: #02093f;
      -webkit-background-clip: text;
      background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-brand .logo {
    color: #1f2937;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.navbar.scrolled .nav-link {
    color: #4b5563;
}

.navbar.scrolled .nav-link:hover {
    color: #4f46e5;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 110%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #374151;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #f3f4f6;
    color: #4f46e5;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #1f2937;
    transition: all 0.3s ease;
}

.btn {
    position: relative;
    overflow: hidden;
}

.navbar .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:     radial-gradient(circle at 30% 80%, rgba(102, 126, 234, 0.1), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(118, 75, 162, 0.1), transparent 60%);
    transition: left 0.5s;
}

.navbar  .btn:hover::before {
    left: 100%;
}

/* Pulse animation for CTA buttons */
.navbar  .btn-primary {
    animation: nav-pulse 2s infinite;
}

@keyframes nav-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}


  #mobileDrawer  .nav-menu,
 #mobileDrawer .nav-actions {
    display: none;
  }


/* =================== MOBILE NAVIGATION =================== */
@media (max-width: 1024px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  #mobileDrawer  .nav-menu,
 #mobileDrawer .nav-actions {
    display: block;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 32px 24px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.35s ease-in-out;
     overflow-y: auto;        /* enables vertical scroll if needed */
  -webkit-overflow-scrolling: touch; /* smoother scroll on iOS */
}

.mobile-drawer::-webkit-scrollbar {
  width: 6px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
  background-color: rgba(102, 126, 234, 0.4); /* light purple scrollbar thumb */
  border-radius: 4px;
}

  .mobile-drawer.open {
    transform: translateX(0);
  }

  .mobile-drawer .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .mobile-drawer .nav-link {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile-drawer .nav-link:hover {
    color: #4f46e5;
  }

  .mobile-drawer .nav-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .mobile-drawer .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 16px;
    margin-top: 4px;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .mobile-drawer .nav-dropdown:hover .dropdown-content {
    display: flex;
  }

  .mobile-drawer .dropdown-content a {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .mobile-drawer .dropdown-content a:hover {
    color: #6366f1;
  }

  .mobile-drawer .dropdown-arrow {
    transition: transform 0.3s ease;
  }

  .mobile-drawer .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-drawer .nav-actions {
    flex-direction: column;
    margin-top: auto;
    gap: 12px;
  }

  .btn-full {
    width: 100%;
  }
  .mobile-drawer-close {
  position: absolute;
        top: 30px;
        right: 16px;
  background: transparent;
  border: none;
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
}

.mobile-drawer-close:hover {
  color: #4f46e5;
}

.dropdown-content {
  display: none;
  position: static;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
  padding-left: 12px;
  flex-direction: column;
}

.dropdown-content.show {
  display: flex;
}

 .btn-outline {
    background: #667eea;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    margin-bottom: 8px;
}

}




/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(to right, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    backdrop-filter: blur(24px);
    position: relative;
    border-radius: 0 0 48px 48px;
    margin-bottom: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:  #02093f;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(to right, #667eea, #02093f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero .btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
 .btn {
   
    text-decoration: none;
}

.hero  .btn-primary {
    background: linear-gradient(to right, #667eea, #7b4fe2);
    color: #fff;
    border: none;
}

.hero .btn-primary:hover {
    background: linear-gradient(to right, #5a67d8, #6b46c1);
}

.hero .btn-outline {
    border: 2px solid #667eea;
    background: transparent;
    color: #ffffff;
}

.hero  .btn-outline:hover {
    background: #667eea;
    color: #ffffff;
}

.hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.hero .stat {
    text-align: center;
}

.hero .stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dashboard Mockup Enhancements */
.dashboard-mockup {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.dashboard-header {
    background: #f1f5f9;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-tabs {
    display: flex;
    gap: 16px;
}

.hero .tab {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero .tab.active {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.hero .metric-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.hero .metric-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.hero .metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
}

.hero .metric-label {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 6px;
}

.hero .metric-trend {
    font-weight: 600;
    font-size: 0.85rem;
}

.hero .metric-trend.positive {
    color: #10b981;
}

.hero .metric-trend.negative {
    color: #ef4444;
}

.hero .threat-chart {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 12px;
}

.chart-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    gap: 6px;
    height: 80px;
    align-items: end;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #667eea,  #02093f);
    border-radius: 4px 4px 0 0;
}


@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 40px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero .btn {
    width: 100%;
    padding: 12px 20px;
  }

  .hero .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .dashboard-mockup {
    border-radius: 16px;
  }

  .hero .metric-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero .metric-card {
    padding: 16px;
  }

  .dashboard-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero .tab {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .chart-bars {
    height: 60px;
  }

  .chart-header {
    font-size: 0.85rem;
    text-align: center;
  }
}


/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9ff, #eef1fd);
    text-align: center;
}

.trusted-title {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-in-out;
}

.client-logo {
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%);
}

.client-logo img {
    height: 60px;
    max-width: auto;
    object-fit: contain;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-4px);
    filter: grayscale(0%);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Learn More Section */
.learn-more {
  padding: 100px 0;
  background: #ffffff;
}

.learn-more-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.learn-more-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.learn-more-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 40px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 45px;
  height: 36px;
  font-size: 1rem;
  background: linear-gradient(135deg, #667eea, #02093f);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.step-content h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.architecture-diagram {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.diagram-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 24px;
  text-align: center;
}

.architecture-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 34px;
}

.flow-item {
  background: #f9fafb;
  padding: 12px 16px;
  border-radius: 10px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.flow-item:hover {
  transform: translateY(-3px);
}

.flow-item.security {
  background: linear-gradient(135deg, #667eea, #02093f);
  color: white;
}

.flow-icon {
  font-size: 1.5rem;
}

.flow-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.flow-arrow {
  font-size: 1.4rem;
  color: #667eea;
  font-weight: bold;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #374151;
}

.feature-check {
  color: #10b981;
}

/* Tablet and below */
@media (max-width: 1024px) {
  .learn-more-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .learn-more {
    padding: 80px 20px;
  }

  .architecture-flow {
    gap: 12px;
  }

  .security-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile and below */
@media (max-width: 768px) {
  .learn-more {
    padding: 60px 16px;
  }

  .learn-more-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .learn-more-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 32px;
  }

  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .architecture-diagram {
    padding: 16px;
  }

  .diagram-title {
    font-size: 1rem;
  }

  .flow-item {
    min-width: 60px;
    padding: 10px 12px;
  }

  .flow-icon {
    font-size: 1.3rem;
  }

  .flow-label {
    font-size: 0.8rem;
  }

  .flow-arrow {
    font-size: 1.2rem;
  }

  .security-feature {
    font-size: 0.9rem;
    gap: 6px;
  }
}






/* Products Section */
.products {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.product-description {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-link {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.product-link:hover {
  color: #02093f;
}

/* Icon Tinting */
.product-icon svg rect {
  transition: fill 0.3s ease;
}

.product-card:hover .product-icon svg rect {
  fill: #667eea;
  opacity: 0.2;
}

/* Gradient Text (Shimmer) */
.gradient-text {
  background: linear-gradient(90deg, #667eea, #02093f, #667eea);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .products {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .products-grid {
    gap: 32px;
  }

  .product-card {
    padding: 28px;
  }

  .product-title {
    font-size: 1.15rem;
  }

  .product-description {
    font-size: 0.9rem;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  .products {
    padding: 60px 16px;
  }

  .section-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 0.88rem;
  }

  .product-link {
    font-size: 0.88rem;
  }
}



/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:  #02093f;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-title {
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h4 {
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Security Diagram */
.security-diagram {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.diagram-layer {
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.diagram-layer.security {
    background: #02093f;
    color: white;
}

.diagram-layer.security .layer-title,
.diagram-layer.security .layer-content {
    color: white;
}

.layer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 4px;
}

.layer-content {
    font-size: 0.85rem;
    color: #666;
}

.diagram-arrow {
    text-align: center;
    font-size: 1.3rem;
    color: #dde2f7;
    margin: 8px 0;
}


.features-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea, #02093f);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-top: 2px;
}

.feature-content h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Optional Enhancement */

.gradient-text-feature {
  background: linear-gradient(
    90deg,
    rgba(43, 46, 56, 0.5),
    rgba(60, 7, 114, 0.5)
  );
  -webkit-background-clip: text;
      background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite;
  background-size: 200% 200%;
}


@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .features {
    padding: 80px 20px;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .features-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .feature-content h4 {
    font-size: 1rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }

  .security-diagram {
    padding: 24px;
  }

  .diagram-layer {
    padding: 16px;
  }

  .layer-title {
    font-size: 0.85rem;
  }

  .layer-content {
    font-size: 0.8rem;
  }

  .diagram-arrow {
    font-size: 1.1rem;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  .features {
    padding: 60px 16px;
  }

  .features-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-list {
    gap: 20px;
  }

  .feature-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .feature-content h4 {
    font-size: 0.95rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  .security-diagram {
    padding: 20px;
    border-radius: 14px;
  }

  .diagram-layer {
    padding: 14px;
  }

  .layer-title {
    font-size: 0.8rem;
  }

  .layer-content {
    font-size: 0.75rem;
  }

  .diagram-arrow {
    font-size: 1rem;
  }
}




/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #02093f;
  animation: backgroundPulse 20s ease-in-out infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.testimonials .section-title{
  color: white;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  animation: float 9s ease-in-out infinite;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f3f3f3;
  margin-bottom: 24px;
  position: relative;
  font-style: italic;
  padding-left: 28px;
}

.quote-icon {
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1.5rem;
  color:#6f95ff;
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.author-title {
  font-size: 0.9rem;
  color: #ccc;
}

.company-logo {
  font-weight: 700;
  color: #6f95ff;
  font-size: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .testimonials {
    padding: 80px 24px;
  }

  .testimonial-card {
    padding: 28px;
    border-radius: 18px;
  }

  .testimonial-content {
    font-size: 1rem;
    padding-left: 24px;
  }

  .quote-icon {
    font-size: 1.4rem;
  }

  .author-title {
    font-size: 0.85rem;
  }

  .company-logo {
    font-size: 0.95rem;
  }

  .testimonials .section-header {
    margin-bottom: 40px;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 24px;
    border-radius: 16px;
  }

  .testimonial-content {
    font-size: 0.95rem;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .quote-icon {
    font-size: 1.2rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-title {
    font-size: 0.8rem;
  }

  .company-logo {
    font-size: 0.9rem;
  }

  .testimonials .section-header {
    margin-bottom: 32px;
  }
}




/* Pricing Section */
#pricing  {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9fafc, #edf2f7);
  position: relative;
}

#pricing .pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:  #02093f;
  z-index: 0;
  pointer-events: none;
}

#pricing  .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

#pricing .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#pricing .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

#pricing .section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
}

#pricing .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

#pricing  .pricing-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  position: relative;
}

#pricing .pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

#pricing .pricing-card.featured {
  border: 2px solid #667eea;
  background:  #02093f;
  color: white;
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-description,
.pricing-card.featured .feature {
  color: white;
}

#pricing  .featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: white;
  padding: 6px 20px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#pricing .pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

#pricing .plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

#pricing .plan-price {
  margin-bottom: 8px;
}

#pricing .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: #667eea;
}

#pricing .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: inherit;
}

#pricing .period {
  font-size: 1rem;
  color: #718096;
}

#pricing .plan-description {
  font-size: 1rem;
  color: #4a5568;
}

#pricing .pricing-features {
  margin-bottom: 24px;
}

#pricing .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 8px 0;
  color: #2d3748;
}

#pricing .feature::before {
  content: '✔';
  color: #38a169;
  font-weight: bold;
}

#pricing .btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

#pricing  .btn-outline {
  border: 2px solid #667eea;
  color: #667eea;
  background-color: transparent;
}

#pricing  .btn-outline:hover {
  background-color: #667eea;
  color: white;
}

#pricing .btn-primary {
  background-color: white;
  color:#470689;
  border: 2px solid white;
}

#pricing .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.85);
}

#pricing .pricing-card.featured .currency{
    color: white;
}
#pricing  .pricing-card.featured .period{
    color: rgb(243, 233, 233);
}

#pricing .pricing-card.featured .plan-description {
    color:#bbd1f7;
}

#pricing .pricing-card.featured .feature::before {
    color: #0af778;
}
#pricing .pricing-card.featured  .feature  {
    color: white;
}

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  #pricing {
    padding: 80px 24px;
  }

  #pricing .section-title {
    font-size: 2rem;
  }

  #pricing .section-subtitle {
    font-size: 1rem;
  }

  #pricing .pricing-grid {
    gap: 1.5rem;
  }

  #pricing .pricing-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  #pricing .plan-name {
    font-size: 1.4rem;
  }

  #pricing .amount {
    font-size: 2.2rem;
  }

  #pricing .currency {
    font-size: 1.15rem;
  }

  #pricing .period {
    font-size: 0.95rem;
  }

  #pricing .btn {
    font-size: 0.95rem;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  #pricing {
    padding: 60px 16px;
  }

  #pricing .section-title {
    font-size: 1.75rem;
  }

  #pricing .section-subtitle {
    font-size: 0.95rem;
  }

  #pricing .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #pricing .pricing-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  #pricing .plan-name {
    font-size: 1.25rem;
  }

  #pricing .amount {
    font-size: 2rem;
  }

  #pricing .currency {
    font-size: 1rem;
  }

  #pricing .period {
    font-size: 0.85rem;
  }

  #pricing .feature {
    font-size: 0.9rem;
  }

  #pricing .btn {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  #pricing .featured-badge {
    font-size: 0.75rem;
    padding: 5px 16px;
  }
}






/* CTA Section */
.cta {
  padding: 100px 20px;
  background: #02093f;
  color: white;
  text-align: center;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 60%);
  animation: pulse 6s infinite ease-in-out;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.cta.container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta .btn {
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta .btn-primary {
  background: white;
  color: #4c51bf;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.cta .btn-primary:hover {
  background: #f5f7fa;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

.cta .btn-outline {
  border: 2px solid white;
  background: transparent;
  color: white;
}

.cta .btn-outline:hover {
  background: white;
  color: #4c51bf;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}


/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .cta {
    padding: 80px 16px;
    border-radius: 20px;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .cta .btn {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  .cta {
    padding: 60px 12px;
    border-radius: 16px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 12px 20px;
  }
}







/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .metric-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .chart-bars {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}
.mt-4 { margin-top: 2rem; }





/* Product Details Section */



.product-details {
  padding: 100px 0;
  background: #f8f9ff;
}

.product-details:nth-child(even) {
  background: #ffffff;
}

.product-details .product-detail-header {
  text-align: center;
  margin-bottom: 64px;
}

.product-details .product-detail-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

.product-details  .product-tagline {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.product-details .product-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: start;
}

.product-details .product-detail-text h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: #2d3748;
  font-weight: 600;
}

.product-details .feature-list-detailed {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}

.product-details .feature-list-detailed li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #2d3748;
  font-size: 1rem;
}
.product-details .stat-label {
  
  color: #746de3;
}

.product-details  .feature-list-detailed li::before {
  font-size: 1rem;
   content: '✔';
    color: #38a169;
    font-weight: bold;

}

.product-details  .use-cases {
  list-style: none;
  margin-bottom: 32px;
  padding: 0;
}

.product-details  .use-cases li {
  padding: 6px 0 6px 20px;
  color: #4a5568;
  font-size: 0.95rem;
  position: relative;
}

.product-details  .use-cases li::before {
  content: '•';
  color: #667eea;
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 1.3rem;
}

.product-details  .product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.product-details  .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.product-details .btn-primary {
  background: #667eea;
  color: white;
  border: none;
}

.product-details  .btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.product-details .btn-outline {
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
}

.product-details .btn-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}


/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .product-details {
    padding: 80px 20px;
  }

  .product-details .product-detail-header h2 {
    font-size: 2rem;
  }

  .product-details .product-tagline {
    font-size: 1.1rem;
    max-width: 90%;
  }

  .product-details .product-detail-grid {
    gap: 48px;
  }

  .product-details .product-detail-text h3 {
    font-size: 1.3rem;
  }

  .product-details .btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  .product-details {
    padding: 60px 16px;
  }

  .product-details .product-detail-header h2 {
    font-size: 1.75rem;
  }

  .product-details .product-tagline {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .product-details .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-details .product-detail-text h3 {
    font-size: 1.15rem;
  }

  .product-details .feature-list-detailed li,
  .product-details .use-cases li {
    font-size: 0.95rem;
  }

  .product-details .product-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .product-details .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}




/* Demo Visualizations */
.guardrails-demo,
.scanner-demo,
.database-demo,
.api-demo {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-header {
    background: #f8f9ff;
    padding: 16px 24px;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.demo-content {
    padding: 24px;
}

.threat-example {
    margin-bottom: 16px;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid;
}

.threat-example.blocked {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.threat-example.safe {
    background: #f0fdf4;
    border-left-color: #10b981;
}

.threat-input {
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-family: monospace;
}

.threat-result {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.threat-example.blocked .threat-result {
    color: #ef4444;
}

.threat-example.safe .threat-result {
    color: #10b981;
}

.demo-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.demo-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.8rem;
    color:#f3e1e1;
}








/* Guardrails Demo Styling */
.guardrails-demo {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.demo-header {
  background: #667eea;
  color: white;
  padding: 16px;
  font-weight: 600;
  text-align: center;
  font-size: 1.1rem;
}

.demo-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.threat-example {
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.threat-example.blocked {
  background: #fff5f5;
  border: 1px solid #fc8181;
  color: #c53030;
}

.threat-example.safe {
  background: #f0fff4;
  border: 1px solid #68d391;
  color: #2f855a;
}

.threat-input {
  font-weight: 600;
  margin-bottom: 4px;
}

.threat-result {
  font-size: 0.85rem;
  opacity: 0.85;
}

.demo-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
  margin-top: 8px;
}

.demo-stat {
  text-align: center;
  flex: 1;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a202c;
}

.stat-label {
  font-size: 0.85rem;
  color: #718096;
}



/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .demo-content {
    padding: 20px;
    gap: 14px;
  }

  .demo-header {
    font-size: 1rem;
    padding: 14px;
  }

  .threat-example {
    font-size: 0.9rem;
    padding: 14px;
  }

  .threat-input {
    font-size: 0.85rem;
  }

  .threat-result {
    font-size: 0.75rem;
  }

  .demo-stats {
    gap: 16px;
    padding-top: 12px;
    flex-wrap: wrap;
  }

  .demo-stat {
    flex: 1 1 50%;
    margin-bottom: 10px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}


/* Mobile: ≤768px */
@media (max-width: 768px) {
  .guardrails-demo,
  .scanner-demo,
  .database-demo,
  .api-demo {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }

  .demo-content {
    padding: 16px;
    gap: 12px;
  }

  .demo-header {
    font-size: 0.95rem;
    padding: 12px;
    text-align: center;
  }

  .threat-example {
    font-size: 0.85rem;
    padding: 12px;
    border-radius: 10px;
  }

  .threat-input {
    font-size: 0.8rem;
  }

  .threat-result {
    font-size: 0.7rem;
  }

  .demo-stats {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    gap: 10px;
  }

  .demo-stat {
    width: 100%;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }
}


/* Scanner Demo */
.scan-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.scan-result:last-of-type {
    border-bottom: none;
}

.scan-category {
    font-weight: 500;
    color: #333;
}

.scan-score {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.scan-score.critical {
    background: #fef2f2;
    color: #ef4444;
}

.scan-score.medium {
    background: #fef3c7;
    color: #f59e0b;
}

.scan-score.safe {
    background: #f0fdf4;
    color: #10b981;
}

.overall-score {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    text-align: center;
}

.score-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

/* Database Demo */
.threat-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.threat-category:last-of-type {
    border-bottom: none;
}

.category-name {
    font-weight: 500;
    color: #333;
}

.category-count {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

.database-stats {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.db-stat {
    font-size: 0.8rem;
    color: #666;
}

/* API Demo */
.api-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.api-metric:last-of-type {
    border-bottom: none;
}

.metric-name {
    font-weight: 500;
    color: #333;
}

.metric-value {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.api-status {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.status-text {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 500;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .scan-result,
  .threat-category,
  .api-metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .scan-score,
  .category-count,
  .metric-value {
    align-self: flex-end;
  }

  .overall-score,
  .database-stats,
  .api-status {
    text-align: center;
  }

  .score-value {
    font-size: 1.8rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .scan-result,
  .threat-category,
  .api-metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .scan-category,
  .category-name,
  .metric-name {
    font-size: 0.95rem;
  }

  .scan-score,
  .category-count,
  .metric-value {
    font-size: 0.85rem;
    align-self: flex-start;
  }

  .overall-score {
    padding-top: 12px;
  }

  .score-value {
    font-size: 1.6rem;
  }

  .database-stats {
    gap: 6px;
  }

  .db-stat {
    font-size: 0.75rem;
  }

  .api-status {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .status-text {
    font-size: 0.85rem;
  }

  .status-indicator {
    width: 10px;
    height: 10px;
  }
}




/* Use Cases Section */
#use-cases {
  padding: 100px 0;
  background: #02093f;
  color: white;
  text-align: center;
}

#use-cases .section-header {
  margin-bottom: 60px;
}

#use-cases .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

#use-cases .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Use Case Cards */
#use-cases .use-case-grid {
  display: grid;
          grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

#use-cases .use-case-card {
  background: white;
  color: #2d3748;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: left;
}

#use-cases  .use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

#use-cases .use-case-icon {
  font-size: 2rem;
  color: #667eea;
  margin-bottom: 16px;
}

#use-cases .use-case-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

#use-cases .use-case-desc {
  font-size: 0.95rem;
  color: #4a5568;
}



   /* GenAI App Safety & Security  */

#genai-safety {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#genai-safety .use-case-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

#genai-safety h2 {
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 16px;
  font-weight: 700;
}

#genai-safety .use-case-tagline {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 32px;
}

#genai-safety h3 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2d3748;
  font-weight: 600;
}


#genai-safety .demo-content {
  padding:0px;
}



#genai-safety .feature-list-detailed,
#genai-safety .use-cases {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

#genai-safety .feature-list-detailed li,
#genai-safety .use-cases li {
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2d3748;
  position: relative;
}

#genai-safety .feature-list-detailed li::before {
 content: '✓';
  color: #037750;
    position: absolute;
  left: 0;
}

#genai-safety .use-cases li::before {
  content: '📌';
  position: absolute;
  left: 0;
}

#genai-safety .use-case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

#genai-safety .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}

#genai-safety .btn-primary {
  background: #667eea;
  color: white;
  border: none;
}

#genai-safety .btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

#genai-safety .btn-outline {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

#genai-safety .btn-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Demo Box */
#genai-safety .genai-demo {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

#genai-safety .demo-header {
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.1rem;
  text-align: center;
}

#genai-safety .app-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 32px;
}

#genai-safety .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  text-align: center;
}

#genai-safety .flow-step .step-icon {
  font-size: 2rem;
  margin-bottom: 6px;
}

#genai-safety .flow-arrow {
  font-size: 1.5rem;
  color: #a0aec0;
}

#genai-safety .protection-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

#genai-safety .protection-stat {
  text-align: center;
}

#genai-safety .stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3748;
}

#genai-safety .stat-label {
  font-size: 0.9rem;
  color: #718096;
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #use-cases .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #use-cases .section-title {
    font-size: 2rem;
  }

  #use-cases .use-case-title {
    font-size: 1.1rem;
  }

  #genai-safety .use-case-content {
    grid-template-columns: repeat(1, 1fr);
  }

  #genai-safety h2 {
    font-size: 2.2rem;
  }

  #genai-safety h3 {
    font-size: 1.2rem;
  }

  #genai-safety .app-flow {
    justify-content: center;
    gap: 16px;
  }

  #genai-safety .flow-step {
    width: 80px;
  }

  #genai-safety .protection-stats {
    justify-content: center;
    gap: 24px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #use-cases {
    padding: 60px 20px;
  }

  #use-cases .use-case-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #use-cases .section-title {
    font-size: 1.8rem;
  }

  #use-cases .section-subtitle {
    font-size: 1rem;
  }

  #use-cases .use-case-title {
    font-size: 1.1rem;
  }

  #use-cases .use-case-desc {
    font-size: 0.9rem;
  }

  #genai-safety {
    padding: 60px 16px;
  }

  #genai-safety h2 {
    font-size: 2rem;
    text-align: center;
  }

  #genai-safety .use-case-tagline {
    font-size: 1rem;
    text-align: center;
  }

  #genai-safety .app-flow {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  #genai-safety .flow-step {
    width: 100%;
    max-width: 120px;
  }

  #genai-safety .flow-arrow {
    display: none;
  }

  #genai-safety .protection-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  #genai-safety .stat-value {
    font-size: 1.4rem;
  }

  #genai-safety .stat-label {
    font-size: 0.85rem;
  }

  #genai-safety .use-case-cta {
    justify-content: center;
  }
}



/* llm-safety */

#llm-safety {
  padding: 100px 20px;
  background: #f9fafe;
  font-family: 'Inter', sans-serif;
}

#llm-safety .use-case-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

#llm-safety h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 700;
}

#llm-safety .use-case-tagline {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 32px;
}

#llm-safety h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2d3748;
  font-weight: 600;
}

#llm-safety .feature-list-detailed,
#llm-safety .use-cases {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

#llm-safety .feature-list-detailed li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2d3748;
  position: relative;
}

#llm-safety .use-cases li {
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2d3748;
  position: relative;
}

#llm-safety .feature-list-detailed li::before {
  position: absolute;
  left: 0;
}

#llm-safety .use-cases li::before {
  content: '📌';
  position: absolute;
  left: 0;
}

#llm-safety .use-case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

#llm-safety .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: 0.3s ease;
}

#llm-safety .btn-primary {
  background-color: #667eea;
  color: white;
  border: none;
}

#llm-safety .btn-primary:hover {
  background-color: #5a67d8;
  transform: translateY(-2px);
}

#llm-safety .btn-outline {
  background-color: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

#llm-safety .btn-outline:hover {
  background-color: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* LLM Demo Panel */
#llm-safety .llm-demo {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}

#llm-safety .demo-header {
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 1.1rem;
  text-align: center;
}

#llm-safety .assessment-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

#llm-safety .assessment-item {
  padding: 16px;
  border-radius: 12px;
  background: #f1f5f9;
  border-left: 6px solid #cbd5e0;
}

#llm-safety .assessment-category {
  font-weight: 600;
  margin-bottom: 4px;
  color: #2d3748;
}

#llm-safety .assessment-score {
  font-size: 0.95rem;
  margin-bottom: 4px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

#llm-safety .assessment-score.high {
  background-color: #fed7d7;
  color: #c53030;
}

#llm-safety .assessment-score.medium {
  background-color: #fefcbf;
  color: #b7791f;
}

#llm-safety .assessment-score.low {
  background-color: #c6f6d5;
  color: #276749;
}

#llm-safety .assessment-score.safe {
  background-color: #e6fffa;
  color: #2c7a7b;
}

#llm-safety .assessment-details {
  color: #4a5568;
  font-size: 0.9rem;
}

#llm-safety .overall-assessment {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

#llm-safety .assessment-score-circle {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 12px;
}

#llm-safety .score-number {
  font-size: 3rem;
  color: #667eea;
  margin-right: 4px;
}

#llm-safety .score-max {
  font-size: 1.2rem;
  color: #718096;
}

#llm-safety .assessment-recommendation {
  font-size: 0.95rem;
  color: #4a5568;
  max-width: 400px;
  margin: 0 auto;
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #llm-safety h2 {
    font-size: 2rem;
    text-align: center;
  }

  #llm-safety h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    text-align: center;
  }

  #llm-safety .use-case-tagline {
    font-size: 1rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #llm-safety .use-case-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #llm-safety .use-case-cta {
    justify-content: center;
  }

  #llm-safety .llm-demo {
    padding: 24px;
  }

  #llm-safety .assessment-results {
    gap: 12px;
  }

  #llm-safety .assessment-score-circle {
    font-size: 2rem;
  }

  #llm-safety .score-number {
    font-size: 2.5rem;
  }

  #llm-safety .score-max {
    font-size: 1rem;
  }

  #llm-safety .assessment-recommendation {
    font-size: 0.9rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #llm-safety {
    padding: 60px 16px;
  }

  #llm-safety h2 {
    font-size: 1.8rem;
  }

  #llm-safety h3 {
    font-size: 1rem;
  }

  #llm-safety .use-case-tagline {
    font-size: 0.95rem;
  }

  #llm-safety .feature-list-detailed li {
    font-size: 0.95rem;
  }

  #llm-safety .use-cases li {
    font-size: 0.95rem;
    padding-left: 24px;
  }

  #llm-safety .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  #llm-safety .assessment-item {
    padding: 12px;
  }

  #llm-safety .assessment-score {
    font-size: 0.85rem;
  }

  #llm-safety .assessment-details {
    font-size: 0.85rem;
  }

  #llm-safety .assessment-score-circle {
    font-size: 1.8rem;
  }

  #llm-safety .score-number {
    font-size: 2.2rem;
  }

  #llm-safety .score-max {
    font-size: 1rem;
  }

  #llm-safety .assessment-recommendation {
    font-size: 0.85rem;
    padding: 0 8px;
  }
}



/* Case Studies Section */

#case-studies {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#case-studies .section-header {
  text-align: center;
  margin-bottom: 64px;
}

#case-studies .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

#case-studies .section-subtitle {
  color: #4a5568;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

#case-studies .case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

#case-studies .case-study-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

#case-studies .case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

#case-studies .case-study-card.featured {
  border-color: #667eea;
}

#case-studies .case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

#case-studies .client-logo {
  font-weight: 600;
  background: #edf2f7;
  color: #2d3748;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
}

#case-studies .case-study-tag {
  background: #667eea;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

#case-studies h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #03193e;
}

#case-studies p {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.5;
}

#case-studies .case-study-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

#case-studies .metric {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 10px 14px;
  flex: 1;
  min-width: 140px;
  text-align: center;
}

#case-studies .metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2b6cb0;
  display: block;
}

#case-studies .metric-label {
  font-size: 0.9rem;
  color: #4a5568;
}

#case-studies .case-study-link {
  display: inline-block;
  margin-top: auto;
  font-weight: 600;
  color: #667eea;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

#case-studies .case-study-link:hover {
  text-decoration: underline;
}

#case-studies .case-studies-cta {
  background: #667eea;
  color: white;
  text-align: center;
  padding: 60px 24px;
  margin-top: 80px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#case-studies .case-studies-cta h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

#case-studies .case-studies-cta p {
  font-size: 1rem;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

#case-studies .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

#case-studies .btn-primary {
  background: white;
  color: #667eea;
}

#case-studies .btn-primary:hover {
  background: #f1f5f9;
  color: #5a67d8;
  transform: translateY(-2px);
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #case-studies {
    padding: 80px 16px;
  }

  #case-studies .section-title {
    font-size: 2rem;
  }

  #case-studies .section-subtitle {
    font-size: 1rem;
  }

  #case-studies .case-studies-grid {
    gap: 24px;
    margin-top: 32px;
  }

  #case-studies .metric {
    padding: 10px;
    min-width: 120px;
  }

  #case-studies .metric-value {
    font-size: 1.1rem;
  }

  #case-studies .metric-label {
    font-size: 0.85rem;
  }

  #case-studies .case-studies-cta h3 {
    font-size: 1.6rem;
  }

  #case-studies .case-studies-cta p {
    font-size: 0.95rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #case-studies {
    padding: 60px 12px;
  }

  #case-studies .section-title {
    font-size: 1.8rem;
  }

  #case-studies .section-subtitle {
    font-size: 0.95rem;
  }

  #case-studies .case-study-card {
    padding: 20px;
  }

  #case-studies .case-study-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #case-studies .client-logo {
    font-size: 0.85rem;
    padding: 5px 12px;
  }

  #case-studies .case-study-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
  }

  #case-studies h3 {
    font-size: 1.1rem;
  }

  #case-studies p {
    font-size: 0.9rem;
  }

  #case-studies .case-study-metrics {
    gap: 12px;
  }

  #case-studies .metric {
    padding: 8px 10px;
    min-width: 100px;
  }

  #case-studies .metric-value {
    font-size: 1rem;
  }

  #case-studies .metric-label {
    font-size: 0.8rem;
  }

  #case-studies .case-studies-cta {
    padding: 40px 16px;
    margin-top: 60px;
  }

  #case-studies .case-studies-cta h3 {
    font-size: 1.4rem;
  }

  #case-studies .case-studies-cta p {
    font-size: 0.9rem;
  }

  #case-studies .btn {
    font-size: 0.95rem;
    padding: 10px 22px;
  }
}




     /* Solutions Section  */

#solutions {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#solutions .section-header {
  text-align: center;
  margin-bottom: 64px;
}

#solutions .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

#solutions .section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

#solutions .solutions-grid {
  display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

#solutions .solution-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

#solutions .solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

#solutions .solution-icon {
  font-size: 2rem;
  background: #edf2f7;
  color: #4a5568;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}

#solutions .solution-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

#solutions .solution-card p {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.5;
}

#solutions .solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

#solutions .solution-features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #2d3748;
}

#solutions .solution-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

#solutions .solution-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 600;
  color: #667eea;
  font-size: 0.95rem;
  transition: 0.2s ease;
  display: inline-block;
}

#solutions .solution-link:hover {
  text-decoration: underline;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #solutions {
    padding: 80px 16px;
  }

  #solutions .section-title {
    font-size: 2.2rem;
  }

  #solutions .section-subtitle {
    font-size: 1rem;
  }

  #solutions .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  #solutions .solution-card {
    padding: 20px;
  }

  #solutions .solution-card h3 {
    font-size: 1.2rem;
  }

  #solutions .solution-card p,
  #solutions .solution-features li {
    font-size: 0.9rem;
  }

  #solutions .solution-link {
    font-size: 0.9rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #solutions {
    padding: 60px 12px;
  }

  #solutions .section-title {
    font-size: 1.9rem;
  }

  #solutions .section-subtitle {
    font-size: 0.95rem;
  }

  #solutions .solution-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  #solutions .solution-card {
    padding: 18px;
  }

  #solutions .solution-card h3 {
    font-size: 1.1rem;
  }

  #solutions .solution-card p {
    font-size: 0.88rem;
  }

  #solutions .solution-features li {
    font-size: 0.88rem;
    padding-left: 20px;
  }

  #solutions .solution-link {
    font-size: 0.88rem;
  }
}




   /* <!-- Resources Section --> */



  
   #resources {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#resources .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#resources .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

#resources .section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 700px;
  margin: 0 auto;
}

#resources .resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

#resources .resource-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#resources .resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

#resources .resource-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: #edf2f7;
  color: #4a5568;
  padding: 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#resources h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 10px;
}

#resources p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 16px;
}

#resources .resource-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#resources .resource-links a {
  color: #667eea;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 18px;
}

#resources .resource-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

#resources .resource-links a:hover::before {
  transform: translateX(3px);
}

#resources .resource-links a:hover {
  color: #5a67d8;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #resources {
    padding: 80px 16px;
  }

  #resources .section-title {
    font-size: 2.1rem;
  }

  #resources .section-subtitle {
    font-size: 1rem;
  }

  #resources .resources-grid {
    gap: 24px;
    margin-top: 32px;
  }

  #resources .resource-card {
    padding: 20px;
  }

  #resources h3 {
    font-size: 1.15rem;
  }

  #resources p,
  #resources .resource-links a {
    font-size: 0.9rem;
  }

  #resources .resource-icon {
    font-size: 2.2rem;
    padding: 8px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #resources {
    padding: 60px 12px;
  }

  #resources .section-title {
    font-size: 1.8rem;
  }

  #resources .section-subtitle {
    font-size: 0.95rem;
  }

  #resources .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  #resources .resource-card {
    padding: 18px;
  }

  #resources h3 {
    font-size: 1.1rem;
  }

  #resources p {
    font-size: 0.88rem;
  }

  #resources .resource-links a {
    font-size: 0.88rem;
    padding-left: 16px;
  }

  #resources .resource-links a::before {
    font-size: 0.85rem;
  }

  #resources .resource-icon {
    font-size: 2rem;
    padding: 6px;
    margin-bottom: 12px;
  }
}









/* Company Section */
#company {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

#company .company-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px;
  align-items: start;
}

#company h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 20px;
}

#company .company-description {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

#company .company-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

#company .company-stat {
  text-align: center;
}

#company .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #667eea;
}

#company .stat-label {
  font-size: 0.95rem;
  color: #4a5568;
  margin-top: 6px;
}

#company .team-info h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 12px;
}

#company .team-info p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 500px;
}

#company .company-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

#company .value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f9fc;
  padding: 10px 16px;
  border-radius: 10px;
  color: #2d3748;
  font-weight: 500;
}

#company .value-icon {
  font-size: 1.2rem;
  color: #667eea;
}

#company .company-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

#company .btn-primary {
  background-color: #667eea;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

#company .btn-primary:hover {
  background-color: #5a67d8;
}

#company .btn-outline {
  border: 2px solid #667eea;
    background-color: #667eea;

  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

#company .btn-outline:hover {
  background-color: #667eea;
  color: white;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #company {
    padding: 80px 16px;
  }

  #company h2 {
    font-size: 2.2rem;
  }

  #company .company-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  #company .company-content {
    gap: 40px;
  }

  #company .team-info h3 {
    font-size: 1.35rem;
  }

  #company .team-info p {
    font-size: 0.95rem;
  }

  #company .company-values {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  #company .value-item {
    font-size: 0.95rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #company {
    padding: 60px 12px;
  }

  #company h2 {
    font-size: 1.8rem;
  }

  #company .company-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  #company .company-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #company .company-stats {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
  }

  #company .stat-number {
    font-size: 1.6rem;
  }

  #company .stat-label {
    font-size: 0.85rem;
  }

  #company .team-info h3 {
    font-size: 1.2rem;
  }

  #company .team-info p {
    font-size: 0.9rem;
  }

  #company .company-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #company .company-cta {
    flex-direction: column;
    gap: 12px;
  }

  #company .btn-primary,
  #company .btn-outline {
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}




/* Contact Section */

#contact {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#contact .contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: flex-start;
}

#contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
}

#contact .contact-description {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
}

#contact .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact .contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-left: 4px solid #667eea;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

#contact .method-icon {
  font-size: 1.8rem;
  color: #667eea;
  line-height: 1;
  width: 36px;
}

#contact .method-content h4 {
  margin: 0 0 4px;
  color: #2d3748;
  font-size: 1rem;
}

#contact .method-content p {
  color: #4a5568;
  font-size: 0.95rem;
  margin: 0;
}

#contact .method-content a {
  color: #667eea;
  text-decoration: underline;
}

#contact .contact-form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

#contact .contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: #2d3748;
}

#contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#contact .form-group {
  margin-bottom: 20px;
}

#contact .form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2d3748;
}

#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  background: #fff;
}

#contact .btn-primary.btn-full {
  width: 100%;
  background: #667eea;
  color: white;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#contact .btn-primary.btn-full:hover {
  background: #5a67d8;
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #contact {
    padding: 80px 16px;
  }

  #contact h2 {
    font-size: 2.2rem;
  }

  #contact .contact-description {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  #contact .contact-form-container {
    padding: 32px;
  }

  #contact .contact-form h3 {
    font-size: 1.3rem;
  }

  #contact .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #contact .form-group input,
  #contact .form-group textarea {
    font-size: 0.95rem;
  }

  #contact .btn-primary.btn-full {
    font-size: 0.95rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #contact {
    padding: 60px 12px;
  }

  #contact h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  #contact .contact-description {
    font-size: 0.95rem;
    text-align: center;
    margin: 0 auto 24px auto;
  }

  #contact .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #contact .contact-method {
    flex-direction: row;
    align-items: start;
    gap: 12px;
  }

  #contact .method-icon {
    font-size: 1.6rem;
    width: 32px;
  }

  #contact .method-content h4 {
    font-size: 0.95rem;
  }

  #contact .method-content p {
    font-size: 0.9rem;
  }

  #contact .contact-form-container {
    padding: 24px;
  }

  #contact .contact-form h3 {
    font-size: 1.2rem;
    text-align: center;
  }

  #contact .form-group label {
    font-size: 0.9rem;
  }

  #contact .form-group input,
  #contact .form-group select,
  #contact .form-group textarea {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  #contact .btn-primary.btn-full {
    font-size: 0.95rem;
    padding: 12px 0;
  }
}





/* Signup Section */


#signup {
  padding: 100px 20px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
}

#signup .signup-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

#signup .signup-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #2d3748;
}

#signup .signup-header p {
  font-size: 1.1rem;
  color: #4a5568;
}

#signup .signup-form-container {
  background: #f8f9ff;
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-top: 40px;
}

#signup .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

#signup .form-group {
  margin-bottom: 20px;
}

#signup .form-group label {
  display: flex;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2d3748;
}

#signup .form-group input,
#signup .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

#signup .form-group input:focus,
#signup .form-group select:focus {
  outline: none;
  border-color: #667eea;
}

#signup .checkbox-group {
  margin-bottom: 16px;
}

#signup .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
  cursor: pointer;
}

#signup .checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 20px;
  accent-color: #667eea;
}

#signup .checkmark {
  display: none; /* not needed with native checkbox */
}

#signup .checkbox-label a {
  color: #667eea;
  text-decoration: underline;
}

#signup .btn-primary.btn-full {
  width: 100%;
  background: #667eea;
  color: white;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

#signup .btn-primary.btn-full:hover {
  background: #5a67d8;
}

#signup .signup-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: #718096;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #signup {
    padding: 80px 16px;
  }

  #signup .signup-header h2 {
    font-size: 2rem;
  }

  #signup .signup-header p {
    font-size: 1rem;
  }

  #signup .signup-form-container {
    padding: 32px;
  }

  #signup .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #signup .btn-primary.btn-full {
    font-size: 0.95rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #signup {
    padding: 60px 12px;
  }

  #signup .signup-content {
    text-align: left;
  }

  #signup .signup-header h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  #signup .signup-header p {
    font-size: 0.95rem;
    text-align: center;
  }

  #signup .signup-form-container {
    padding: 24px;
    margin-top: 32px;
  }

  #signup .form-group input,
  #signup .form-group select {
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  #signup .checkbox-label {
    font-size: 0.85rem;
  }

  #signup .btn-primary.btn-full {
    font-size: 0.95rem;
    padding: 12px 0;
  }

  #signup .signup-note {
    font-size: 0.8rem;
    text-align: center;
  }
}




/* Careers Section */


#careers {
  padding: 100px 20px;
  background: #f8f9ff;
  font-family: 'Inter', sans-serif;
}

#careers .careers-header {
  text-align: center;
  margin-bottom: 64px;
}

#careers .careers-header h2 {
  margin-bottom: 16px;
  font-size: 2.5rem;
  color: #2d3748;
}

#careers .careers-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

#careers .careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

#careers .career-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

#careers .career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-color: #667eea;
}

#careers .career-card h3 {
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 12px;
}

#careers .job-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #718096;
}

#careers .career-card p {
  color: #4a5568;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

#careers .career-link {
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

#careers .career-link:hover {
  color: #5a67d8;
  text-decoration: underline;
}

#careers .careers-benefits {
  text-align: center;
}

#careers .careers-benefits h3 {
  font-size: 1.75rem;
  margin-bottom: 32px;
  color: #2d3748;
}

#careers .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

#careers .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #2d3748;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

#careers .benefit-icon {
  font-size: 1.4rem;
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #careers {
    padding: 80px 16px;
  }

  #careers .careers-header h2 {
    font-size: 2rem;
  }

  #careers .careers-header p {
    font-size: 1rem;
  }

  #careers .career-card {
    padding: 28px;
  }

  #careers .career-card h3 {
    font-size: 1.1rem;
  }

  #careers .career-card p {
    font-size: 0.9rem;
  }

  #careers .career-link {
    font-size: 0.9rem;
  }

  #careers .careers-benefits h3 {
    font-size: 1.5rem;
  }

  #careers .benefit-item {
    font-size: 0.9rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #careers {
    padding: 60px 12px;
  }

  #careers .careers-header h2 {
    font-size: 1.75rem;
  }

  #careers .careers-header p {
    font-size: 0.95rem;
  }

  #careers .careers-grid {
    gap: 24px;
  }

  #careers .career-card {
    padding: 24px;
  }

  #careers .job-details {
    flex-direction: column;
    gap: 8px;
  }

  #careers .career-card p {
    font-size: 0.9rem;
  }

  #careers .career-link {
    font-size: 0.9rem;
  }

  #careers .careers-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  #careers .benefits-grid {
    gap: 16px;
  }

  #careers .benefit-item {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  #careers .benefit-icon {
    font-size: 1.2rem;
  }
}




/* Legal Pages */
.legal-pages {
  padding: 100px 0;
  background: #f9fafb;
  color: #1a1a1a;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  padding: 48px;
  border: 1px solid #eaeaea;
}

.legal-content h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  border-left: 4px solid #667eea;
  padding-left: 12px;
}

.legal-text {
  line-height: 1.75;
  font-size: 1.05rem;
  color: #374151;
}

.legal-text p {
  margin-bottom: 16px;
}

.legal-text strong {
  color: #111827;
}

.legal-text h3 {
  margin: 36px 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 6px;
}

.legal-text ul {
  margin: 16px 0;
  padding-left: 20px;
  list-style: disc;
}

.legal-text li {
  margin-bottom: 8px;
}

.legal-text a {
  color: #4f46e5;
  text-decoration: underline;
  font-weight: 500;
}

.legal-text a:hover {
  text-decoration: none;
  color: #3730a3;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .legal-pages {
    padding: 80px 0;
  }

  .legal-content {
    padding: 36px;
  }

  .legal-content h2 {
    font-size: 1.75rem;
  }

  .legal-text {
    font-size: 1rem;
  }

  .legal-text h3 {
    font-size: 1.15rem;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .legal-pages {
    padding: 60px 0;
  }

  .legal-content {
    padding: 28px 20px;
    margin: 0 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  }

  .legal-content h2 {
    font-size: 1.5rem;
    padding-left: 10px;
  }

  .legal-text {
    font-size: 0.95rem;
  }

  .legal-text h3 {
    font-size: 1.1rem;
  }

  .legal-text ul {
    padding-left: 16px;
  }

  .legal-text {
  word-wrap: break-word;
}

}


/* footer */

#footer {
  background:#02072f;
  color: #e5e7eb;
  padding: 80px 20px 40px;
  font-family: 'Inter', sans-serif;
}

#footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 40px;
}

#footer .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 16px;
}

#footer .logo-text {
  font-size: 1.2rem;
  font-weight: 600;
}

#footer .footer-description {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 280px;
}

#footer .footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f9fafb;
}

#footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-links li {
  margin-bottom: 10px;
}

#footer .footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

#footer .footer-links a:hover {
  color: #ffffff;
}

#footer .footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #9ca3af;
}

#footer .footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#footer .footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer .footer-legal a:hover {
  color: #ffffff;
}

#footer  .footer-brand{
margin-left: 0px !important;
}
#footer  .footer-brand .logo-text{

white-space: nowrap;
}


#footer .footer-section {
margin-left:90px;
}


/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  #footer {
    padding: 60px 20px 30px;
  }

  #footer .footer-content {
    gap: 40px;
  }

  #footer .footer-description {
    max-width: 100%;
  }

  #footer .footer-section {
    margin-left: 40px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  #footer {
    padding: 50px 16px 24px;
  }

  #footer .footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  #footer .logo {
    justify-content: center;
  }

  #footer .footer-section {
    margin-left: 0 !important;
  }

  #footer .footer-description {
    margin: 0 auto;
    text-align: center;
  }

  #footer .footer-bottom {
    text-align: center;
  }

  #footer .footer-legal {
    justify-content: center;
  }
}


/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .learn-more-content,
    .product-detail-grid,
    .company-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .architecture-flow {
        flex-direction: column;
        gap: 16px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .company-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .company-values {
        grid-template-columns: 1fr;
    }

    .product-cta,
    .company-cta {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container,
    .signup-form-container {
        padding: 24px;
    }

    .solutions-grid,
    .resources-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .demo-stats {
        flex-direction: column;
        gap: 16px;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .process-steps {
        gap: 20px;
    }

    /* Use Cases Sections */
    .use-cases {
        padding: 60px 0;
        background: #f8f9ff;
        text-align: center;
    }

    .use-case-detail {
        padding: 100px 0;
        background: white;
    }

    .use-case-detail:nth-child(even) {
        background: #f8f9ff;
    }

    .use-case-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .use-case-tagline {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .use-case-features h3 {
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .use-case-cta {
        display: flex;
        gap: 16px;
        margin-top: 32px;
    }

    /* Use Case Visualizations */
    .genai-demo,
    .llm-demo {
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .app-flow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .flow-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 16px 12px;
        border-radius: 8px;
        background: #f8f9ff;
        min-width: 80px;
        flex: 1;
    }

    .flow-step.security {
        background: #02093f;
        color: white;
    }

    .step-icon {
        font-size: 1.5rem;
    }

    .step-label {
        font-size: 0.8rem;
        font-weight: 500;
        text-align: center;
    }

    .protection-stats {
        display: flex;
        gap: 24px;
        justify-content: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .protection-stat {
        text-align: center;
    }

    .protection-stat .stat-value {
        display: block;
        font-size: 1.3rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 4px;
    }

    .protection-stat .stat-label {
        font-size: 0.8rem;
        color: #666;
    }

    /* LLM Assessment Styles */
    .assessment-results {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .assessment-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .assessment-item:last-child {
        border-bottom: none;
    }

    .assessment-category {
        font-weight: 500;
        color: #333;
        flex: 1;
    }

    .assessment-score {
        padding: 4px 12px;
        border-radius: 16px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        margin-right: 12px;
    }

    .assessment-score.high {
        background: #fef2f2;
        color: #ef4444;
    }

    .assessment-score.medium {
        background: #fef3c7;
        color: #f59e0b;
    }

    .assessment-score.low {
        background: #eff6ff;
        color: #3b82f6;
    }

    .assessment-score.safe {
        background: #f0fdf4;
        color: #10b981;
    }

    .assessment-details {
        font-size: 0.8rem;
        color: #666;
        flex: 1;
        text-align: right;
    }

    .overall-assessment {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }

    .assessment-score-circle {
        display: inline-flex;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 16px;
    }

    .score-number {
        font-size: 3rem;
        font-weight: 700;
        color: #667eea;
    }

    .score-max {
        font-size: 1.2rem;
        color: #666;
        margin-left: 4px;
    }

    .assessment-recommendation {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Case Studies Section */
    .case-studies {
        padding: 100px 0;
        background: #f8f9ff;
    }

    .case-studies-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 32px;
        margin-bottom: 80px;
    }

    .case-study-card {
        background: white;
        padding: 32px;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .case-study-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border-color: #667eea;
    }

    .case-study-card.featured {
        border: 2px solid #667eea;
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    }

    .case-study-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .client-logo {
        font-weight: 700;
        font-size: 1.1rem;
        color: #667eea;
        padding: 8px 16px;
        background: rgba(102, 126, 234, 0.1);
        border-radius: 8px;
    }

    .case-study-tag {
        background: #02093f;
        color: white;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
    }

    .case-study-card h3 {
        margin-bottom: 16px;
        color: #1a1a1a;
        line-height: 1.3;
    }

    .case-study-card p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 24px;
        flex-grow: 1;
    }

    .case-study-metrics {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .case-study-metrics .metric {
        text-align: center;
        flex: 1;
    }

    .case-study-metrics .metric-value {
        display: block;
        font-size: 1.5rem;
        font-weight: 700;
        color: #667eea;
        margin-bottom: 4px;
    }

    .case-study-metrics .metric-label {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.2;
    }

    .case-study-link {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
        align-self: flex-start;
    }

    .case-study-link:hover {
        color: #02093f;
    }

    .case-studies-cta {
        text-align: center;
        background: white;
        padding: 60px 40px;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .cta-content h3 {
        margin-bottom: 16px;
        color: #1a1a1a;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-content p {
        margin-bottom: 32px;
        color: white;
        font-size:0.9rem;
    }



    

    /* Responsive Design for New Sections */
    @media (max-width: 768px) {
        .use-case-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .app-flow {
            flex-direction: column;
            gap: 16px;
        }

        .flow-arrow {
            transform: rotate(90deg);
        }

        .protection-stats {
            flex-direction: column;
            gap: 16px;
        }

        .case-studies-grid {
            grid-template-columns: 1fr;
        }

        .case-study-metrics {
            flex-direction: column;
            gap: 16px;
        }

        .use-case-cta {
            flex-direction: column;
            align-items: center;
        }

        .case-studies-cta {
            padding: 40px 20px;
        }

        .assessment-results {
            gap: 12px;
        }

        .assessment-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .assessment-details {
            text-align: left;
        }
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.show .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.modal-header h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-content {
    padding: 32px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modal-info p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid #e6e8ff;
}

.highlight-item i {
    color: #667eea;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.highlight-item span {
    color: #333;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.contact-cta {
    margin-top: 32px;
    text-align: center;
}

/* Contact Form Improvements */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .btn {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Modal */
@media (max-width: 1024px) {
    .modal-container {
        width: 95%;
        max-width: 800px;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .modal-header {
        padding: 24px 24px 20px;
    }
    
    .modal-content {
        padding: 24px 24px 24px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 20px 20px 16px;
    }
    
    .modal-content {
        padding: 20px 20px 20px;
        gap: 24px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .contact-highlights {
        gap: 12px;
    }
    
    .highlight-item {
        padding: 12px;
    }
    
    .highlight-item i {
        font-size: 1.1rem;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 12px 14px;
    }
    
    .contact-form .btn {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-height: none;
    }
    
    .modal-header {
        padding: 16px 16px 12px;
    }
    
    .modal-content {
        padding: 16px 16px 16px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
}