:root {
  --yellow: #fbbf24;
  --yellow-light: #fef3c7;
  --green: #10b981;
  --green-hover: #059669;
  --black: #0a0a0a;
  --gray: #f3f4f6;
  --gray-dark: #4b5563;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--black);
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: 'Cabinet Grotesk', sans-serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.card-hover {
  transition: all 0.3s ease-out;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(251, 191, 36, 0.3);
}

.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 8px 20px -8px rgba(16, 185, 129, 0.5);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
}

.input-style {
  background: #f9fafb;
  border: 2px solid #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-style:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.reward-card {
  background: #fff;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.reward-card:hover {
  border-color: #fcd34d;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(251, 191, 36, 0.25);
}

.category-tag {
  background: #f3f4f6;
  color: #374151;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  user-select: none;
}

.filter-checkbox input {
  accent-color: var(--yellow);
}

.client-toggle {
  display: flex;
  background: #f3f4f6;
  border-radius: 0.75rem;
  padding: 0.25rem;
}

.client-toggle-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 600;
  transition: all 0.2s ease;
  color: #4b5563;
}

.client-toggle-btn.active {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 6px 16px -12px rgba(0, 0, 0, 0.35);
}

.section-divider {
  border-top: 2px solid #000;
}

.sidebar-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.25rem;
}

.article-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.1);
}

.hero-gradient {
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #fef3c7 100%);
}

.box-highlight {
  background: #fefce8;
  border: 2px solid #fde68a;
  border-radius: 1rem;
}

.flame-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--yellow);
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-slide {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: #fcd34d;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-dot.active {
  width: 1.5rem;
  background: #f59e0b;
}

.line-clamp-1,
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-1 {
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.article-content h2 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 2rem 0 1rem;
  font-weight: 700;
}

.article-content p {
  color: #374151;
  line-height: 1.8;
  margin: 1rem 0;
}

.article-content ul {
  padding-left: 1.25rem;
  margin: 1rem 0;
  color: #374151;
}

.article-content li {
  margin: 0.5rem 0;
}

@media (max-width: 1023px) {
  .client-toggle {
    width: 100%;
    flex-direction: column;
  }

  .client-toggle-btn {
    text-align: center;
  }
}