/* ============================================
   MapMyCrop — Enterprise Redesign Stylesheet
   Brand: Hardcastle Agrotech Solutions Inc
   ============================================ */

/* --- TOKENS / VARIABLES --- */
:root {
  --green-900: #0a3d1f;
  --green-800: #0f5132;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  --teal-600:  #0d9488;
  --teal-500:  #14b8a6;

  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white:     #ffffff;

  --gold:      #f59e0b;
  --gold-light:#fef3c7;

  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.18);
  --shadow-green: 0 8px 32px rgba(22,163,74,.25);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-tag--dark {
  color: var(--green-400);
  background: rgba(74,222,128,.12);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle--white { color: rgba(255,255,255,.75); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn--primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(22,163,74,.40);
}
.btn--secondary {
  background: var(--white);
  color: var(--slate-800);
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--green-500);
  color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.6);
}
.btn--lg { font-size: 1.05rem; padding: 15px 32px; }
.btn--sm { font-size: .85rem; padding: 8px 18px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--slate-200), var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__logo-icon {
  width: 38px; height: 38px;
  background: var(--green-600);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.navbar__logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
}
.navbar__logo-text span { color: var(--green-600); }
.navbar.scrolled .navbar__logo-text { color: var(--slate-900); }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: var(--slate-700); }
.nav-link:hover,
.navbar.scrolled .nav-link:hover {
  color: var(--green-600);
  background: var(--green-50);
}
.nav-link .chevron {
  width: 14px; height: 14px;
  transition: transform var(--transition);
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  padding: 20px;
  min-width: 520px;
  z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dropdown__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.dropdown__item:hover { background: var(--green-50); }
.dropdown__icon {
  width: 36px; height: 36px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.dropdown__label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-900);
}
.dropdown__desc {
  font-size: .775rem;
  color: var(--slate-500);
  margin-top: 2px;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .navbar__hamburger span { background: var(--slate-800); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--slate-900) 60%, #1a2e1a 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero__glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,.12) 0%, transparent 70%);
  bottom: 0; left: 10%;
  border-radius: 50%;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-400);
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title .highlight {
  background: linear-gradient(135deg, var(--green-400), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.70);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat-item {}
.hero__stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-number span { color: var(--green-400); }
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero visual panel */
.hero__visual {
  position: relative;
}
.hero__dashboard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(34,197,94,.12);
}
.hero__dash-header {
  background: rgba(255,255,255,.06);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__dash-dots span {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__dash-dots span:nth-child(1) { background: #ff5f57; }
.hero__dash-dots span:nth-child(2) { background: #febc2e; }
.hero__dash-dots span:nth-child(3) { background: #28c840; }
.hero__dash-title {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-left: 8px;
}
.hero__dash-body { padding: 20px; }
.dash-map {
  background: linear-gradient(135deg, #0a1f0a 0%, #0d2b1a 100%);
  border-radius: var(--radius-md);
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.dash-map__overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(34,197,94,.35) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(34,197,94,.20) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(13,148,136,.25) 0%, transparent 35%);
}
.dash-map__pin {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74,222,128,.3);
  animation: map-ping 2s infinite;
}
.dash-map__pin:nth-child(1) { top: 35%; left: 28%; animation-delay: 0s; }
.dash-map__pin:nth-child(2) { top: 55%; left: 65%; animation-delay: .6s; }
.dash-map__pin:nth-child(3) { top: 20%; left: 52%; animation-delay: 1.2s; }
.dash-map__pin:nth-child(4) { top: 70%; left: 38%; animation-delay: .3s; }
@keyframes map-ping {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.dash-map__label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-mono);
}
.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.dash-metric {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.dash-metric__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-mono);
}
.dash-metric__value.green { color: var(--green-400); }
.dash-metric__label {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.dash-chart {
  margin-top: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}
.dash-bar {
  flex: 1;
  background: linear-gradient(to top, var(--green-600), var(--green-400));
  border-radius: 3px 3px 0 0;
  transition: height var(--transition);
}
.hero__floating {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  white-space: nowrap;
}
.hero__floating--1 {
  bottom: -20px;
  left: -30px;
}
.hero__floating--2 {
  top: 40px;
  right: -25px;
}
.hero__floating-icon { font-size: 1.1rem; margin-bottom: 2px; }
.hero__floating-value { font-weight: 700; color: var(--slate-900); }
.hero__floating-label { color: var(--slate-500); font-size: .72rem; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--slate-900);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  overflow: hidden;
}
.trust-bar__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 16px;
}
.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 24px;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: .45;
  transition: opacity var(--transition);
  filter: grayscale(1) brightness(2);
}
.trust-logo:hover { opacity: .85; filter: none; }
.trust-logo__icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.trust-logo__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 100px 0;
  background: var(--white);
}
.products__header {
  text-align: center;
  margin-bottom: 64px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient, linear-gradient(90deg, var(--green-500), var(--teal-500)));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.product-card:hover::before { opacity: 1; }
.product-card--featured {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--slate-900) 100%);
  border-color: transparent;
  color: var(--white);
}
.product-card--featured::before { opacity: 1; }
.product-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.product-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.product-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.product-card--featured .product-card__name { color: var(--white); }
.product-card__desc {
  font-size: .9rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.product-card--featured .product-card__desc { color: rgba(255,255,255,.65); }
.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--slate-700);
}
.product-card--featured .product-feature { color: rgba(255,255,255,.75); }
.product-feature__check {
  width: 18px; height: 18px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green-600);
  font-size: .7rem;
}
.product-card--featured .product-feature__check {
  background: rgba(74,222,128,.2);
  color: var(--green-400);
}
.product-card__link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.product-card--featured .product-card__link { color: var(--green-400); }
.product-card__link:hover { gap: 12px; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries {
  padding: 100px 0;
  background: var(--slate-100);
}
.industries__header {
  text-align: center;
  margin-bottom: 60px;
}
.industries__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.industry-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  transition: all var(--transition);
}
.industry-tab:hover,
.industry-tab.active {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  box-shadow: var(--shadow-green);
}
.industry-content { display: none; }
.industry-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.industry-content__text {}
.industry-content__title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
}
.industry-content__desc {
  color: var(--slate-600);
  line-height: 1.75;
  margin-bottom: 28px;
}
.industry-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.industry-metric {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--slate-200);
}
.industry-metric__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-600);
}
.industry-metric__label {
  font-size: .8rem;
  color: var(--slate-500);
  margin-top: 4px;
}
.industry-content__visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}
.industry-visual__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-200);
}
.industry-visual__icon {
  width: 44px; height: 44px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.industry-visual__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}
.industry-visual__sub {
  font-size: .8rem;
  color: var(--slate-500);
}
.industry-visual__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 16px;
}
.ind-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--green-700), var(--green-400));
  position: relative;
}
.ind-bar__label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  color: var(--slate-500);
  white-space: nowrap;
}
.industry-visual__insight {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: .8rem;
  color: var(--green-800);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

/* ============================================
   AI FEATURES
   ============================================ */
.ai-features {
  padding: 100px 0;
  background: var(--slate-900);
  position: relative;
  overflow: hidden;
}
.ai-features__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(34,197,94,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,148,136,.08) 0%, transparent 40%);
  pointer-events: none;
}
.ai-features__header {
  text-align: center;
  margin-bottom: 64px;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ai-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.ai-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(74,222,128,.3);
  transform: translateY(-4px);
}
.ai-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(13,148,136,.2));
  border: 1px solid rgba(74,222,128,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.ai-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ai-card__desc {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}
.ai-card__metric {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ai-metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-400);
  font-family: var(--font-mono);
}
.ai-metric-label {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* ============================================
   SOCIAL PROOF / STATS
   ============================================ */
.social-proof {
  padding: 80px 0;
  background: var(--white);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  margin-bottom: 60px;
}
.stat-item {}
.stat-item__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__number em {
  color: var(--green-600);
  font-style: normal;
}
.stat-item__label {
  font-size: .875rem;
  color: var(--slate-500);
}
.stat-divider {
  width: 1px;
  background: var(--slate-200);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: .9rem;
}
.testimonial-text {
  font-size: .9rem;
  color: var(--slate-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .875rem;
}
.testimonial-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-900);
}
.testimonial-role {
  font-size: .775rem;
  color: var(--slate-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--slate-900) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(34,197,94,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-900);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: all var(--transition);
}
.footer__social-btn:hover {
  background: var(--green-600);
  color: var(--white);
}
.footer__col-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--green-400); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--green-400); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products__grid,
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; padding: 100px 0 60px; gap: 40px; }
  .hero__visual { display: none; }
  .products__grid,
  .ai-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .industry-content.active { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .navbar__nav, .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }
  .dropdown { min-width: 300px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .hero__cta { flex-direction: column; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp .6s ease forwards;
}
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }
.animate-delay-4 { animation-delay: .4s; opacity: 0; }

/* Counter animation */
.counter-num { font-variant-numeric: tabular-nums; }
