/* B2B Landing Page Styles */
.b2b-landing {
  background: white;
}

.b2b-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 100vh;
  padding: 0 64px 100px;
  position: relative;
  overflow: hidden;
}

.b2b-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.b2b-hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.b2b-hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.b2b-hero-logo-icon {
  font-size: 2rem;
}

.b2b-hero-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.b2b-hero-nav-links {
  display: flex;
  gap: 32px;
}

.b2b-hero-nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.b2b-hero-nav-links a:hover {
  color: white;
}

.b2b-hero-cta {
  display: flex;
  gap: 12px;
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.b2b-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 80px auto 0;
  position: relative;
  z-index: 10;
}

.b2b-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.2);
  color: var(--primary-400);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.b2b-hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.b2b-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
}

.b2b-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.b2b-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.b2b-hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-400);
  margin-bottom: 4px;
}

.b2b-hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.b2b-hero-visual {
  position: relative;
}

.b2b-hero-card {
  background: white;
  border-radius: var(--radius-2xl);
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.b2b-hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.b2b-hero-card-icon {
  font-size: 2rem;
}

.b2b-hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--slate-900);
}

.b2b-hero-card-subtitle {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

.b2b-hero-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.b2b-mini-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
}

.b2b-mini-stat-label {
  font-size: 0.8125rem;
  color: var(--slate-500);
  margin-top: 4px;
}

.b2b-mini-stat.highlight {
  background: var(--primary-50);
  padding: 16px;
  border-radius: var(--radius-lg);
}

.b2b-mini-stat.highlight .b2b-mini-stat-value {
  color: var(--primary-700);
}

.b2b-hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-xl);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.b2b-hero-float-card.card-1 {
  top: 20%;
  right: -40px;
  animation-delay: 0s;
}

.b2b-hero-float-card.card-2 {
  bottom: 15%;
  left: -40px;
  animation-delay: 1.5s;
}

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

.b2b-float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-float-icon.green {
  background: var(--primary-100);
  color: var(--primary-600);
}

.b2b-float-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.b2b-float-text {
  font-weight: 700;
  color: var(--slate-900);
}

.b2b-float-subtext {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* Section Styles */
.b2b-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.b2b-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.b2b-section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.b2b-section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Value Section */
.b2b-value {
  padding: 100px 64px;
  background: var(--slate-50);
}

.b2b-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.b2b-value-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  padding: 32px;
  transition: all var(--transition-base);
}

.b2b-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.b2b-value-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.b2b-value-icon.green {
  background: var(--primary-100);
}

.b2b-value-icon.blue {
  background: #dbeafe;
}

.b2b-value-icon.purple {
  background: #f3e8ff;
}

.b2b-value-icon.orange {
  background: #ffedd5;
}

.b2b-value-icon.teal {
  background: #ccfbf1;
}

.b2b-value-icon.red {
  background: #fee2e2;
}

.b2b-value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.b2b-value-desc {
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.b2b-value-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--slate-50);
  border-radius: var(--radius-lg);
}

.b2b-value-highlight-icon {
  color: var(--primary-600);
}

.b2b-value-highlight-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-700);
}

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

  .b2b-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .b2b-hero {
    padding: 0 24px 60px;
  }

  .b2b-value-grid {
    grid-template-columns: 1fr;
  }

  .b2b-hero-nav {
    flex-direction: column;
    gap: 16px;
  }

  .b2b-hero-nav-links {
    display: none;
  }
}
