:root {
  --wb-green: #009d3d;
  --wb-dark: #012e1e;
  --muted: #6b7280;
  --accent: #ff6b35;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

.btn-wb {
  background: linear-gradient(90deg, var(--wb-green), var(--wb-dark));
}

.btn-accent {
  background: linear-gradient(90deg, var(--accent), #ff8c42);
}

.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

.feature-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
}

.dashboard-img {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.form-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.form-tab {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.form-tab.active {
  border-bottom-color: var(--wb-green);
  color: var(--wb-green);
}

.form-content {
  display: none;
}

.form-content.active {
  display: block;
}