/* GrassBuddy-specific styles */

/* App logo in hero */
.app-hero-icon .gb-logo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.gb-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Stages strip */
.stages-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  overflow-x: auto;
}
.stages-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  white-space: nowrap;
}
.stage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.stage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray);
  flex-shrink: 0;
}
.stage-harvest { color: #16a34a; }
.stage-harvest .stage-dot { background: #16a34a; }
.stage-arrow { color: var(--gray); font-size: 0.8rem; }

/* 2-column feature grid for wider cards */
.features-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.feature-card-wide {
  grid-column: span 1;
}
@media (min-width: 768px) {
  .feature-card-wide { grid-column: span 2; }
  .features-grid-2 { grid-template-columns: repeat(4, 1fr); }
}

/* Privacy section */
.privacy-section { background: var(--surface); }
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.privacy-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--off-white);
}
.check {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}
.privacy-badge {
  flex-shrink: 0;
}
.badge-inner {
  background: var(--bg);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.badge-icon { font-size: 2.5rem; }
.badge-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #16a34a;
}
.badge-desc {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .privacy-inner { grid-template-columns: 1fr; }
  .privacy-badge { display: none; }
  .feature-card-wide { grid-column: span 1; }
  .features-grid-2 { grid-template-columns: 1fr; }
}
