:root {
  --primary: #223a70;
  --border: #e6e6e6;
  --muted: #666;
  --bg: #f7f7f7;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #333;
  line-height: 1.7;
}

.main-wrap.product {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}


/* hero */
.hero {
  display: grid;
/*  grid-template-columns: 1fr 1.2fr;*/
  gap: 24px;
  align-items: center;
  margin-bottom: 10px;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
}

.hero-content h1 {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0;
}

.hero-content h2 {
  font-size: 2rem;
  margin: 5px 0 10px;
  color: var(--primary);
}

.highlight {
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary);
}

/* card */
.info-card,
.download-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  background: white;
}

.download-card {
  margin-top: 30px;
}

/* CTA card */
.cta-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-top: 16px;
  transition: 0.2s;
}

.cta-card:hover {
  transform: translateY(-2px);
}

.cta-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.cta-text {
  color: var(--primary);
  font-weight: bold;
  font-size: 1.15rem;
}

/* download */
.download-card h2 {
  color: var(--primary);
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  min-height: 56px;
  margin-top: 16px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.2s;
}

.download-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


