:root {
  --primary: #000;
  --primary-hover: #222;
  --text: #111;
  --bg-light: #fff;
  --bg-dark: #111;
  --white: #fff;
  --gray: #888;
  --accent: #1db954;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-light);
  color: var(--text);
  letter-spacing: 0.01em;
}
a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}
.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 5rem 1rem 4rem 1rem;
  border-bottom: 2px solid #eee;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #ccc;
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.product-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid #eee;
  color: #111;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.product-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.product-desc {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: background 0.2s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  background: #15913d;
}
.trusted-badge {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-top: 1em;
  font-size: 1.05rem;
  color: #b5b5b5;
  opacity: 0.85;
}
.trusted-badge .stars {
  color: #ffd700;
  font-size: 1.1em;
  letter-spacing: 0.08em;
}
.trusted-badge .trusted-text {
  font-weight: 500;
  letter-spacing: 0.02em;
}
section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #000;
  opacity: 0.12;
  border-radius: 2px;
  margin: 16px auto 0 auto;
}
footer {
  background: var(--bg-dark);
  color: var(--gray);
  padding: 2rem 1rem;
  font-size: 0.95rem;
  border-top: 1px solid #222;
}
footer a {
  color: var(--gray);
  border-bottom: 1px dotted var(--gray);
}
footer a:hover {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}
@media (max-width: 700px) {
  .products {
    grid-template-columns: 1fr;
  }
}
