/* Pollitraction Static Export Styles */
/* Complete CSS with all animations and design tokens */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 9%;
  --border: 0 0% 89%;
  --card: 0 0% 98%;
  --card-foreground: 0 0% 9%;
  --primary: 81 36% 51%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 90%;
  --secondary-foreground: 0 0% 9%;
  --muted: 81 5% 91%;
  --muted-foreground: 0 0% 45%;
  --accent: 81 6% 89%;
  --accent-foreground: 81 36% 20%;
  --destructive: 0 72% 51%;
  --ring: 81 36% 51%;
  --radius: 0.5rem;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: Poppins, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --highlight: #eda743;
  --primary-color: #90b254;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Portrait orientation font size adjustments */
@media (orientation: portrait) and (max-width: 767px) {
  html { font-size: 130%; }
}
@media (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  html { font-size: 130%; }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.font-display { font-family: var(--font-display); }
.text-primary { color: var(--primary-color); }
.text-highlight { color: var(--highlight); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-white { color: #fff; }

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.pt-8 { padding-top: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.nav-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none !important; }
}

.nav-link {
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  padding: 1rem 0 1rem 25px;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  border-bottom: 1px solid #cecece;
}

.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--primary-color);
}

/* ========================================
   ANIMATIONS - Complete Set
   ======================================== */

/* Keyframe Definitions */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineExpand {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-down {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 0.6s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.6s ease-out forwards;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 0.5s ease-out forwards;
}

.float-animation {
  animation: floatY 4s ease-in-out infinite;
}

.bounce-animation {
  animation: bounceY 2s ease-in-out infinite;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }
.delay-1100 { animation-delay: 1.1s; }
.delay-1300 { animation-delay: 1.3s; }

/* Animation durations */
.duration-500 { animation-duration: 0.5s; }
.duration-800 { animation-duration: 0.8s; }
.duration-1000 { animation-duration: 1s; }

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-60 { min-height: 60vh; height: auto; }
.hero-80 { min-height: 80vh; height: auto; }

.hero-background {
  position: absolute;
  inset: 0;
  transition: transform 0.3s ease-out;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  transform: scale(1);
}

.hero-image.loading {
  opacity: 0;
  transform: scale(1.1);
  animation: heroReveal 1.5s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
}

@media (min-width: 768px) {
  .hero p { font-size: 1.5rem; }
}

.gradient-text {
  background: linear-gradient(to right, #90b254, #eda743);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(to right, #eda743, #90b254);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Button - Glass style */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.5s;
  cursor: pointer;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(144, 178, 84, 0.3);
}

/* Arrow down indicator */
.arrow-down {
  position: absolute;
  bottom: 2.5rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  cursor: pointer;
  animation: bounceY 2s ease-in-out infinite;
}

.arrow-down:hover {
  color: #fff;
}

/* Floating Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(237, 167, 67, 0.3);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

/* Cards */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.card2 {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}
.card2:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  transform: translateY(-10px);
  border-color: rgba(144, 178, 84, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(144,178,84,0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  transform: translateY(-10px);
  border-color: rgba(144, 178, 84, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-highlight:hover {
  border-color: rgba(237, 167, 67, 0.3);
}

.card-content {
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-primary:hover {
  background: #7a9a47;
  box-shadow: 0 4px 12px rgba(144, 178, 84, 0.3);
}

.btn-highlight {
  background: var(--highlight);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-highlight:hover {
  background: #d49538;
  box-shadow: 0 4px 12px rgba(237, 167, 67, 0.3);
}

.btn-lg {
  padding: 1.5rem 2.5rem;
  font-size: 1.125rem;
  border-radius: 9999px;
}

.btn-full { width: 100%; }

.btn-rounded { border-radius: 9999px; }

/* Sections */
.section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  .section { padding: 6rem 1.5rem; }
  .section-lg { padding: 8rem 1.5rem; }
}

.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-primary-5 { background: rgba(144, 178, 84, 0.05); }
.bg-primary-10 { background: rgba(144, 178, 84, 0.1); }
.bg-highlight-10 { background: rgba(237, 167, 67, 0.1); }

/* Gradient backgrounds */
.bg-gradient-primary {
  background: linear-gradient(to bottom, hsl(var(--background)), rgba(144, 178, 84, 0.05));
}

/* Decorative background blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.05;
}

.bg-blob-primary {
  background: var(--primary-color);
}

.bg-blob-highlight {
  background: var(--highlight);
}

/* Icon containers */
.icon-container {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(144, 178, 84, 0.1);
  margin-bottom: 1.5rem;
  transition: transform 0.5s;
}

.icon-container-lg {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(144, 178, 84, 0.2), rgba(237, 167, 67, 0.2));
}

.card:hover .icon-container {
  transform: scale(1.1);
}

.icon-container-sm {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.icon-container-round {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(144, 178, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Icons */
.icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary-color);
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-sm {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xs {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-highlight { color: var(--highlight); }
.icon-white { color: #fff; }

/* Animated gradient line */
.gradient-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  transform: scaleX(0);
  animation: lineExpand 1s ease-out forwards;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: hsl(var(--foreground));
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(144, 178, 84, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Glow effects */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(to right, rgba(144, 178, 84, 0.2), rgba(237, 167, 67, 0.2));
  border-radius: 1.5rem;
  filter: blur(16px);
  z-index: -1;
}

.glow-image {
  position: relative;
}

.glow-image::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(144, 178, 84, 0.2), rgba(237, 167, 67, 0.2));
  border-radius: 1.5rem;
  filter: blur(2rem);
  opacity: 0.5;
  z-index: -1;
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
}

.stat-card.highlight {
  background: rgba(144, 178, 84, 0.1);
  border: 2px solid var(--primary-color);
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value { font-size: 3rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Image with rounded corners */
.rounded-img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  display: block;
}

/* Feature list item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.05);
  transition: border-color 0.3s;
}

.feature-item:hover {
  border-color: rgba(144, 178, 84, 0.3);
}

/* Quote box */
.quote-box {
  padding: 1.5rem;
  background: hsl(var(--card));
  border-radius: 0.5rem;
  border: 1px solid hsl(var(--border));
}

.quote-text {
  font-style: italic;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Check list */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-bullet {
  color: var(--primary-color);
  font-weight: 700;
}

/* Footer */
.footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: hsl(var(--muted-foreground));
  max-width: 24rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.footer-link {
  display: block;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-promise {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.footer-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary-color);
}

.footer-copyright {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* Responsive helpers */
.hidden { display: none; }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:col-span-2 { grid-column: span 2; }
}

/* Pricing */
.price-large {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-unit {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* Benefit badge */
.benefit-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(144, 178, 84, 0.05);
  border-radius: 0.5rem;
}

.benefit-badge svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.benefit-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-color);
}

/* List styles */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  transition: border-color 0.3s;
}

.benefit-list-item:hover {
  border-color: rgba(144, 178, 84, 0.3);
}

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.75; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-index */
.z-10 { z-index: 10; }

/* Width/Height */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Border */
.border { border: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-primary { border-color: var(--primary-color); }
.border-2 { border-width: 2px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Hover icon rotation */
.icon-container-lg:hover {
  animation: rotate360 0.8s ease-out;
}


.w-0 { width: 0px }
.w-1 {
    width: .25rem
}
.w-1\.5 {
    width: .375rem
}
.w-10 {
    width: 2.5rem
}
.w-11 {
    width: 2.75rem
}
.w-12 {
    width: 3rem
}
.w-14 {
    width: 3.5rem
}
.w-16 {
    width: 4rem
}
.w-2 {
    width: .5rem
}
.w-2\.5 {
    width: .625rem
}
.w-20 {
    width: 5rem
}
.w-3 {
    width: .75rem
}
.w-3\.5 {
    width: .875rem
}
.w-3\/4 {
    width: 75%
}
.w-4 {
    width: 1rem
}
.w-5 {
    width: 1.25rem
}
.w-6 {
    width: 1.5rem
}
.w-64 {
    width: 16rem
}
.w-7 {
    width: 1.75rem
}
.w-72 {
    width: 18rem
}
.w-8 {
    width: 2rem
}
.w-9 {
    width: 2.25rem
}
.w-96 {
    width: 24rem
}
.w-\[100px\] {
    width: 100px
}
.w-\[1px\] {
    width: 1px
}
.w-\[var\(--sidebar-width\)\] {
    width: var(--sidebar-width)
}
.w-auto {
    width: auto
}
.w-full {
    width: 100%
}
.w-max {
    width: -moz-max-content;
    width: max-content
}
.w-px {
    width: 1px
}

.h-1 {
    height: .25rem
}

.h-1\.5 {
    height: .375rem
}

.h-10 {
    height: 2.5rem
}

.h-11 {
    height: 2.75rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-16 {
    height: 4rem
}

.h-2 {
    height: .5rem
}

.h-2\.5 {
    height: .625rem
}

.h-20 {
    height: 5rem
}

.h-3 {
    height: .75rem
}

.h-3\.5 {
    height: .875rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-6 {
    height: 1.5rem
}

.h-7 {
    height: 1.75rem
}

.h-8 {
    height: 2rem
}

.h-9 {
    height: 2.25rem
}

.h-96 {
    height: 24rem
}

.h-\[1px\] {
    height: 1px
}

.h-\[60vh\] {
    height: 60vh
}

.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
    height: var(--radix-navigation-menu-viewport-height)
}

.h-\[var\(--radix-select-trigger-height\)\] {
    height: var(--radix-select-trigger-height)
}

.h-auto {
    height: auto
}

.h-full {
    height: 100%
}

.h-px {
    height: 1px
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem
}

.text-5xl {
    font-size: 3rem;
    line-height: 1
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1
}

.text-\[0\.8rem\] {
    font-size: .8rem
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.font-semibold {
    font-weight: 600
}

@media (min-width: 768px) {
  .md\:gap-12 {
    gap: 3rem
  }

  .md\:gap-16 {
    gap: 4rem
  }

  .md\:p-10 {
    padding: 2.5rem
  }

  .md\:p-12 {
    padding: 3rem
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1
  }

  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1
  }

  .md\:text-sm {
    font-size: .875rem;
    line-height: 1.25rem
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
  }
}