/* ==========================================================================
   B2B Page Styles
   ========================================================================== */


/* B2B Hero
   ========================================================================== */

#b2b-hero {
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 160px 0 100px;
}

#b2b-hero h1 {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.b2b-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.b2b-hero-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.b2b-hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 120px;
  height: 110px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.b2b-hero-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.b2b-hero-icon i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-hero-icon span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  #b2b-hero {
    text-align: center;
    padding: 140px 0 80px;
  }

  #b2b-hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  #b2b-hero h1 {
    font-size: 26px;
  }
}


/* Introduction Section
   ========================================================================== */

#b2b-intro {
  padding: 80px 0;
  background: var(--color-bg);
}

.b2b-intro-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.b2b-intro-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.b2b-intro-icon i {
  font-size: 32px;
  color: #fff;
}

.b2b-intro-card p {
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}


/* Products Section
   ========================================================================== */

#b2b-products {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.b2b-product-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.b2b-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.b2b-product-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
}

.b2b-product-icon i {
  font-size: 28px;
  color: #fff;
}

.b2b-product-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.b2b-product-card p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.b2b-products-note {
  color: var(--color-text-light);
  font-size: 16px;
}

.b2b-products-note a {
  font-weight: 500;
}


/* B2B Model & European Supply
   ========================================================================== */

#b2b-model {
  padding: 100px 0;
  background: var(--color-bg);
}

.b2b-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  transition: all 0.3s;
}

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

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

.b2b-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
}

.b2b-info-icon i {
  font-size: 24px;
  color: #fff;
}

.b2b-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.b2b-info-card > p {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.b2b-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2b-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.b2b-info-list li > i {
  font-size: 22px;
  color: var(--color-primary);
  margin-top: 2px;
  min-width: 22px;
}

.b2b-info-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.b2b-info-list li span {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}


/* How It Works / Process Steps
   ========================================================================== */

#b2b-process {
  padding: 100px 0;
  background: var(--color-bg-alt);
}

.b2b-step-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.b2b-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.b2b-step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
}

.b2b-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 125, 191, 0.1), rgba(130, 106, 173, 0.1));
  border-radius: var(--radius-md);
  margin: 8px auto 20px;
}

.b2b-step-icon i {
  font-size: 26px;
  color: var(--color-primary);
}

.b2b-step-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.b2b-step-card p {
  color: var(--color-text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}


/* Contact / CTA Section
   ========================================================================== */

#b2b-contact {
  padding: 100px 0 60px;
  background: var(--color-bg);
}

.b2b-cta-card {
  position: relative;
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.b2b-cta-card .cta-content p {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-cta-card .btn-primary-gradient {
  font-size: 16px;
  padding: 14px 36px;
}

@media (max-width: 575px) {
  .b2b-cta-card {
    padding: 40px 24px;
  }
}


/* Compliance Note
   ========================================================================== */

#b2b-compliance {
  padding: 0 0 100px;
  background: var(--color-bg);
}

.b2b-compliance-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.b2b-compliance-note > i {
  font-size: 22px;
  color: var(--color-primary);
  margin-top: 2px;
  min-width: 22px;
}

.b2b-compliance-note p {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .b2b-compliance-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
