/* Futuristic Landing Page CSS for Bugzee Uptime */
/* Rebranded: Bee/Yellow Theme */

:root {
  --bg-dark: #050b14;
  --bg-card: #0f1623;
  --bg-card-hover: #162032;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  
  /* Bugzee Brand (Yellow/Orange) */
  --accent-yellow: #ff9d00;
  --accent-gold: #ffd08a;
  --accent-orange: #ff6a00;
  --accent-dark-yellow: #b85a00;
  
  /* Replaces previous cyan/purple/pink */
  --accent-primary: var(--accent-yellow);
  --accent-secondary: var(--accent-orange);
  
  --gradient-primary: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  --gradient-text: linear-gradient(90deg, #ffffff 0%, rgba(255, 157, 0, 0.95) 100%);
  --glow-primary: 0 0 22px rgba(255, 157, 0, 0.28);
  --border-color: rgba(255, 255, 255, 0.08);
  
  /* Typography System */
  --font-family-base: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-display: 'Baloo 2', 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-family-brand: 'Baloo 2', system-ui, cursive;
  
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h2: clamp(2rem, 4vw, 3.5rem);
  --fs-h3: clamp(1.5rem, 3vw, 2.5rem);
  --fs-body: 1.125rem;
  --fs-small: 0.875rem;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-family-base);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Complex Background: Radial Glows + Hex Pattern */
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(255, 157, 0, 0.10) 0%, transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(255, 106, 0, 0.09) 0%, transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--accent-yellow);
  transition: all 0.3s ease;
  font-family: var(--font-family-base);
  font-weight: var(--fw-medium);
}

a:hover {
  color: var(--accent-yellow);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--font-family-display);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2.5rem;
}

.b2b-section-title {
  font-family: var(--font-family-display);
  font-size: var(--fs-h2);
  margin-bottom: 2rem;
}

p {
  color: var(--text-secondary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.text-muted {
  color: var(--text-secondary) !important;
}

/* Utilities */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2b-section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(255, 157, 0, 0.10);
  color: var(--accent-yellow);
  font-family: var(--font-family-display);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 157, 0, 0.24);
  box-shadow: 0 0 12px rgba(255, 157, 0, 0.10);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Bee/Organic Elements */
.bee-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.blob-shape {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  border-radius: 50%;
}

.blob-1 {
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-yellow);
  animation: blobFloat 20s infinite alternate;
}

.blob-2 {
  bottom: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--accent-orange);
  animation: blobFloat 25s infinite alternate-reverse;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Honeycomb Separator */
.section-separator-honeycomb {
  height: 60px;
  width: 100%;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 193, 7, 0.15) 1px, transparent 0);
  background-size: 30px 30px;
  opacity: 0.5;
  margin: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

/* Feature Grid Refactor */
.b2b-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  row-gap: 32px;
  padding: 0 24px;
  align-items: center;
}

.b2b-feature-col-content {
  grid-column: span 6;
}

.b2b-feature-col-image {
  grid-column: span 6;
}

/* Feature Separator (inside grid or between rows) */
.b2b-feature-separator {
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  opacity: 0.2; /* Subtle */
  margin: 3rem 0;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .b2b-feature-col-content,
  .b2b-feature-col-image {
    grid-column: span 12;
  }
  
  .b2b-feature-col-image {
    order: -1; /* Image first on mobile usually, or keep consistent */
    margin-bottom: 2rem;
  }
}

/* Navbar */
/* Fixed navbar spacing fix */
.b2b-hero {
  position: relative;
  padding-top: 16rem; /* Increased from 12rem to ensure no overlap */
  padding-bottom: 12rem; /* Increased from 6rem to provide space for scroll indicator */
  background: radial-gradient(circle at 50% 0%, rgba(255, 157, 0, 0.16), transparent 70%);
  overflow: hidden;
}

.b2b-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.b2b-hero-choices {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-choice-card {
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
}

.b2b-choice-card-featured {
  border-color: rgba(255, 157, 0, 0.22);
  background: radial-gradient(circle at 20% 0%, rgba(255, 157, 0, 0.16), transparent 55%), rgba(255, 255, 255, 0.02);
}

.b2b-choice-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 0, 0.26);
  background: rgba(255, 157, 0, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.b2b-choice-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.5rem;
  flex: 0 0 auto;
}

.b2b-choice-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.b2b-choice-list li {
  padding-left: 1.85rem;
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.b2b-choice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 6px rgba(255, 157, 0, 0.12);
}

.b2b-choice-list-2col {
  grid-template-columns: 1fr 1fr;
}

.b2b-hero-visual {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.65);
}

.b2b-hero-visual img {
  display: block;
  border-radius: 22px;
}

.b2b-workflow-step {
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.b2b-workflow-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 157, 0, 0.14);
  border: 1px solid rgba(255, 157, 0, 0.24);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-family-display);
  flex: 0 0 auto;
}

.b2b-workflow-title {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.2;
}

.b2b-workflow-sub {
  color: var(--text-secondary);
  margin-top: 0.2rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .b2b-choice-card {
    padding: 1.75rem;
  }

  .b2b-choice-list-2col {
    grid-template-columns: 1fr;
  }
}

.b2b-hero-dashboard {
  position: relative;
  border-radius: 20px;
  overflow: visible; /* Changed to visible for floating elements */
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 1000px;
  transition: transform 0.5s ease;
}

.b2b-hero-dashboard:hover {
  transform: translateY(-5px);
}

.b2b-hero-dashboard img {
  border-radius: 20px;
  display: block;
}

/* Floating Hero Decorations */
.hero-decoration {
  position: absolute;
  background: rgba(15, 22, 35, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: floatBadge 6s ease-in-out infinite;
}

.hero-decoration i {
  width: 40px;
  height: 40px;
  background: rgba(255, 157, 0, 0.16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.25rem;
}

.hero-decoration span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-decoration strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
  font-family: var(--font-family-display);
}

.hero-badge-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.hero-badge-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

.hero-badge-3 {
  top: 18%;
  right: -6%;
  animation-delay: 1.5s;
}

.hero-badge-4 {
  bottom: 38%;
  left: -6%;
  animation-delay: 2.25s;
}

.hero-badge-5 {
  top: 58%;
  right: -6%;
  animation-delay: 4.25s;
}

.hero-badge-6 {
  bottom: -4%;
  left: 10%;
  animation-delay: 5.25s;
}

.b2b-hero-tertiary {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  padding: 0.9rem 0.5rem;
}

.b2b-hero-tertiary:hover,
.b2b-hero-tertiary:focus {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 6px;
}

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

@media (max-width: 992px) {
  .hero-decoration {
    display: none; /* Hide on smaller screens */
  }
}

/* Scroll Down Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-down-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-secondary);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 2px;
  position: absolute;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 0.7; transform: translate(-50%, 0); }
}

/* Glassmorphism Cards */
.b2b-card-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b2b-card-glass:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 193, 7, 0.2);
}

/* Features */
.b2b-features {
  padding: 8rem 0;
  position: relative;
}

/* Animated Background Pattern for Features */
.b2b-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l25.98 15v30L30 60 4.02 45V15z' fill='none' stroke='%23FFC107' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: -1;
  animation: bgMove 100s linear infinite;
}

@keyframes bgMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.b2b-hero p.lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 10px 34px rgba(255, 157, 0, 0.20), 0 18px 60px rgba(255, 106, 0, 0.14);
  transition: all 0.3s ease;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: var(--font-family-display);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 12px 44px rgba(255, 157, 0, 0.28), 0 22px 80px rgba(255, 106, 0, 0.18);
  background: linear-gradient(135deg, rgba(255, 157, 0, 0.98) 10%, rgba(255, 106, 0, 0.98) 110%);
  border: none;
  color: #fff;
}

.btn-outline-primary {
  border: 1px solid var(--accent-yellow);
  color: var(--accent-yellow);
  background: transparent;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: var(--font-family-display);
  font-weight: 600;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background: rgba(255, 157, 0, 0.10);
  color: #fff;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 20px rgba(255, 157, 0, 0.22);
}

.btn-light {
  background: #fff;
  color: var(--bg-dark);
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-light:hover {
  background: #f0f0f0;
}

.b2b-feature-card {
  padding: 2.5rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.b2b-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 157, 0, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.b2b-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 157, 0, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.b2b-feature-card:hover::after {
  opacity: 1;
}

.b2b-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 157, 0, 0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
  font-size: 1.75rem;
  box-shadow: 0 0 18px rgba(255, 157, 0, 0.10);
  transition: all 0.3s ease;
}

.b2b-feature-card:hover .b2b-feature-icon {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 0 28px rgba(255, 157, 0, 0.22);
  transform: scale(1.1) rotate(5deg);
}

.b2b-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Problem/Solution Specifics */
.b2b-problem-card {
  border-left: 4px solid var(--accent-orange);
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.05), transparent);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

.b2b-solution-card {
  border-left: 4px solid var(--accent-yellow);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.05), transparent);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

/* Leaderboard */
.b2b-leaderboard-table {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.table {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.table th {
  background: rgba(0, 0, 0, 0.3);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 1.2rem 1.5rem;
  border-top: none;
}

.table td {
  border-bottom: 1px solid var(--border-color);
  padding: 1.2rem 1.5rem;
  vertical-align: middle;
  border-top: none;
}

.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.b2b-uptime-badge {
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent-yellow);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

/* How It Works */
.b2b-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

/* Connecting line for steps (desktop) */
@media (min-width: 992px) {
  .b2b-step::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--accent-yellow) 0, var(--accent-yellow) 10px, transparent 10px, transparent 20px);
    opacity: 0.3;
    z-index: 0;
  }
  .col-lg:last-child .b2b-step::before {
    display: none;
  }
}

.b2b-step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
  position: relative;
  z-index: 1;
}

.b2b-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* FAQ */
.accordion-item {
  background: transparent;
  border-bottom: 1px solid var(--border-color) !important;
  border-top: none;
  border-left: none;
  border-right: none;
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: none !important;
  font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--accent-yellow);
}

.accordion-button::after {
  filter: invert(1) sepia(1) saturate(5) hue-rotate(0deg) brightness(2); /* Yellowish */
}

.accordion-body {
  color: var(--text-secondary);
  padding-bottom: 1.5rem;
}

/* Trust Strip Enhancement */
.b2b-trust {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.b2b-trust-title {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  margin-bottom: 3rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Marquee Animation */
.b2b-trust-logos-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.b2b-trust-logos-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
}

.b2b-trust-logos-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-logo {
  height: 40px;
  width: auto;
  filter: grayscale(100%) opacity(0.5) brightness(2);
  transition: all 0.3s;
}

.trust-logo:hover {
  filter: grayscale(0%) opacity(1) brightness(1.2);
  transform: scale(1.1);
}

.logo-placeholder {
  width: 140px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  display: inline-block;
}

/* Quick Contact */
.b2b-quick-contact {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.b2b-quick-contact .b2b-card-glass {
  background: rgba(255, 193, 7, 0.03);
  border: 1px solid rgba(255, 193, 7, 0.2);
  position: relative;
  z-index: 2;
}

.b2b-quick-contact .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
  border: none;
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.b2b-quick-contact .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

/* Why Bugzee */
.b2b-why-list {
  list-style: none;
  padding: 0;
}

.b2b-why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.b2b-why-list li:hover {
  border-color: rgba(255, 193, 7, 0.2);
  background: rgba(255, 193, 7, 0.05);
  transform: translateX(5px);
}

.check-icon {
  margin-right: 1.5rem;
  color: #000;
  background: var(--accent-yellow);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  box-shadow: 0 0 12px rgba(255, 157, 0, 0.26);
}

/* Final CTA */
.b2b-final-cta {
  background: linear-gradient(135deg, #071532, #050b14);
  text-align: center;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.b2b-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 157, 0, 0.18), transparent 70%);
}

.b2b-final-cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.b2b-final-cta p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.b2b-footer {
  background: #020408;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
  position: relative;
}

.b2b-footer-brand {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-family: var(--font-family-brand);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2b-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.b2b-footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.b2b-footer-links a:hover {
  color: var(--accent-yellow);
}

.b2b-footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
}

/* Navbar Overrides */
.navbar {
  background: rgba(5, 11, 20, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s ease, padding 0.3s ease;
}

/* Mobile Navbar Customization */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(5, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-item:last-child {
    border-bottom: none;
    padding-top: 1.5rem;
  }

  .nav-link {
    font-size: 1.1rem;
    display: inline-block;
  }
}

.navbar-toggler {
  color: var(--text-primary);
  border: 1px solid var(--border-color) !important;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 193, 7, 0.1);
  border-color: var(--accent-yellow) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.3);
  outline: none;
}

.navbar-toggler i {
  display: block;
  font-size: 1.5rem;
}

.navbar.scrolled {
  background: rgba(5, 11, 20, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-brand {
  color: var(--text-primary) !important;
  position: relative;
  z-index: 10;
}

/* Logo Visibility Fix */
.navbar-brand img {
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(255, 157, 0, 0.18);
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(255, 157, 0, 0.26);
}

.nav-link {
  color: var(--text-secondary) !important;
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-yellow) !important;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-50 { transition-delay: 0.05s; }
.reveal-delay-150 { transition-delay: 0.15s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }

/* Image Containers & Parallax */
.img-parallax-container {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.img-parallax-container img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
}

.img-parallax-container:hover img {
  transform: scale(1.05);
}

.b2b-list-tight {
  list-style: none;
  padding-left: 0;
}

.b2b-list-tight li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
}

.b2b-list-tight li:last-child {
  border-bottom: 0;
}

.b2b-list-tight i {
  color: var(--accent-yellow);
  min-width: 22px;
}

.b2b-mini-panel {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
}

.b2b-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}

.b2b-chip-danger {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.10);
}

.b2b-chip-success {
  border-color: rgba(255, 157, 0, 0.35);
  background: rgba(255, 157, 0, 0.10);
}

.b2b-mini-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.0), rgba(255, 255, 255, 0.18), rgba(255, 157, 0, 0.0));
  opacity: 0.8;
  pointer-events: none;
}

.b2b-chaos-to-control {
  position: relative;
}

.b2b-feature-icon-sm {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 0;
  font-size: 1.35rem;
}

.b2b-model-stats {
  background: radial-gradient(circle at 20% 20%, rgba(255, 157, 0, 0.16), transparent 45%), radial-gradient(circle at 90% 10%, rgba(255, 106, 0, 0.12), transparent 45%), rgba(255, 255, 255, 0.02);
}

.b2b-stat {
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.b2b-stat-value {
  font-family: var(--font-family-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2b-stat-label {
  margin-top: 0.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.b2b-command-center {
  background: radial-gradient(circle at 50% 0%, rgba(255, 157, 0, 0.16), transparent 70%);
}

.b2b-command-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.22);
}

.b2b-command-visual img {
  display: block;
  border-radius: 22px;
}

.b2b-callout {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.b2b-callout-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-yellow);
  box-shadow: 0 0 0 6px rgba(255, 157, 0, 0.16), 0 0 28px rgba(255, 157, 0, 0.32);
  margin-bottom: 0.75rem;
}

.b2b-callout-card {
  width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(15, 22, 35, 0.90);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.b2b-callout-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.b2b-callout-title i {
  color: var(--accent-yellow);
}

.b2b-callout-metric {
  font-family: var(--font-family-display);
  font-weight: 800;
  font-size: 1.75rem;
  margin-top: 0.35rem;
  color: #fff;
}

.b2b-callout-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.b2b-callout-1 {
  top: 18%;
  left: 6%;
}

.b2b-callout-2 {
  top: 18%;
  right: 6%;
  text-align: right;
}

.b2b-callout-3 {
  bottom: 18%;
  left: 6%;
}

.b2b-callout-4 {
  bottom: 18%;
  right: 6%;
  text-align: right;
}

.b2b-industry-card {
  height: 100%;
  border-radius: 16px;
  padding: 1.15rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.b2b-industry-card i {
  color: var(--accent-yellow);
  font-size: 1.25rem;
}

.b2b-industry-card span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.b2b-industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 157, 0, 0.22);
  background: rgba(255, 157, 0, 0.06);
}

.b2b-metric-card {
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.b2b-metric-value {
  font-family: var(--font-family-display);
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.b2b-metric-label {
  margin-top: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.b2b-pricing-card {
  height: 100%;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
}

.b2b-pricing-header h3 {
  font-size: 1.35rem;
}

.b2b-pricing-featured {
  border-color: rgba(255, 157, 0, 0.28);
  background: radial-gradient(circle at 20% 0%, rgba(255, 157, 0, 0.18), transparent 55%), rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.55);
}

.b2b-pricing-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 0, 0.28);
  background: rgba(255, 157, 0, 0.10);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .b2b-callout {
    display: none;
  }
}

/* Section Spacing */
section {
  position: relative;
  overflow: hidden; /* Prevent parallax elements from causing scrollbars */
}

/* Override vendor section-py for more generous spacing */
.section-py {
  padding: 8rem 0 !important;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .b2b-section-title { font-size: 1.8rem; }
  .b2b-final-cta h2 { font-size: 2rem; }
  
  /* Disable big blobs on mobile for performance */
  .blob-shape { display: none; }
}

/* Additional Separators */
.section-separator {
  position: relative;
  height: 1px;
  width: 100%;
  margin: 0;
  border: none;
}

.section-separator-line {
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  height: 1px;
  width: 100%;
  opacity: 0.5;
}

.section-separator-glow {
  height: 2px;
  background: radial-gradient(ellipse at center, rgba(255, 157, 0, 0.40) 0%, transparent 70%);
  width: 100%;
  opacity: 0.7;
  margin: 2rem 0;
}

.section-separator-fade {
  height: 100px;
  width: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

/* Responsive Spacing Overrides */
@media (max-width: 992px) {
  .b2b-features,
  .b2b-quick-contact,
  .b2b-final-cta,
  .section-py {
    padding: 6rem 0 !important;
  }
  
  .b2b-trust {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .b2b-features,
  .b2b-quick-contact,
  .b2b-final-cta,
  .section-py {
    padding: 5rem 0 !important;
  }
  
  .b2b-trust {
    padding: 4rem 0;
  }
  
  h1 {
    margin-bottom: 1.5rem;
  }
  
  .b2b-section-title {
    margin-bottom: 1.5rem;
  }
  
  .b2b-hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2.1rem; }
  p { font-size: 1rem; }
  .b2b-section-title { font-size: 1.55rem; }

  .section-py {
    padding: 4rem 0 !important;
  }

  .section-separator-glow {
    margin: 1.25rem 0;
  }

  .b2b-hero {
    padding-top: 8.5rem;
    padding-bottom: 6.5rem;
  }

  .scroll-down-indicator {
    display: none !important;
  }

  .b2b-choice-card {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .b2b-choice-pill {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .b2b-choice-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 1.25rem;
  }

  .b2b-hero-visual {
    border-radius: 18px;
  }

  .b2b-hero-visual img {
    border-radius: 18px;
  }

  .b2b-choice-list li {
    font-size: 0.98rem;
  }

  .b2b-hero-choices .btn {
    width: 100%;
  }

  .b2b-workflow-step {
    padding: 0.95rem 1rem;
    border-radius: 16px;
  }

  .b2b-feature-grid {
    padding: 0;
  }

  .table {
    font-size: 0.92rem;
  }
}
