:root {
  --bg: #f7fbf8;
  --bg-2: #eff8f2;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-2: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 30, 20, 0.12);
  --text: rgba(11, 27, 18, 0.92);
  --muted: rgba(11, 27, 18, 0.68);
  --muted-2: rgba(11, 27, 18, 0.54);
  --brand: #7acb3d;
  --brand-2: #25c16a;
  --warn: #ffcf5a;
  --shadow: 0 18px 60px rgba(10, 24, 16, 0.12);
  --shadow-brand: 0 22px 70px rgba(122, 203, 61, 0.22);
  --ring: 0 0 0 4px rgba(122, 203, 61, 0.22);
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1100px 760px at 10% -10%, rgba(122, 203, 61, 0.18), transparent 62%),
    radial-gradient(900px 680px at 95% 10%, rgba(37, 193, 106, 0.14), transparent 62%),
    radial-gradient(900px 740px at 50% 105%, rgba(122, 203, 61, 0.1), transparent 66%),
    linear-gradient(180deg, var(--bg), #ffffff 78%, var(--bg-2));
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 540px at 8% 0%, rgba(122, 203, 61, 0.1), transparent 60%),
    radial-gradient(760px 520px at 100% 12%, rgba(37, 193, 106, 0.08), transparent 62%),
    repeating-linear-gradient(90deg, rgba(122, 203, 61, 0.03), rgba(122, 203, 61, 0.03) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(0deg, rgba(122, 203, 61, 0.025), rgba(122, 203, 61, 0.025) 1px, transparent 1px, transparent 56px);
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(122, 203, 61, 0.25);
  color: rgba(11, 27, 18, 0.92);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1220;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: relative;
}

.topbar {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 13px;
}

.topbar__left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.topbar__link {
  color: rgba(11, 27, 18, 0.88);
  font-weight: 600;
}

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

.topbar__tel {
  color: rgba(11, 27, 18, 0.88);
  font-weight: 600;
}

.topbar__sep {
  opacity: 0.35;
}

.qr-btn {
  appearance: none;
  border: 1px solid var(--border);
  color: rgba(11, 27, 18, 0.86);
  background: rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.qr-btn:hover {
  background: rgba(122, 203, 61, 0.12);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(10, 24, 16, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 14px 34px rgba(122, 203, 61, 0.22));
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(24px 24px at 30% 35%, rgba(255, 255, 255, 0.7), transparent 45%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 40px rgba(122, 203, 61, 0.28);
}

.brand__name {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 18px;
}

.menu__link {
  color: rgba(11, 27, 18, 0.72);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu__link:hover {
  background: rgba(122, 203, 61, 0.12);
  color: rgba(11, 27, 18, 0.92);
}

.menu__cta {
  background: linear-gradient(135deg, rgba(122, 203, 61, 0.98), rgba(37, 193, 106, 0.92));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 52px rgba(122, 203, 61, 0.24);
}

.menu__cta:hover {
  background: linear-gradient(135deg, rgba(122, 203, 61, 1), rgba(37, 193, 106, 0.98));
  color: rgba(255, 255, 255, 0.98);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  margin-left: auto;
}

.burger__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: rgba(11, 27, 18, 0.78);
  border-radius: 999px;
}

.mobile {
  display: none;
  padding: 10px 0 16px;
}

.mobile__menu {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile__link {
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(11, 27, 18, 0.86);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
}

.mobile__cta {
  background: linear-gradient(135deg, rgba(122, 203, 61, 0.98), rgba(37, 193, 106, 0.92));
  color: rgba(255, 255, 255, 0.98);
  border: 0;
}

.qr-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.qr-panel__inner {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px 0;
}

.qr-panel__card {
  width: min(520px, calc(100% - 40px));
  height: min(200px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 16px;
}

.qr {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.qr-panel__title {
  font-weight: 800;
  font-size: 16px;
}

.qr-panel__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.qr-close {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.76);
  color: rgba(11, 27, 18, 0.88);
  padding: 10px 12px;
  border-radius: 14px;
  cursor: pointer;
}

.qr-close:hover {
  background: rgba(122, 203, 61, 0.12);
}

.qr-panel.is-open {
  display: block;
}

.hero {
  padding: 56px 0 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: rgba(11, 27, 18, 0.78);
  font-weight: 600;
  font-size: 13px;
}

.hero__title {
  margin: 16px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
}

.btn--primary {
  background: linear-gradient(135deg, rgba(122, 203, 61, 0.98), rgba(37, 193, 106, 0.92));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 60px rgba(122, 203, 61, 0.22);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--border);
  color: rgba(11, 27, 18, 0.86);
}

.btn--ghost:hover {
  background: rgba(122, 203, 61, 0.12);
}

.btn--full {
  width: 100%;
}

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

.stat {
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(10, 24, 16, 0.06);
}

.stat__num {
  font-size: 20px;
  font-weight: 900;
}

.stat__label {
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.hero__visual {
  position: relative;
  min-height: 360px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.45;
}

.glow--a {
  width: 240px;
  height: 240px;
  left: 10%;
  top: 4%;
  background: rgba(122, 203, 61, 0.32);
  animation: floatGlow 10s ease-in-out infinite;
}

.glow--b {
  width: 220px;
  height: 220px;
  right: 0;
  bottom: 10%;
  background: rgba(37, 193, 106, 0.24);
  animation: floatGlow 12s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, -12px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.card {
  position: absolute;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 60px rgba(10, 24, 16, 0.12);
  backdrop-filter: blur(12px);
}

.card--big {
  width: min(340px, 92%);
  right: 0;
  top: 20px;
}

.card--small {
  width: min(320px, 90%);
  left: 0;
  bottom: 22px;
}

.card__kicker {
  color: rgba(11, 27, 18, 0.66);
  font-weight: 700;
  font-size: 13px;
}

.card__title {
  margin-top: 8px;
  font-weight: 900;
  font-size: 18px;
}

.card__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 58px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(122, 203, 61, 0.08), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__head {
  text-align: center;
  margin-bottom: 24px;
}

.section__head--left {
  text-align: left;
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.01em;
}

.section__desc {
  margin: 10px auto 0;
  color: var(--muted);
  max-width: 62ch;
}

#showcase .section__desc {
  max-width: none;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.detail {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail__head {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 14px;
  padding: 16px 16px 0;
  align-items: start;
}

.detail__media {
  width: 168px;
  height: 126px;
  border-radius: 18px;
  border: 1px solid rgba(15, 30, 20, 0.12);
  background: rgba(255, 255, 255, 0.9);
  object-fit: cover;
}

.detail__title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.detail__intro {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.detail__body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 12px;
}

.detail__block {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  align-items: start;
}

.detail__k {
  font-weight: 900;
  color: rgba(11, 27, 18, 0.78);
  font-size: 13px;
}

.detail__v {
  color: var(--muted);
  font-size: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.list li {
  margin: 6px 0;
}

.news {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  box-shadow: var(--shadow);
}

.news__cover {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.9);
}

.news__body {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(11, 27, 18, 0.6);
  font-weight: 800;
  font-size: 12px;
}

.news__tag {
  background: rgba(122, 203, 61, 0.16);
  border: 1px solid rgba(122, 203, 61, 0.22);
  color: rgba(11, 27, 18, 0.78);
  padding: 6px 10px;
  border-radius: 999px;
}

.news__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.news__desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news__more {
  color: rgba(11, 27, 18, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.tile {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tile:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 203, 61, 0.3);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-brand);
}

.tile__cover {
  height: 160px;
  background: radial-gradient(900px 300px at 0% 0%, rgba(122, 203, 61, 0.26), transparent 58%),
    radial-gradient(700px 250px at 90% 10%, rgba(37, 193, 106, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.tile__cover--1 {
  background-image: url("./assets/docx/image9.png");
}

.tile__cover--2 {
  background-image: url("./assets/docx/image15.png");
}

.tile__cover--3 {
  background-image: url("./assets/docx/image18.png");
}

.tile__cover--4 {
  background-image: url("./assets/docx/image20.png");
}

.tile__cover--5 {
  background-image: url("./assets/docx/image21.png");
}

.tile__cover--6 {
  background-image: url("./assets/docx/image27.png");
}

.tile__body {
  padding: 14px 14px 16px;
}

.tile__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.tile__desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 203, 61, 0.3);
  box-shadow: var(--shadow-brand);
}

.service__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(122, 203, 61, 0.16);
  border: 1px solid rgba(122, 203, 61, 0.32);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: rgba(11, 27, 18, 0.86);
}

.service__title {
  margin: 12px 0 0;
  font-size: 16px;
}

.service__desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.callout {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(122, 203, 61, 0.16), rgba(37, 193, 106, 0.08));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.callout__title {
  font-weight: 900;
  letter-spacing: 0.01em;
}

.callout__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.step__no {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(122, 203, 61, 0.16);
  border: 1px solid rgba(122, 203, 61, 0.32);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step__title {
  font-weight: 900;
}

.step__desc {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

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

.about__body {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.about__p {
  margin: 0 0 10px;
}

.about__p:last-child {
  margin-bottom: 0;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  color: rgba(11, 27, 18, 0.78);
  font-weight: 700;
  font-size: 13px;
}

.quote {
  margin-top: 16px;
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(122, 203, 61, 0.22);
  background: linear-gradient(135deg, rgba(122, 203, 61, 0.08), rgba(255, 255, 255, 0.92) 55%, rgba(37, 193, 106, 0.06));
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(10, 24, 16, 0.1);
}

.quote::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(520px 180px at 20% 0%, rgba(122, 203, 61, 0.18), transparent 62%),
    radial-gradient(520px 180px at 90% 100%, rgba(37, 193, 106, 0.14), transparent 62%);
  opacity: 0.85;
}

.quote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 30px rgba(122, 203, 61, 0.28);
  pointer-events: none;
}

.quote__mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 54px;
  line-height: 1;
  opacity: 0.14;
  color: rgba(11, 27, 18, 0.8);
}

.quote__text {
  font-weight: 650;
  color: rgba(11, 27, 18, 0.9);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  position: relative;
}

.quote__by {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote__by::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(122, 203, 61, 0.22);
  border: 1px solid rgba(122, 203, 61, 0.32);
}

.frame {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.frame__title {
  font-weight: 900;
}

.frame__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.frame__list li {
  margin: 6px 0;
}

.frame__hint {
  margin-top: 10px;
  color: rgba(11, 27, 18, 0.7);
  font-weight: 700;
  font-size: 13px;
}

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

.gallery__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.contact__card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

.contact__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 30, 20, 0.1);
}

.contact__row:last-child {
  border-bottom: 0;
}

.contact__label {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.contact__value a {
  font-weight: 800;
  color: rgba(11, 27, 18, 0.9);
}

.contact__sep {
  margin: 0 6px;
  opacity: 0.4;
}

.contact__tips {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.form {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

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

.field__label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(11, 27, 18, 0.74);
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 30, 20, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(11, 27, 18, 0.92);
  padding: 11px 12px;
  outline: none;
}

.field__input::placeholder {
  color: rgba(11, 27, 18, 0.42);
}

.field__input:focus {
  border-color: rgba(122, 203, 61, 0.65);
  box-shadow: var(--ring);
}

.field__input--area {
  resize: vertical;
  min-height: 120px;
}

.form__note {
  margin-top: 10px;
  color: rgba(11, 27, 18, 0.56);
  font-size: 12px;
}

.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  padding: 26px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

.footer__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer__identity {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
}

.footer__name {
  font-weight: 900;
}

.footer__desc {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  justify-content: flex-end;
}

.footer__links a {
  color: rgba(11, 27, 18, 0.72);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.footer__links a:hover {
  color: rgba(11, 27, 18, 0.92);
  background: rgba(122, 203, 61, 0.12);
  border-color: rgba(122, 203, 61, 0.22);
}

.footer__meta {
  color: rgba(11, 27, 18, 0.62);
  font-size: 13px;
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: center;
}

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

  .hero__visual {
    min-height: 320px;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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



  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 760px) {
  .menu {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .mobile.is-open {
    display: block;
  }

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

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

  .hero {
    padding-top: 34px;
  }

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

  .qr-panel__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr {
    margin: 0 auto;
  }

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

  .detail__media {
    width: 100%;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
