:root {
  --accent: #1e5aa8;
  --accent-light: #3a7bd5;
  --dark-blue: #1e293b;
  --light-blue: #e0f2fe;
  --muted: #6b7280;
  --bg: #f8fafc;
  --rounded: 16px;
}

.site-navbar {
  border-bottom: 1px solid rgba(15,23,42,0.04);
  background: #fff;
  padding: 10px 0;
  position: relative;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  font-size: 1.5rem;
}

.site-logo .circle {
  width: 36px; 
  height: 36px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  color: #fff; 
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Bematore Hero */
.bematore-hero {
  padding: 20px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.bematore-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 1rem;
}

.bematore-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Feature Cards */
.bematore-feature-card {
  background: #fff;
  border-radius: var(--rounded);
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(2,6,23,0.06);
  border: 1px solid rgba(15,23,42,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.bematore-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bematore-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(2,6,23,0.12);
}

.bematore-feature-card:hover::before {
  transform: scaleX(1);
}

.bematore-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(30,90,168,0.18);
}

/* Image + Text Boxes for Left Side */
.image-text-box {
  background: #fff;
  border-radius: var(--rounded);
  box-shadow: 0 4px 20px rgba(2,6,23,0.06);
  border: 1px solid rgba(15,23,42,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.image-text-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(2,6,23,0.12);
}

.image-text-box .box-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.image-text-box .box-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.image-text-box .box-content h4 {
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 600;
}

.image-text-box .box-content p {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.6;
  flex: 1;
}

/* Layout for Features Section */
.features-container {
  display: flex;
  gap: 2rem;
}

.left-image-boxes {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.right-feature-cards {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Solutions Section */
.solutions-section {
  background: #ffffff;
}

.solution-item {
  padding: 1.5rem;
  border-radius: var(--rounded);
  background: #fff;
  box-shadow: 0 4px 20px rgba(2,6,23,0.06);
  border: 1px solid rgba(15,23,42,0.05);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.solution-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(2,6,23,0.12);
}

.solution-badge {
  display: inline-block;
  background: rgba(30,90,168,0.1);
  color: var(--accent);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.bematore-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  border: 0;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(30,90,168,0.18);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,90,168,0.25);
  color: white;
}

.cta-button.outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.cta-button.outline:hover {
  background: var(--accent);
  color: white;
}

/* Tech Stack */
.tech-stack {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.tech-item {
  text-align: center;
  padding: 1.5rem;
}

.tech-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .left-image-boxes,
  .right-feature-cards {
    flex: 1;
  }
  
  .left-image-boxes {
    flex-direction: row;
  }
  
  .image-text-box .box-image {
    height: 160px;
  }
  
  .bematore-stats {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .bematore-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .stat-item {
    flex: 0 0 45%;
    margin-bottom: 1rem;
  }
  
  .left-image-boxes {
    flex-direction: column;
  }
  
  .image-text-box .box-image {
    height: 150px;
  }
  
  .bematore-feature-card {
    padding: 1.25rem;
  }
  
  .solution-item {
    padding: 1.25rem;
  }
  
  .image-text-box .box-content {
    padding: 1.25rem;
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 0 0 100%;
  }
  
  .bematore-stats {
    gap: 0.5rem;
  }
  
  .image-text-box .box-image {
    height: 140px;
  }
  
  .bematore-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .image-text-box .box-content {
    padding: 1rem;
  }
}