:root {
  --bg-rose: #ffeef5;
  --bg-cream: #fff8ef;
  --bg-mint: #eefaf5;
  --card: #ffffff;
  --text-main: #2d2a33;
  --text-sub: #6d6679;
  --line: #f0dfe7;
  --accent-1: #f7b8cf;
  --accent-2: #cdb8f5;
  --accent-3: #b9e8d3;
  --shadow: 0 14px 32px rgba(101, 57, 92, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text-main);
  background:
    radial-gradient(1200px 500px at 10% -10%, #ffdbe9 0%, transparent 60%),
    radial-gradient(900px 420px at 100% 0%, #f1e4ff 0%, transparent 58%),
    linear-gradient(180deg, var(--bg-rose) 0%, var(--bg-cream) 45%, var(--bg-mint) 100%);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
}

.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f5dfe8;
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--text-main);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(112, 73, 104, 0.12);
}

.hero {
  margin-top: 22px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  border: 1px solid #f0dce6;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
}

.hero::before {
  width: 220px;
  height: 220px;
  background: var(--accent-1);
  right: -40px;
  top: -90px;
}

.hero::after {
  width: 180px;
  height: 180px;
  background: var(--accent-2);
  left: -70px;
  bottom: -90px;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 6vw, 50px);
  line-height: 1.07;
}

.hero p {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 17px;
  color: var(--text-sub);
}

.grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.card {
  grid-column: span 6;
  background: var(--card);
  border: 1px solid #f2e3ea;
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card.full {
  grid-column: 1 / -1;
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
}

.card p,
.card li {
  color: var(--text-sub);
  line-height: 1.65;
}

.callout {
  border-left: 4px solid #e2bfd6;
  background: #fff8fc;
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 8px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.kpi {
  background: linear-gradient(145deg, #fff6f9, #ffffff);
  border: 1px solid #f3e2e9;
  border-radius: 14px;
  padding: 12px;
}

.kpi strong {
  display: block;
  font-size: 20px;
}

.quick-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-links a {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid #ebd7e2;
  color: var(--text-main);
  background: #fff;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #f2e3ea;
  vertical-align: top;
}

th {
  color: #53465e;
  font-weight: 700;
}

.footer {
  margin-top: 26px;
  text-align: center;
  color: #7a7386;
  font-size: 13px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid #ead9e3;
  background: #fff;
  font-size: 12px;
  margin-right: 6px;
}

@media (max-width: 860px) {
  .card {
    grid-column: 1 / -1;
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
