/* B2B Commerce Suite Page Styles */
#page-b2b { --accent: var(--primary); }

/* Hero */
#page-b2b .hero {
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(249,115,22,0.06) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
#page-b2b .hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#page-b2b .hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #111;
}
#page-b2b .hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
#page-b2b .hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
#page-b2b .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}
#page-b2b .stat {
  text-align: center;
}
#page-b2b .stat-value {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
}
#page-b2b .stat-label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Section titles */
#page-b2b .section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  text-align: center;
  margin: 0 0 12px;
  color: #111;
}
#page-b2b .section-subtitle {
  text-align: center;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* Problem/Solution Grid */
#page-b2b .problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 40px auto 0;
}
@media (max-width: 768px) {
  #page-b2b .problem-grid { grid-template-columns: 1fr; }
}
#page-b2b .problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
#page-b2b .problem-card--solution {
  border-color: var(--primary);
  border-width: 2px;
}
#page-b2b .problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#page-b2b .problem-icon svg {
  width: 24px;
  height: 24px;
}
#page-b2b .problem-icon--red {
  background: #fef2f2;
  color: #dc2626;
}
#page-b2b .problem-icon--green {
  background: #f0fdf4;
  color: #16a34a;
}
#page-b2b .problem-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 12px;
}
#page-b2b .problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#page-b2b .problem-card li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #4b5563;
  font-size: 15px;
}
#page-b2b .problem-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9ca3af;
}
#page-b2b .problem-card--solution li::before {
  content: "✓";
  color: #16a34a;
  font-weight: bold;
}

/* Modules Grid */
#page-b2b .modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  #page-b2b .modules-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  #page-b2b .modules-grid { grid-template-columns: 1fr; }
}
#page-b2b .module-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#page-b2b .module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
#page-b2b .module-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #f97316);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
#page-b2b .module-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
#page-b2b .module-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #111;
}
#page-b2b .module-card > p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
#page-b2b .module-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  border-top: 1px solid #f3f4f6;
  padding-top: 12px;
}
#page-b2b .module-features li {
  font-size: 13px;
  color: #4b5563;
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
#page-b2b .module-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Benefits Grid */
#page-b2b .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #page-b2b .benefits-grid { grid-template-columns: 1fr; }
}
#page-b2b .benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}
#page-b2b .benefit-check {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}
#page-b2b .benefit-card span {
  font-size: 15px;
  color: #374151;
  line-height: 1.4;
}

/* Audience Grid */
#page-b2b .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  #page-b2b .audience-grid { grid-template-columns: 1fr; }
}
#page-b2b .audience-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
#page-b2b .audience-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #111;
}
#page-b2b .audience-card p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Comparison Table */
#page-b2b .compare-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 800px;
}
#page-b2b .compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
#page-b2b .compare-table th,
#page-b2b .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}
#page-b2b .compare-table th {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
#page-b2b .compare-table td {
  font-size: 14px;
  color: #374151;
}
#page-b2b .compare-table tr:last-child td {
  border-bottom: none;
}
#page-b2b .compare-col--bad {
  background: #fef2f2;
  color: #991b1b !important;
}
#page-b2b .compare-col--good {
  background: #f0fdf4;
  color: #166534 !important;
  font-weight: 600;
}
#page-b2b .compare-table th.compare-col--bad {
  background: #dc2626;
}
#page-b2b .compare-table th.compare-col--good {
  background: #16a34a;
}

/* FAQ */
#page-b2b .faq-list {
  max-width: 700px;
  margin: 0 auto;
}
#page-b2b .faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
#page-b2b .faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#page-b2b .faq-item summary::-webkit-details-marker {
  display: none;
}
#page-b2b .faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--primary);
  font-weight: 400;
}
#page-b2b .faq-item[open] summary::after {
  content: "−";
}
#page-b2b .faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Section */
#page-b2b .bg-primary-gradient {
  background: linear-gradient(135deg, #111 0%, #1f2937 100%);
}
#page-b2b .cta-box {
  text-align: center;
  color: #fff;
  padding: 20px 0;
}
#page-b2b .cta-box h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 12px;
}
#page-b2b .cta-box p {
  color: #9ca3af;
  margin: 0 0 28px;
  font-size: 16px;
}
#page-b2b .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
#page-b2b .btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

/* Background helpers */
#page-b2b .bg-gray-50 {
  background: #f9fafb;
}
#page-b2b .py-12 {
  padding-top: 64px;
  padding-bottom: 64px;
}
