:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --bg-accent: #e8f4ef;
  --surface: #ffffff;
  --surface-soft: #f7fbfa;
  --ink: #10212f;
  --ink-soft: #3a4d5e;
  --border: #dce7e2;
  --primary: #0a7a61;
  --primary-strong: #065f4b;
  --highlight: #f59e0b;
  --shadow: 0 18px 45px rgba(16, 33, 47, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(10, 122, 97, 0.14), transparent 40%),
    radial-gradient(
      circle at 90% 0%,
      rgba(245, 158, 11, 0.16),
      transparent 36%
    ),
    linear-gradient(180deg, var(--bg-accent), var(--bg));
}
.page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 20px 80px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c3b53, #0a7a61 66%, #18a279);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 36px 34px;
  box-shadow: var(--shadow);
  animation: rise-in 0.8s ease both;
}
.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22),
    transparent 62%
  );
}
.kicker {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.92;
}
.hero h1 {
  margin: 10px 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1;
}
.hero p {
  margin: 0;
  max-width: 68ch;
  line-height: 1.75;
  text-align: justify;
  color: rgba(255, 255, 255, 0.95);
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.pill.alt {
  background: rgba(8, 24, 36, 0.24);
}
.overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.overview-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(3px);
}
.overview-card b {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}
.overview-card span {
  font-size: 0.88rem;
  opacity: 0.93;
}
.sections {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}
.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 30px rgba(13, 32, 46, 0.05);
  opacity: 0;
  transform: translateY(10px);
  animation: slide-up 0.55s ease forwards;
}
.section:nth-child(2) {
  animation-delay: 0.06s;
}
.section:nth-child(3) {
  animation-delay: 0.11s;
}
.section:nth-child(4) {
  animation-delay: 0.16s;
}
.section:nth-child(5) {
  animation-delay: 0.2s;
}
.section:nth-child(6) {
  animation-delay: 0.24s;
}
.section:nth-child(7) {
  animation-delay: 0.28s;
}
.section:nth-child(8) {
  animation-delay: 0.32s;
}
.section h2 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  letter-spacing: -0.02em;
}
.section p,
.section li {
  color: var(--ink-soft);
  line-height: 1.78;
}
.section ul {
  margin: 10px 0 0;
  padding-left: 20px;
}
.note {
  margin-top: 14px;
  background: var(--surface-soft);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 12px 14px;
}
.warning {
  border-left-color: var(--highlight);
}
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 12px;
}
.services span {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.services a {
  color: var(--primary-strong);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.section a {
  color: var(--primary-strong);
}
.section a:hover,
.section a:focus-visible {
  color: var(--primary);
}
.section a:focus-visible {
  outline: 2px solid rgba(10, 122, 97, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}
.footer {
  margin-top: 30px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.footer a {
  color: var(--primary-strong);
  text-decoration: none;
  font-weight: 700;
}
.cc {
  margin-top: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: justify;
  overflow-wrap: anywhere;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .overview {
    grid-template-columns: 1fr;
  }
  .services {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .page {
    padding: 20px 12px 56px;
  }
  .hero,
  .section {
    border-radius: 18px;
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
