/* styles-index.css */

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--soft), #fff 55%);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 450px at 10% 10%, rgba(255, 106, 19, .25), transparent 60%),
    radial-gradient(900px 450px at 90% 20%, rgba(255, 106, 19, .22), transparent 60%),
    url("./images/hero.jpg") center/cover no-repeat;
  filter: brightness(0.75);
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .82) 55%, rgba(255, 255, 255, .65) 100%);
}

.hero-content {
  position: relative;
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: start;
}

h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 14px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 58ch;
}

.kpis {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--muted);
}

/* Card */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, .05);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* Card Images */
.card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(17, 24, 39, .08);
}

/* Grid Layout */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section {
  padding: 60px 0;
}

.section h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  margin-top: 10px;
}

.link:hover {
  text-decoration: underline;
}

/* Platform Shot */
.platform-shot {
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, .10);
  box-shadow: 0 20px 40px rgba(17, 24, 39, .08);
  margin: 18px 0 10px;
}
