main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2.5rem;
}

.content {
  max-width: 560px;
  width: 100%;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

h1 span {
  color: var(--accent);
}

.description {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.services-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--fg);
}

.services-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 2.5rem;
}

.contact {
  font-size: 1rem;
  color: var(--muted);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.header {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.15s, background 0.15s;
}

.product-card:hover {
  border-color: var(--accent);
  background: #f0f5ff;
}

.product-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.product-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 1rem;
}

.product-card:hover .product-arrow {
  color: var(--accent);
}

.products,
.services {
  margin-bottom: 2.5rem;
}
