/* ==========================================================================
   NFarmcare High-Converting B2B Landing Page Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --primary-900: #071938;
  --primary-800: #002060;
  --primary-700: #0c2d7a;
  --primary-600: #1d4ed8;
  --primary-100: #dbeafe;
  --primary-50: #eff6ff;

  --accent-green: #10b981;
  --accent-green-dark: #059669;
  --accent-green-light: #ecfdf5;

  --accent-orange: #f97316;
  --accent-orange-dark: #ea580c;
  --accent-orange-light: #fff7ed;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
}

* {
  font-family: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-sizing: border-box;
}

.font-heading {
  font-family: 'Plus Jakarta Sans', 'Prompt', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Gradients */
.hero-mesh {
  background-color: #071938;
  background-image: 
    radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(29, 78, 216, 0.3) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(249, 115, 22, 0.1) 0px, transparent 50%);
}

.primary-gradient {
  background: linear-gradient(135deg, #002060 0%, #071938 100%);
}

.card-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.95) 100%);
}

/* Subtle glow */
.glow-primary {
  box-shadow: 0 0 50px -10px rgba(0, 32, 96, 0.25);
}

.glow-green {
  box-shadow: 0 0 30px -5px rgba(16, 185, 129, 0.3);
}

.glow-orange {
  box-shadow: 0 0 30px -5px rgba(249, 115, 22, 0.3);
}

/* Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.animate-float {
  animation: floatSlow 5s ease-in-out infinite;
}

@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}
.pulse-green {
  animation: pulseBorder 2.5s infinite;
}

/* Card hover animation */
.interactive-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.interactive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(0, 32, 96, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

/* Comparison Table Styling */
.comparison-row:nth-child(even) {
  background-color: #f8fafc;
}

/* Modal Blur */
.modal-backdrop {
  backdrop-filter: blur(8px);
  background-color: rgba(7, 25, 56, 0.7);
}
