:root {
  --bg-start: #f7fff8;
  --bg-end: #e4f6e9;
  --text: #173322;
  --muted: #5b7865;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(23, 51, 34, 0.1);
  --accent: #17633a;
  --accent-soft: #dff5e7;
  --danger-soft: #fdeaea;
  --shadow: 0 18px 45px rgba(20, 83, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(151, 220, 171, 0.35), transparent 30%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
  color: var(--text);
}

.page {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}


.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.hero-image {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(20, 60, 30, 0.18);
}

.lang-buttons {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
}

.lang-buttons button {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.lang-buttons button.active {
  background: var(--accent);
  color: white;
}

.hero {
  text-align: center;
  margin: 34px auto 32px;
}

.hero.compact {
  margin-top: 70px;
}

.hero-icon {
  width: 118px;
  height: 118px;
  border-radius: 30px;
  font-size: 54px;
  margin: 0 auto 24px;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 76px);
  letter-spacing: -0.05em;
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

p {
  line-height: 1.7;
}

.subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

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

.card p:last-child {
  margin-bottom: 0;
}

.center-card {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.text-card {
  max-width: 760px;
  margin: 0 auto;
}

.email {
  color: var(--accent);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.links a {
  text-decoration: none;
  background: white;
  color: var(--accent);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20, 83, 45, 0.1);
}

@media (max-width: 640px) {
  .page {
    padding: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .lang-buttons {
    width: 100%;
  }

  .lang-buttons button {
    flex: 1;
  }

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

  .card {
    padding: 22px;
    border-radius: 22px;
  }
}
