:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --text: #152026;
  --muted: #5f707b;
  --brand: #0a7f67;
  --brand-strong: #075f4d;
  --accent: #f59e0b;
  --line: #d9e3e6;
  --success: #0e9f6e;
  --danger: #dc2626;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(11, 35, 55, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

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

.header {
  background: linear-gradient(135deg, #0b8b71 0%, #116f8d 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 4px 16px rgba(8, 39, 55, 0.22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

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

.nav a {
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-strong);
  text-decoration: none;
}

.btn-secondary {
  background: #eef7f5;
  color: var(--brand-strong);
  border: 1px solid #b8ddd5;
}

.btn-secondary:hover {
  background: #ddf1ec;
  text-decoration: none;
}

.btn-dark {
  background: #1f2937;
  color: #fff;
}

.btn-dark:hover {
  background: #111827;
  text-decoration: none;
}

.hero {
  padding: 64px 0 40px;
}

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

.hero h1 {
  margin: 0 0 14px;
  line-height: 1.25;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 760px;
}

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

.section {
  padding: 24px 0 44px;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
}

.section p.section-intro {
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.list {
  margin: 8px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #eaf7f3;
  color: var(--brand-strong);
  border: 1px solid #c8e7dd;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.muted {
  color: var(--muted);
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

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

.form-note {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.status {
  margin-top: 10px;
  font-size: 0.9rem;
}

.status.ok {
  color: var(--success);
}

.status.err {
  color: var(--danger);
}

.map-frame {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
}

.footer {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  background: #f1f5f9;
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e6edf0;
  font-size: 0.93rem;
}

th {
  background: #eff5f7;
}

.highlight {
  border-left: 4px solid var(--accent);
  padding: 12px 14px;
  background: #fffaf0;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .card,
  form {
    padding: 16px;
  }
}
