/**
 * GetTicket B2B Landing Page Styles
 * FUTURISTIC EDITION - Transcendent UI Experience
 * v2.0.0 - Aurora, Glassmorphism, 3D Effects
 */

/* ===========================================
   CSS VARIABLES
   =========================================== */
:root {
  /* Core colors */
  --b2b-bg: #030308;
  --b2b-bg-secondary: #0a0a12;
  --b2b-surface: rgba(255, 255, 255, 0.03);
  --b2b-surface-hover: rgba(255, 255, 255, 0.08);
  --b2b-border: rgba(255, 255, 255, 0.08);
  --b2b-text: #ffffff;
  --b2b-text-muted: #94a3b8;
  --b2b-text-subtle: #64748b;

  /* Accent colors */
  --b2b-accent: #dc2626;
  --b2b-accent-light: #ef4444;
  --b2b-accent-glow: rgba(220, 38, 38, 0.5);
  --b2b-accent-secondary: #f97316;
  --b2b-gradient: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  --b2b-success: #22c55e;

  /* Glassmorphism */
  --b2b-glass: rgba(255, 255, 255, 0.02);
  --b2b-glass-border: rgba(255, 255, 255, 0.08);
  --b2b-glass-glow: rgba(220, 38, 38, 0.15);

  /* Card styles */
  --b2b-card-bg: rgba(255, 255, 255, 0.02);
  --b2b-card-border: rgba(255, 255, 255, 0.06);
  --b2b-blur: 20px;
  --b2b-radius: 20px;
  --b2b-radius-lg: 28px;
  --b2b-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Aurora colors */
  --aurora-1: rgba(220, 38, 38, 0.3);
  --aurora-2: rgba(249, 115, 22, 0.2);
  --aurora-3: rgba(139, 92, 246, 0.15);
  --aurora-4: rgba(59, 130, 246, 0.1);
}

/* ===========================================
   GLOBAL ANIMATIONS
   =========================================== */
@keyframes aurora {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
  25% {
    transform: translateY(-5%) rotate(1deg) scale(1.02);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10%) rotate(-1deg) scale(1.05);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-3%) rotate(0.5deg) scale(1.01);
    opacity: 0.85;
  }
}

@keyframes aurora2 {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateX(10%) rotate(2deg);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px var(--aurora-1), 0 0 60px var(--aurora-2);
    opacity: 0.5;
  }
  50% {
    box-shadow: 0 0 50px var(--aurora-1), 0 0 100px var(--aurora-2);
    opacity: 0.8;
  }
}

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

@keyframes glow-border {
  0%, 100% {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.1);
  }
  50% {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
  }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes particle-float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes text-glow {
  0%, 100% { text-shadow: 0 0 20px var(--b2b-accent-glow); }
  50% { text-shadow: 0 0 40px var(--b2b-accent-glow), 0 0 80px var(--b2b-accent-glow); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(-8px); opacity: 1; }
}

/* ===========================================
   BASE STYLES
   =========================================== */
.b2b-landing {
  background: var(--b2b-bg);
  min-height: 100vh;
  color: var(--b2b-text);
  overflow-x: hidden;
  position: relative;
}

.b2b-landing * {
  box-sizing: border-box;
}

/* ===========================================
   BACKGROUND - Simple gradient, no animations
   =========================================== */
.b2b-landing::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(249, 115, 22, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.b2b-landing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.b2b-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.b2b-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--b2b-text-muted);
  margin-bottom: 16px;
}

.b2b-section-label i {
  color: var(--b2b-accent);
}

.b2b-section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}

.b2b-section-subtitle {
  font-size: 18px;
  color: var(--b2b-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================================
   HERO SECTION - Clean & Professional
   =========================================== */
.b2b-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

/* Subtle spotlight - no animation */
.b2b-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  width: 1000px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.b2b-hero-content {
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeIn 1s ease-out;
  position: relative;
  z-index: 1;
}

.b2b-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--b2b-accent-light);
  margin-bottom: 28px;
  /* backdrop-filter removed for performance */
}

.b2b-hero-badge i {
  color: var(--b2b-accent);
}

.b2b-hero-title {
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
}

.b2b-hero-title-accent {
  background: var(--b2b-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-hero-subtitle {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--b2b-text-muted);
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.b2b-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.b2b-hero-highlights {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.b2b-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--b2b-text-muted);
  font-size: 14px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.b2b-highlight:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.b2b-highlight i {
  color: var(--b2b-accent);
  font-size: 12px;
}

.b2b-highlight-free {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--b2b-success);
  font-weight: 600;
}

.b2b-highlight-free i {
  color: var(--b2b-success);
}

/* FREE Banner - Clean version */
.b2b-free-banner {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--b2b-radius);
  padding: 24px 40px;
  margin: 32px 0;
  text-align: center;
}

.b2b-free-banner-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--b2b-text);
  margin-bottom: 10px;
  position: relative;
}

.b2b-free-label {
  background: var(--b2b-success);
  color: #000;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-block;
}

.b2b-free-banner-venues {
  font-size: 15px;
  color: var(--b2b-text-muted);
  position: relative;
}

.b2b-free-banner-venues span {
  display: inline-block;
}

.b2b-dot {
  margin: 0 10px;
  color: var(--b2b-success);
}

.b2b-free-banner-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--b2b-text-muted);
  opacity: 0.8;
}

.b2b-free-banner-note i {
  font-size: 11px;
  color: var(--b2b-text-subtle);
}

/* Tooltip for FREE label */
.b2b-free-label[data-tooltip] {
  position: relative;
  cursor: help;
}

.b2b-free-label[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 30, 0.95);
  color: var(--b2b-text);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 400;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--b2b-border);
  /* backdrop-filter removed for performance */
}

.b2b-free-label[data-tooltip]:hover::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(20, 20, 30, 0.95);
  z-index: 10;
}

.b2b-hero-scroll-hint {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--b2b-text-subtle);
  font-size: 13px;
  animation: bounce 3s ease-in-out infinite;
}

/* ===========================================
   BUTTONS - Clean with good hover
   =========================================== */
.b2b-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
}

.b2b-btn-primary {
  background: var(--b2b-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.b2b-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.b2b-btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--b2b-text);
}

.b2b-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 38, 38, 0.4);
  transform: translateY(-2px);
}

/* ===========================================
   CARDS - Clean with subtle hover
   =========================================== */
.b2b-bento-card,
.b2b-integration-card,
.b2b-feature-item,
.b2b-venue-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--b2b-radius);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.b2b-bento-card:hover,
.b2b-integration-card:hover,
.b2b-feature-item:hover,
.b2b-venue-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* ===========================================
   PRODUCT SHOWCASE - BENTO GRID
   =========================================== */
.b2b-showcase {
  padding: 100px 0;
}

.b2b-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.b2b-bento-card {
  padding: 32px;
}

.b2b-bento-icon-large {
  width: 64px;
  height: 64px;
  background: var(--b2b-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.b2b-bento-icon-large i {
  font-size: 32px;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.b2b-bento-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--b2b-text);
}

.b2b-bento-description {
  font-size: 15px;
  color: var(--b2b-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Illustrated Bento Cards */
.b2b-bento-card--illustrated {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.b2b-bento-illustration {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.b2b-bento-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.b2b-bento-card--illustrated:hover .b2b-bento-illustration img {
  transform: scale(1.05);
}

.b2b-bento-content {
  padding: 24px;
}


/* ===========================================
   INTEGRATIONS SECTION
   =========================================== */
.b2b-integrations {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--b2b-bg-secondary) 0%, var(--b2b-bg) 100%);
  position: relative;
}

.b2b-integrations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b2b-accent), transparent);
  opacity: 0.5;
}

.b2b-integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.b2b-integration-card {
  padding: 32px;
  text-align: center;
}

.b2b-integration-logo {
  height: 48px;
  margin-bottom: 20px;
}

.b2b-integration-logo svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px var(--b2b-accent-glow));
}

.b2b-integration-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b2b-integration-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--b2b-text-muted);
}

.b2b-integration-feature i {
  color: var(--b2b-success);
  font-size: 12px;
  filter: drop-shadow(0 0 8px var(--b2b-success));
}

.b2b-integrations-highlight {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--b2b-glass);
  border: 2px solid var(--b2b-accent);
  border-radius: var(--b2b-radius);
  padding: 28px 36px;
  /* backdrop-filter removed for performance */
  box-shadow:
    0 0 40px rgba(220, 38, 38, 0.15),
    inset 0 0 60px rgba(220, 38, 38, 0.05);
}

.b2b-highlight-icon {
  width: 56px;
  height: 56px;
  background: var(--b2b-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

.b2b-highlight-icon i {
  font-size: 28px;
  color: white;
}

.b2b-highlight-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--b2b-text);
}

.b2b-highlight-content p {
  font-size: 15px;
  color: var(--b2b-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===========================================
   FEATURES GRID
   =========================================== */
.b2b-features {
  padding: 100px 0;
}

.b2b-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.b2b-feature-item {
  padding: 28px;
}

.b2b-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(249, 115, 22, 0.1) 100%);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--b2b-transition);
}

.b2b-feature-item:hover .b2b-feature-icon {
  background: var(--b2b-gradient);
  border-color: transparent;
  box-shadow: 0 8px 30px var(--b2b-accent-glow);
  transform: scale(1.1) rotate(5deg);
}

.b2b-feature-icon i {
  font-size: 22px;
  color: var(--b2b-accent);
  transition: color var(--b2b-transition);
}

.b2b-feature-item:hover .b2b-feature-icon i {
  color: white;
}

.b2b-feature-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--b2b-text);
}

.b2b-feature-text p {
  font-size: 14px;
  color: var(--b2b-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===========================================
   VENUE TYPES
   =========================================== */
.b2b-venues {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--b2b-bg-secondary) 0%, var(--b2b-bg) 100%);
  position: relative;
}

.b2b-venues::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b2b-accent-secondary), transparent);
  opacity: 0.5;
}

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

.b2b-venue-card {
  padding: 32px 24px;
  text-align: center;
}

.b2b-venue-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--b2b-transition);
}

.b2b-venue-card:hover .b2b-venue-icon {
  background: var(--b2b-gradient);
  border-color: transparent;
  box-shadow: 0 12px 40px var(--b2b-accent-glow);
  transform: scale(1.1);
}

.b2b-venue-icon i {
  font-size: 28px;
  color: var(--b2b-accent);
  transition: color var(--b2b-transition);
}

.b2b-venue-card:hover .b2b-venue-icon i {
  color: white;
}

.b2b-venue-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--b2b-text);
}

.b2b-venue-desc {
  font-size: 14px;
  color: var(--b2b-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===========================================
   STATS SECTION - Glowing counters
   =========================================== */
.b2b-stats {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--b2b-bg) 0%, var(--b2b-bg-secondary) 100%);
  position: relative;
}

.b2b-stats::before,
.b2b-stats::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--b2b-accent), transparent);
  opacity: 0.3;
}

.b2b-stats::before { top: 0; }
.b2b-stats::after { bottom: 0; }

.b2b-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.b2b-stat-item {
  padding: 32px 24px;
  background: var(--b2b-glass);
  border: 1px solid var(--b2b-glass-border);
  border-radius: var(--b2b-radius);
  /* backdrop-filter removed for performance */
  transition: all var(--b2b-transition);
}

.b2b-stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--b2b-accent);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.b2b-stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--b2b-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.b2b-stat-suffix {
  font-size: 28px;
}

.b2b-stat-label {
  font-size: 14px;
  color: var(--b2b-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.b2b-cta {
  padding: 120px 0;
}

.b2b-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.b2b-cta-title {
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--b2b-text);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%, var(--b2b-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-cta-subtitle {
  font-size: 18px;
  color: var(--b2b-text-muted);
  margin: 0 0 36px;
  line-height: 1.7;
}

.b2b-cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.b2b-cta-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--b2b-text-muted);
  font-size: 15px;
}

.b2b-cta-highlight i {
  color: var(--b2b-success);
  font-size: 18px;
  filter: drop-shadow(0 0 8px var(--b2b-success));
}

.b2b-payment-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--b2b-glass);
  border: 2px solid var(--b2b-success);
  border-radius: var(--b2b-radius);
  padding: 24px;
  /* backdrop-filter removed for performance */
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.1);
}

.b2b-payment-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--b2b-success) 0%, #34d399 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.b2b-payment-icon i {
  font-size: 24px;
  color: white;
}

.b2b-payment-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b2b-payment-text strong {
  color: var(--b2b-text);
  font-size: 17px;
}

.b2b-payment-text span {
  color: var(--b2b-text-muted);
  font-size: 14px;
}

/* ===========================================
   CONTACT FORM - Glassmorphism
   =========================================== */
.b2b-cta-form-wrapper {
  background: var(--b2b-glass);
  border: 1px solid var(--b2b-glass-border);
  border-radius: var(--b2b-radius-lg);
  padding: 40px;
  /* backdrop-filter removed for performance */
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.3),
    inset 0 0 80px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.b2b-cta-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.b2b-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.b2b-form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.b2b-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--b2b-text);
}

.b2b-input,
.b2b-select,
.b2b-textarea {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--b2b-border);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--b2b-text);
  transition: all var(--b2b-transition);
  font-family: inherit;
  /* backdrop-filter removed for performance */
}

.b2b-input:focus,
.b2b-select:focus,
.b2b-textarea:focus {
  outline: none;
  border-color: var(--b2b-accent);
  box-shadow:
    0 0 0 4px var(--b2b-accent-glow),
    0 0 30px rgba(220, 38, 38, 0.1);
}

.b2b-input::placeholder,
.b2b-textarea::placeholder {
  color: var(--b2b-text-subtle);
}

.b2b-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.b2b-textarea {
  resize: vertical;
  min-height: 120px;
}

.b2b-btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.b2b-form-success,
.b2b-form-error {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  font-size: 14px;
  /* backdrop-filter removed for performance */
}

.b2b-form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--b2b-success);
  color: var(--b2b-success);
}

.b2b-form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* ===========================================
   SCROLL REVEAL ANIMATIONS - Enhanced
   =========================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(5px);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered reveals for grid items */
.b2b-bento-card.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.b2b-bento-card.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.b2b-bento-card.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.b2b-bento-card.scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.b2b-bento-card.scroll-reveal:nth-child(5) { transition-delay: 0.5s; }
.b2b-bento-card.scroll-reveal:nth-child(6) { transition-delay: 0.6s; }

.b2b-feature-item.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.b2b-feature-item.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.b2b-feature-item.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.b2b-feature-item.scroll-reveal:nth-child(4) { transition-delay: 0.25s; }

.b2b-venue-card.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.b2b-venue-card.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.b2b-venue-card.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }

.b2b-integration-card.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.b2b-integration-card.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }

/* ===========================================
   EXPANDABLE SECTIONS - Professional Two-Stage Animation
   =========================================== */
.b2b-expandable-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-expandable-wrapper.expanded {
  grid-template-rows: 1fr;
}

.b2b-expandable-wrapper-inner {
  overflow: hidden;
}

.b2b-hidden-cards {
  display: grid;
  gap: 28px;
  padding-top: 28px;
}

/* Grid layouts for hidden cards */
.b2b-bento-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
  grid-template-columns: repeat(2, 1fr);
}

.b2b-features-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
  grid-template-columns: repeat(4, 1fr);
}

.b2b-integrations-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
  grid-template-columns: repeat(2, 1fr);
}

.b2b-venues-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
  grid-template-columns: repeat(4, 1fr);
}

/* Expandable cards animation */
.b2b-expandable-card {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  filter: blur(8px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
}

.b2b-expandable-wrapper.expanded .b2b-expandable-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Staggered delays */
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(1) { transition-delay: 0.15s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(2) { transition-delay: 0.2s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(3) { transition-delay: 0.25s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(4) { transition-delay: 0.3s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(5) { transition-delay: 0.35s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(6) { transition-delay: 0.4s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(7) { transition-delay: 0.45s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(8) { transition-delay: 0.5s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(9) { transition-delay: 0.55s; }
.b2b-expandable-wrapper.expanded .b2b-expandable-card:nth-child(10) { transition-delay: 0.6s; }

/* Anti-passback highlight - full width */
.b2b-integrations-highlight.b2b-expandable-card {
  grid-column: 1 / -1;
}

/* ===========================================
   SHOW MORE BUTTON - Futuristic
   =========================================== */
.b2b-show-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 48px auto 0;
  padding: 16px 40px;
  background: var(--b2b-glass);
  border: 1px solid var(--b2b-glass-border);
  border-radius: 100px;
  color: var(--b2b-text-muted);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* backdrop-filter removed for performance */
}

.b2b-show-more-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--b2b-gradient);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradient-shift 4s ease infinite;
}

.b2b-show-more-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.b2b-show-more-btn:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(220, 38, 38, 0.3),
    0 0 60px rgba(220, 38, 38, 0.15);
}

.b2b-show-more-btn:hover::before {
  opacity: 1;
}

.b2b-show-more-btn:hover::after {
  left: 150%;
}

.b2b-show-more-btn .btn-text,
.b2b-show-more-btn .btn-icon {
  position: relative;
  z-index: 1;
}

.b2b-show-more-btn .btn-icon {
  font-size: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-show-more-btn.expanded .btn-icon {
  transform: rotate(180deg);
}

.text-center {
  text-align: center;
}

/* ===========================================
   REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }

  .b2b-landing::before,
  .b2b-landing::after {
    animation: none;
  }

  .b2b-hero-content {
    animation: none;
  }

  .b2b-hero-scroll-hint {
    animation: none;
  }

  .b2b-section-title,
  .b2b-hero-title,
  .b2b-btn-primary,
  .b2b-stat-number,
  .b2b-bento-icon-large {
    animation: none;
  }

  .b2b-hero-badge,
  .b2b-free-label,
  .b2b-section-label {
    animation: none;
  }
}

/* ===========================================
   RESPONSIVE STYLES
   =========================================== */
@media (max-width: 1200px) {
  .b2b-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .b2b-bento-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-features-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .b2b-venues-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .b2b-cta-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

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

  .b2b-features-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .b2b-bento-illustration {
    height: 160px;
  }

  .b2b-bento-content {
    padding: 20px;
  }

  .b2b-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .b2b-free-banner {
    padding: 24px 20px;
    margin: 24px 0;
  }

  .b2b-free-banner-title {
    font-size: 18px;
  }

  .b2b-free-banner-venues {
    font-size: 13px;
  }

  .b2b-dot {
    margin: 0 6px;
  }

  .b2b-hero-highlights {
    flex-direction: column;
    gap: 12px;
  }

  .b2b-bento-grid,
  .b2b-integrations-grid {
    grid-template-columns: 1fr;
  }

  .b2b-integrations-highlight {
    flex-direction: column;
    text-align: center;
  }

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

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

  .b2b-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .b2b-stat-number {
    font-size: 44px;
  }

  .b2b-section-title {
    font-size: 32px;
  }

  .b2b-cta-form-wrapper {
    padding: 28px 20px;
  }

  .b2b-payment-highlight {
    flex-direction: column;
    text-align: center;
  }

  .b2b-bento-grid + .b2b-expandable-wrapper .b2b-hidden-cards,
  .b2b-integrations-grid + .b2b-expandable-wrapper .b2b-hidden-cards,
  .b2b-features-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: 1fr;
  }

  .b2b-venues-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .b2b-hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .b2b-btn {
    width: 100%;
    justify-content: center;
  }

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

  .b2b-hero-title {
    font-size: 40px;
  }

  .b2b-venues-grid + .b2b-expandable-wrapper .b2b-hidden-cards {
    grid-template-columns: 1fr;
  }
}

