/* B2B Static Product and Landing Pages Styling */

.b2b-page {
  display: flex;
  flex-direction: column;
}

.b2b-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* Hero Section */
.b2b-hero {
  position: relative;
  background: linear-gradient(135deg, #071f30 0%, #0f3d5e 60%, #154c74 100%);
  color: #ffffff;
  padding: 72px 0 80px;
  overflow: hidden;
}

.b2b-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 155, 142, 0.2) 0%, rgba(26, 155, 142, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.b2b-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.b2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(26, 155, 142, 0.2);
  border: 1px solid rgba(26, 155, 142, 0.4);
  color: #7ce7dd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.b2b-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #ffffff;
}

.b2b-hero h1 span {
  color: #38d9c5;
}

.b2b-hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 720px;
}

.b2b-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.b2b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.b2b-btn--primary {
  background: #1a9b8e;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(26, 155, 142, 0.35);
}

.b2b-btn--primary:hover {
  background: #148075;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 155, 142, 0.45);
  color: #ffffff;
}

.b2b-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.b2b-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.b2b-btn--dark {
  background: var(--primary-blue, #0f3d5e);
  color: #ffffff;
}

.b2b-btn--dark:hover {
  background: var(--dark-blue, #0a2e47);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Breadcrumb */
.b2b-breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 61, 94, 0.08);
  padding: 12px 0;
  font-size: 13px;
  color: var(--text-gray, #5a6a76);
}

.b2b-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.b2b-breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 8px;
  color: #a0aec0;
}

.b2b-breadcrumb a {
  color: var(--primary-blue, #0f3d5e);
  font-weight: 600;
}

.b2b-breadcrumb a:hover {
  text-decoration: underline;
}

/* Highlights / Stats strip */
.b2b-stats {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 61, 94, 0.08);
  padding: 32px 0;
}

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

.b2b-stat-card {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(15, 61, 94, 0.08);
}

.b2b-stat-card:last-child {
  border-right: none;
}

.b2b-stat-card strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue, #0f3d5e);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.b2b-stat-card span {
  font-size: 14px;
  color: var(--text-gray, #5a6a76);
  font-weight: 600;
}

/* Section Header */
.b2b-section {
  padding: 72px 0;
}

.b2b-section--alt {
  background: #ffffff;
}

.b2b-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.b2b-section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-teal, #1a9b8e);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.b2b-section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark-blue, #0a2e47);
  letter-spacing: -0.02em;
  line-height: 1.24;
  margin-bottom: 14px;
}

.b2b-section-header p {
  font-size: 16px;
  color: var(--text-gray, #5a6a76);
  line-height: 1.6;
}

/* Feature Grid Cards */
.b2b-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.b2b-feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 61, 94, 0.08);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(15, 61, 94, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.b2b-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 61, 94, 0.08);
  border-color: rgba(26, 155, 142, 0.3);
}

.b2b-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 155, 142, 0.1);
  color: var(--accent-teal, #1a9b8e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.b2b-feature-card h3 {
  font-size: 19px;
  font-weight: 750;
  color: var(--dark-blue, #0a2e47);
  margin-bottom: 10px;
}

.b2b-feature-card p {
  font-size: 14px;
  color: var(--text-gray, #5a6a76);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.b2b-feature-card__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-teal, #1a9b8e);
  background: rgba(26, 155, 142, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

/* Audience Dual Column Comparison */
.b2b-audiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.b2b-audience-box {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(15, 61, 94, 0.1);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(15, 61, 94, 0.05);
}

.b2b-audience-box__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-blue, #0f3d5e);
  background: var(--soft-blue, #e8f1f7);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.b2b-audience-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-blue, #0a2e47);
  margin-bottom: 12px;
}

.b2b-audience-box p {
  font-size: 15px;
  color: var(--text-gray, #5a6a76);
  line-height: 1.6;
  margin-bottom: 20px;
}

.b2b-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.b2b-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark, #14212b);
  line-height: 1.5;
}

.b2b-checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #e6f6f4;
  color: var(--accent-teal, #1a9b8e);
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 1px;
}

/* Steps Process */
.b2b-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.b2b-step-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(15, 61, 94, 0.08);
  padding: 28px;
  position: relative;
}

.b2b-step-item__number {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background: var(--primary-blue, #0f3d5e);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.b2b-step-item h3 {
  font-size: 18px;
  font-weight: 750;
  color: var(--dark-blue, #0a2e47);
  margin-bottom: 8px;
}

.b2b-step-item p {
  font-size: 14px;
  color: var(--text-gray, #5a6a76);
  line-height: 1.6;
}

/* FAQ Accordion */
.b2b-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.b2b-faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 61, 94, 0.1);
  border-radius: 12px;
  padding: 18px 24px;
  transition: border-color 0.2s ease;
}

.b2b-faq-item[open] {
  border-color: rgba(26, 155, 142, 0.5);
}

.b2b-faq-item summary {
  font-size: 16px;
  font-weight: 750;
  color: var(--dark-blue, #0a2e47);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.b2b-faq-item summary::-webkit-details-marker {
  display: none;
}

.b2b-faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue, #0f3d5e);
  transition: transform 0.2s ease;
}

.b2b-faq-item[open] summary::after {
  content: '−';
}

.b2b-faq-item p {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-gray, #5a6a76);
  line-height: 1.65;
}

/* CTA Band */
.b2b-cta-band {
  background: linear-gradient(135deg, #0a2e47 0%, #0f3d5e 100%);
  color: #ffffff;
  padding: 64px 0;
  text-align: center;
  border-radius: 20px;
  margin: 20px 0 60px;
}

.b2b-cta-band h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.b2b-cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.b2b-cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Product Navigation Hub */
.b2b-product-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.b2b-product-nav-card {
  background: #ffffff;
  border: 1px solid rgba(15, 61, 94, 0.1);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.b2b-product-nav-card:hover {
  border-color: var(--accent-teal, #1a9b8e);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 61, 94, 0.08);
}

.b2b-product-nav-card strong {
  font-size: 15px;
  color: var(--dark-blue, #0a2e47);
  font-weight: 750;
}

.b2b-product-nav-card span {
  font-size: 12px;
  color: var(--text-gray, #5a6a76);
}

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

  .b2b-section {
    padding: 48px 0;
  }

  .b2b-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(15, 61, 94, 0.08);
    padding-bottom: 16px;
  }

  .b2b-stat-card:last-child {
    border-bottom: none;
  }
}
