/* Keylight Digital - Brand Overrides */

:root {
  --accent: #3b82f6;
}

/* Hero section */
.hero {
  text-align: center;
  padding: 2rem 0 1rem;
}

.hero h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.hero svg {
  display: block;
  margin: 2rem auto 0;
  max-width: 100%;
  height: auto;
}

/* Illustration styling */
.illustration {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
}

/* Product card */
.product-card {
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  max-width: 420px;
  margin: 1.5rem auto;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.5rem 0;
}

.price small {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
}

.price-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.feature {
  padding: 1rem;
}

.feature svg {
  display: block;
  margin: 0 auto 0.75rem;
}

.feature h4 {
  margin: 0 0 0.25rem;
}

.feature p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* Section spacing */
section {
  margin-bottom: 1rem;
}

/* Policy pages */
.last-updated {
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

/* Responsive */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
