:root {
  --forest: #19412f;
  --forest-deep: #0f2b1f;
  --leaf: #6eaf4f;
  --earth: #5d3419;
  --sand: #f3ebda;
  --ivory: #f9f6ef;
  --ink: #1d1d1d;
  --muted: #4c6258;
  --line: rgba(25, 65, 47, 0.14);
  --card: rgba(255, 255, 255, 0.86);
  --radius: 18px;
  --shadow: 0 14px 28px rgba(15, 43, 31, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 8% 10%, rgba(110, 175, 79, 0.2), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(25, 65, 47, 0.15), transparent 30%),
    linear-gradient(180deg, #f8f5ee 0%, #efe6d5 100%);
  min-height: 100vh;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 245, 238, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.brand-title {
  font-weight: 700;
}

.brand-sub {
  display: block;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--forest-deep);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a.active {
  color: var(--leaf);
}

.hero {
  padding: 74px 0 48px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--forest-deep);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest-deep);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.4rem;
  color: var(--earth);
  margin-bottom: 8px;
}

.intro {
  color: #32473e;
  max-width: 76ch;
  margin-bottom: 20px;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(15, 43, 31, 0.28);
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.6);
}

section {
  padding: 24px 0 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.list {
  padding-left: 18px;
}

.list li {
  margin-bottom: 6px;
}

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

.kpi {
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.kpi strong {
  display: block;
  color: var(--forest);
  font-size: 1.2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.badge {
  display: inline-block;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--forest);
}

.cta {
  background: linear-gradient(150deg, rgba(15, 43, 31, 0.96), rgba(25, 65, 47, 0.94));
  color: #f8f3e8;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 20px 34px rgba(15, 43, 31, 0.24);
}

.cta h2,
.cta p {
  color: #f8f3e8;
}

.chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.page-head {
  padding: 60px 0 26px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  border-bottom: 1px solid #e8e3d7;
  padding: 10px;
  text-align: left;
  font-size: 0.95rem;
}

.table th {
  background: #f3efe4;
  color: var(--forest-deep);
}

form {
  display: grid;
  gap: 10px;
}

label {
  font-weight: 600;
  color: var(--forest-deep);
  font-size: 0.93rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d9d2c3;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: #4e6259;
  font-size: 0.88rem;
}

.success,
.error {
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.success {
  background: rgba(110, 175, 79, 0.18);
  border: 1px solid rgba(110, 175, 79, 0.4);
}

.error {
  background: rgba(194, 57, 45, 0.12);
  border: 1px solid rgba(194, 57, 45, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 34px 0 42px;
  text-align: center;
  color: #4f6054;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero,
  .grid-3,
  .grid-2,
  .timeline {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .hero {
    padding-top: 44px;
  }

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