/* style.css – shared styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

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

header {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2937;
  position: sticky;
  top: 0;
  z-index: 20;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo span {
  color: #22c55e;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: #e5e7eb;
}

.nav-links a:hover {
  background: #1e293b;
}

.btn-primary {
  background: #22c55e;
  color: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #4b5563;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #22c55e;
  color: #22c55e;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-secondary {
  font-size: 0.9rem;
  color: #9ca3af;
}

.hero img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.75);
}

/* Sections */
.section {
  margin-top: 2.75rem;
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.section p {
  color: #9ca3af;
}

/* Product grid */
.product-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: #020617;
  border-radius: 0.75rem;
  padding: 0.85rem;
  border: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: #22c55e;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.6rem;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.product-card p {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price {
  font-weight: 600;
  color: #e5e7eb;
}

/* Forms */
.form-card {
  max-width: 420px;
  margin: 2rem auto;
  background: #020617;
  border-radius: 0.75rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid #1f2937;
}

.form-card h1 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.form-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.55rem;
  border-radius: 0.5rem;
  border: 1px solid #4b5563;
  background: #020617;
  color: #e5e7eb;
  font-size: 0.9rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.3);
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.8rem;
}

.checkbox-row input {
  margin-top: 0.15rem;
}

/* Page headers & legal */
.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1 {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.page-header p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.legal-section {
  margin-bottom: 1.5rem;
}

.legal-section h2 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.legal-section p,
.legal-section ul {
  font-size: 0.9rem;
  color: #9ca3af;
}

.legal-section ul {
  list-style: disc;
  margin-left: 1.25rem;
  line-height: 1.8;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* Stats section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #22c55e;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(34, 197, 94, 0.12);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* Contact info */
.contact-info {
  background: #020617;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
}

/* Success message */
.success-message {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid #22c55e;
  color: #bbf7d0;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: none;
}

.success-message.show {
  display: block;
}

/* Filter section */
.filter-section {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

/* Footer */
footer {
  border-top: 1px solid #1f2937;
  background: #020617;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stats-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}
