:root {
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --maize-yellow: #E8A317;
  --maize-dark: #D4A017;
  --wheat-gold: #C5A55A;
  --wheat-dark: #B8860B;
  --soil-brown: #8B6914;
  --soil-dark: #6B4423;
  --paddy-green: #4A7C59;
  --paddy-dark: #2D5F3B;
  --terracotta: #C46A2E;
  --wheat-cream: #FDF8F0;
  --soft-green-tint: #F2F8F4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(45, 95, 59, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 124, 89, 0.3);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(45, 95, 59, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-logo .hindi {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--maize-yellow);
  color: var(--soil-dark) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--maize-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--wheat-cream) 0%, #fff 30%, var(--soft-green-tint) 70%, #e8f0e3 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf3e0;
  color: var(--soil-brown);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--maize-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--paddy-green), var(--paddy-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--maize-yellow);
  color: var(--soil-dark);
  box-shadow: 0 4px 16px rgba(232, 163, 23, 0.35);
}

.btn-primary:hover {
  background: var(--maize-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 160, 23, 0.4);
}

.btn-outline {
  background: #fff;
  color: var(--soil-brown);
  border: 2px solid var(--wheat-gold);
}

.btn-outline:hover {
  background: var(--wheat-cream);
  border-color: var(--wheat-dark);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--paddy-green);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(135deg, var(--paddy-green), var(--paddy-dark));
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(45, 95, 59, 0.25), 0 0 0 1px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  height: 40px;
  background: var(--paddy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}

.phone-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-greeting {
  font-size: 0.85rem;
  color: var(--gray-800);
  font-weight: 700;
}

.phone-card {
  background: linear-gradient(135deg, var(--soft-green-tint), #fff);
  border: 1px solid #d4e5d0;
  border-radius: 12px;
  padding: 12px;
}

.phone-card-title {
  font-size: 0.65rem;
  color: var(--paddy-green);
  font-weight: 700;
  margin-bottom: 4px;
}

.phone-card-text {
  font-size: 0.6rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.phone-nav-bar {
  height: 56px;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}

.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  color: var(--gray-500);
}

.phone-nav-item.active {
  color: var(--paddy-green);
}

.phone-nav-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}

.phone-nav-item.active .phone-nav-icon {
  background: none;
  color: var(--paddy-green);
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.floating-card.left {
  left: -40px;
  top: 30%;
  animation-delay: 0s;
}

.floating-card.right {
  right: -40px;
  top: 55%;
  animation-delay: 1.5s;
}

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

.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-icon svg {
  flex-shrink: 0;
}

.floating-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-700);
}

.floating-subtext {
  font-size: 0.6rem;
  color: var(--gray-500);
}

/* Languages */
.languages {
  padding: 40px 0;
  background: var(--wheat-cream);
  border-top: 1px solid #efe3cc;
  border-bottom: 1px solid #efe3cc;
}

.lang-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lang-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-right: 8px;
}

.lang-tag {
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--wheat-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--soil-brown);
  font-weight: 500;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--soft-green-tint);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--wheat-gold);
  box-shadow: 0 8px 32px rgba(139, 105, 20, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon svg {
  flex-shrink: 0;
}

.feature-card {
  position: relative;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.new-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* How it works */
.how-it-works {
  padding: 100px 0;
  background: var(--wheat-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--wheat-gold);
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maize-yellow), var(--terracotta));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(196, 106, 46, 0.25);
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #efe3cc;
}

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

.testimonial-card {
  background: var(--wheat-cream);
  border: 1px solid #efe3cc;
  border-radius: 20px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--amber-400);
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--paddy-green), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial-loc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--paddy-dark), var(--soil-dark));
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background: var(--maize-yellow);
  color: var(--soil-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

.cta .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: transparent;
}

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

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

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

.footer-brand h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--maize-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--maize-yellow);
}

/* Legal pages */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-page strong {
  color: var(--gray-700);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paddy-green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--paddy-dark);
}

/* Download App */
.download-app {
  padding: 80px 0;
  background: var(--soft-green-tint);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.download-stores {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-badge {
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-900);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  min-width: 260px;
}

.store-badge:hover .store-badge-inner {
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.store-icon {
  flex-shrink: 0;
}

.store-badge-web .store-badge-inner {
  background: var(--paddy-green);
}

.store-badge-coming .store-badge-inner {
  background: var(--gray-600);
  opacity: 0.85;
}

.store-badge-coming {
  cursor: default;
  pointer-events: none;
}

.store-badge-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 4px;
}

.store-badge-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.download-qr {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 2px solid #efe3cc;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code canvas {
  border-radius: 8px;
}

.qr-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.qr-url {
  font-size: 0.85rem;
  color: var(--paddy-green);
  font-weight: 500;
}

/* Live Data Stats Bar */
.live-data-bar {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--paddy-dark), var(--soil-dark));
}

.live-data-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.live-data-item {
  text-align: center;
}

.live-data-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--maize-yellow);
  line-height: 1.2;
}

.live-data-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 4px;
}

.live-data-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* IPM Tools Section */
.ipm-tools {
  padding: 100px 0;
  background: var(--wheat-cream);
}

.ipm-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ipm-tool-card {
  background: #fff;
  border: 1px solid #efe3cc;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
}

.ipm-tool-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 8px 32px rgba(196, 106, 46, 0.12);
  transform: translateY(-4px);
}

.ipm-tool-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.ipm-tool-icon svg {
  display: block;
}

.ipm-tool-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.ipm-tool-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Trusted Data Sources */
.trusted-sources {
  padding: 100px 0;
  background: var(--soft-green-tint);
  border-bottom: 1px solid #efe3cc;
}

.trusted-sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trusted-source-card {
  background: #fff;
  border: 2px solid #e0eddb;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.trusted-source-card:hover {
  border-color: var(--paddy-green);
  box-shadow: 0 8px 32px rgba(74, 124, 89, 0.12);
  transform: translateY(-4px);
}

.trusted-source-logo {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1;
}

.trusted-source-logo svg {
  display: block;
}

.trusted-source-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--paddy-dark);
  margin-bottom: 10px;
}

.trusted-source-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step:not(:last-child)::after { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .ipm-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .trusted-sources-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: 1fr auto; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(45, 95, 59, 0.97);
    padding: 24px;
    border-bottom: 1px solid rgba(74, 124, 89, 0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .hero { padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; height: 440px; }
  .floating-card { display: none; }
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ipm-tools-grid { grid-template-columns: 1fr; }
  .trusted-sources-grid { grid-template-columns: 1fr; }
  .live-data-grid { gap: 24px; }
  .live-data-value { font-size: 1.5rem; }
  .live-data-divider { display: none; }
  .voice-features-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .cta h2 { font-size: 1.7rem; }
  .download-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .download-stores { align-items: center; }
  .store-badge-inner { min-width: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* Voice AI Section */
.voice-ai-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--soft-green-tint) 0%, #fff 50%, var(--wheat-cream) 100%);
}

.voice-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.voice-feature-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}

.voice-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.voice-feature-card.highlight {
  border-color: var(--maize-yellow);
  background: linear-gradient(180deg, var(--wheat-cream) 0%, #ffffff 100%);
  transform: scale(1.05);
}

.voice-feature-card.highlight:hover {
  transform: scale(1.05) translateY(-4px);
}

.voice-feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.voice-feature-icon svg {
  display: block;
}

.voice-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.voice-feature-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .voice-features-grid {
    grid-template-columns: 1fr;
  }
  .voice-feature-card.highlight {
    transform: none;
  }
  .voice-feature-card.highlight:hover {
    transform: translateY(-4px);
  }
  .voice-ai-section {
    padding: 60px 0;
  }
}

/* Scroll-reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
