/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #6366F1;
  --secondary-color: #10B981;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary-full {
  width: 100%;
  display: block;
  padding: 14px 32px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.btn-primary-full:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-full {
  width: 100%;
  display: block;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.btn-outline-full:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--primary-dark);
}

/* Navigation */
.navbar {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-links li:nth-last-child(-n+4) {
  margin-left: 8px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Navigation Buttons - Professional Styling */
.nav-links .btn-outline,
.nav-links .btn-secondary {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-links .btn-outline {
  border: 2px solid #E5E7EB;
  color: var(--text-dark);
  background: transparent;
}

.nav-links .btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #F9FAFB;
}

.nav-links .btn-secondary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
}

.nav-links .btn-secondary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 14px;
  opacity: 0.85;
}

/* Widget Preview */
.widget-preview {
  perspective: 1000px;
}

.browser-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.browser-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.browser-header {
  background: #E5E7EB;
  padding: 12px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #F87171;
}

.dot:nth-child(2) {
  background: #FBBF24;
}

.dot:nth-child(3) {
  background: #34D399;
}

.browser-content {
  padding: 24px;
  background: #F9FAFB;
  min-height: 300px;
}

.chat-bubble-demo .message {
  margin-bottom: 16px;
  display: flex;
}

.chat-bubble-demo .message p {
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.5;
}

.chat-bubble-demo .message.bot p {
  background: white;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.chat-bubble-demo .message.user {
  justify-content: flex-end;
}

.chat-bubble-demo .message.user p {
  background: var(--primary-color);
  color: white;
}

/* Stats Section */
.stats {
  background: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-medium);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.step-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

.step-arrow {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
}

.code-preview {
  background: #1F2937;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 16px;
}

.code-preview code {
  color: #10B981;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 13px;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-description {
  color: var(--text-medium);
  margin-bottom: 24px;
}

.plan-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 24px;
  color: var(--text-medium);
}

.amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-dark);
}

.period {
  font-size: 18px;
  color: var(--text-medium);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 12px 0;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  text-align: center;
  color: var(--text-medium);
  font-size: 14px;
}

/* Docs Section - Enterprise Design */
.docs {
  padding: 120px 0;
  background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
}

/* Docs Hero Section */
.docs-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.docs-hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.2;
}

.docs-hero-content p {
  font-size: 20px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.docs-hero-actions {
  display: flex;
  gap: 16px;
}

/* Code Window */
.code-window {
  background: #1E1E1E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.code-window-header {
  background: #2D2D2D;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3E3E3E;
}

.code-dots {
  display: flex;
  gap: 8px;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5F5F5F;
}

.code-dots span:nth-child(1) {
  background: #FF5F56;
}

.code-dots span:nth-child(2) {
  background: #FFBD2E;
}

.code-dots span:nth-child(3) {
  background: #27C93F;
}

.code-title {
  font-size: 13px;
  color: #A0A0A0;
  font-family: 'Monaco', 'Menlo', monospace;
}

.code-content {
  padding: 24px;
}

.code-content pre {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  overflow-x: auto;
}

.code-content code {
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  color: #D4D4D4;
}

.code-comment {
  color: #6A9955;
}

.code-keyword {
  color: #569CD6;
}

.code-function {
  color: #DCDCAA;
}

.code-string {
  color: #CE9178;
}

.code-property {
  color: #9CDCFE;
}

/* Docs Categories */
.docs-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.docs-category {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.docs-category:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.1);
  transform: translateY(-4px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.category-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.category-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-links li {
  margin-bottom: 12px;
}

.category-links li:last-child {
  margin-bottom: 0;
}

.category-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 15px;
  padding: 8px 0;
  transition: all 0.2s ease;
}

.category-links a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.category-links a span {
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-links a:hover span {
  opacity: 1;
}

/* Docs CTA */
.docs-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.docs-cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.docs-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.docs-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.docs-cta-actions .btn-primary {
  background: white;
  color: var(--primary-color);
}

.docs-cta-actions .btn-primary:hover {
  background: #F9FAFB;
}

.docs-cta-actions .btn-outline {
  border-color: white;
  color: white;
}

.docs-cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .docs-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .docs-hero-content h2 {
    font-size: 36px;
  }

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

  .docs-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .docs-cta-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .docs {
    padding: 80px 0;
  }

  .docs-hero-content h2 {
    font-size: 32px;
  }

  .docs-hero-content p {
    font-size: 18px;
  }

  .docs-hero-actions {
    flex-direction: column;
  }

  .docs-hero-actions a {
    width: 100%;
    text-align: center;
  }

  .docs-categories {
    grid-template-columns: 1fr;
  }

  .code-window-header {
    padding: 10px 14px;
  }

  .code-content {
    padding: 16px;
  }

  .code-content pre {
    font-size: 12px;
  }

  .docs-cta {
    padding: 32px 24px;
  }

  .docs-cta-content h3 {
    font-size: 24px;
  }

  .docs-cta-actions {
    flex-direction: column;
  }

  .docs-cta-actions a {
    width: 100%;
    text-align: center;
  }
}

/* Demo Section */
.demo {
  padding: 100px 0;
  background: var(--bg-white);
}

.demo-content {
  max-width: 800px;
  margin: 0 auto;
}

.demo-instructions {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.demo-instructions h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.demo-questions {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.demo-questions li {
  padding: 16px 24px;
  background: white;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  color: var(--text-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  user-select: none;
}

.demo-questions li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-dark);
}

.demo-questions li:active {
  transform: translateX(12px) scale(0.98);
}

/* Use Cases */
.use-cases {
  padding: 100px 0;
  background: var(--bg-light);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.use-case-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.use-case-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.use-case-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-benefits {
  list-style: none;
}

.contact-benefits li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-col p {
  color: #9CA3AF;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #9CA3AF;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

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

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

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }
}

/* Plan Badge - Sidebar */
.sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#sidebar-plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: none;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1F2937;
  opacity: 0;
  transition: all 0.3s ease;
  margin-top: 4px;
  box-shadow: 0 2px 4px rgba(255, 165, 0, 0.2);
}

#sidebar-plan-badge:hover {
  box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
  transform: translateY(-1px);
}
