.product-hero {
  margin-top: calc(-1 * var(--header-offset));
  padding: calc(var(--header-offset) + 6rem) 0 8rem;
  background: radial-gradient(circle at 15% 10%, rgba(0, 131, 255, 0.12), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(85, 172, 255, 0.08), transparent 45%),
    var(--color-slate-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-hero h1 {
  font-size: clamp(3rem, 6.5vw, 5rem);
  line-height: 1.05;
  max-width: 1000px;
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--color-text);
}

.product-hero h1 em {
  font-style: normal;
  color: var(--color-primary);
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-hero p {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.product-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-header-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 32px rgba(0, 12, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 12, 42, 0.08);
  border-color: rgba(0, 131, 255, 0.3);
}

.product-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-card p {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.integration-item {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 24px rgba(0, 12, 42, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 12, 42, 0.08);
  border-color: rgba(0, 131, 255, 0.3);
}

.integration-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  margin: 0;
}

.integration-item strong {
  font-size: 1.1rem;
  color: var(--color-text);
}

.cta-band {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.cta-band>div:first-child {
  flex: 1;
  min-width: 300px;
}

.cta-band p {
  font-size: 1.15rem;
  color: var(--color-muted);
  margin: 0;
}

.cta-band .button-row {
  margin-top: 0;
}