:root {
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --surface-2: #f1eadf;
  --ink: #211d18;
  --muted: #70685f;
  --line: #e3d9cc;
  --brand: #275244;
  --brand-2: #173b32;
  --gold: #b88a42;
  --gold-soft: #efe2c8;
  --danger: #a33d36;
  --success: #2f7356;
  --warning: #996b1f;
  --shadow: 0 18px 55px rgba(54, 43, 31, 0.1);
  --shadow-strong: 0 30px 90px rgba(31, 26, 19, 0.22);
  --radius: 8px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(227, 217, 204, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100%, var(--max));
  min-height: 68px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff8ec;
  font-size: 13px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-2);
  background: var(--surface-2);
}

.nav-link.primary {
  color: #fffaf0;
  background: var(--brand);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--brand);
  font-size: 20px;
}

.section {
  padding: 68px 20px;
}

.section.tight {
  padding: 38px 20px;
}

.wrap {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100%, 820px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 92px 20px;
  overflow: hidden;
  color: #fff9ef;
  background:
    linear-gradient(120deg, rgba(23, 59, 50, 0.93), rgba(39, 82, 68, 0.82)),
    url("../img/groups/yoiyoi-team.jpg") center/cover;
}

.hero.home-hero {
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 35, 30, 0.94) 0%, rgba(23, 59, 50, 0.82) 48%, rgba(23, 59, 50, 0.28) 100%),
    url("../img/concept/community-connection-hero.png") center/cover;
}

.hero.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(247, 244, 238, 0), var(--bg));
  pointer-events: none;
}

.hero.member-hero {
  min-height: auto;
  background:
    linear-gradient(120deg, rgba(23, 59, 50, 0.92), rgba(65, 57, 43, 0.78)),
    url("../img/groups/satta-nixons-team.jpg") center/cover;
}

.hero.concept-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(15, 35, 30, 0.92) 0%, rgba(24, 49, 42, 0.74) 42%, rgba(24, 49, 42, 0.18) 100%),
    url("../img/concept/community-connection-hero.png") center/cover;
}

.hero.concept-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(247, 244, 238, 0), var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
}

.hero-kicker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 620px);
  margin-top: 30px;
}

.hero-kicker {
  padding: 12px;
  border: 1px solid rgba(255, 249, 239, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(12px);
}

.hero-kicker strong {
  display: block;
  color: var(--gold-soft);
  font-size: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.22;
  margin: 0;
}

h1 {
  font-size: clamp(36px, 7vw, 72px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  color: rgba(255, 249, 239, 0.86);
  font-size: clamp(17px, 2.4vw, 21px);
  max-width: 720px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fffaf0;
  background: var(--brand);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background: var(--brand-2);
}

.button.secondary {
  color: var(--brand);
  background: var(--surface);
  border-color: var(--line);
}

.button.ghost {
  color: #fffaf0;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.button.danger {
  background: var(--danger);
}

.button.small {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 13px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p,
.muted {
  color: var(--muted);
}

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

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

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

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

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

.card.featured {
  color: #fff9ef;
  background: linear-gradient(140deg, var(--brand-2), #315d4d);
  border-color: rgba(255, 255, 255, 0.18);
}

.card.featured .muted,
.card.featured p {
  color: rgba(255, 249, 239, 0.8);
}

.card.flat {
  box-shadow: none;
}

.card h3 {
  margin-bottom: 8px;
}

.stat {
  display: grid;
  gap: 4px;
}

.stat strong {
  color: var(--brand);
  font-size: 32px;
  line-height: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill,
.tag,
.status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--surface-2);
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 800;
}

.status.pending {
  color: var(--warning);
  background: #fff4da;
}

.status.approved,
.status.open {
  color: var(--success);
  background: #e7f4ed;
}

.status.suspended,
.status.closed {
  color: var(--danger);
  background: #f8e7e5;
}

.story-band {
  background: var(--brand-2);
  color: #fff9ef;
}

.story-band .muted {
  color: rgba(255, 249, 239, 0.72);
}

.concept-intro {
  margin-top: -84px;
  position: relative;
  z-index: 2;
}

.concept-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.concept-panel p + p {
  margin-top: 14px;
}

.concept-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  background: var(--surface-2);
}

.concept-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.concept-visual-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 250px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fff9ef;
  background: rgba(23, 59, 50, 0.78);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-item {
  padding: 18px;
  background: var(--surface);
}

.trust-item strong {
  display: block;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.1;
}

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

.difference-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}

.difference-card.bad {
  color: #5a3a2a;
  background: #f7eadc;
}

.difference-card.good {
  color: #fff9ef;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
}

.difference-card.good .muted {
  color: rgba(255, 249, 239, 0.76);
}

.concept-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.relation-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.relation-card strong {
  color: var(--brand);
  font-size: 28px;
}

.team-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px;
}

.team-logo.text-logo {
  display: grid;
  place-items: center;
  color: #fff9ef;
  background: var(--brand);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.accent-text {
  color: var(--gold);
}

.coupon-warning .pill {
  color: #fff9ef;
  background: #b14d38;
}

.values-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 14px;
}

.value-card {
  min-height: 168px;
  display: grid;
  align-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.value-card.large {
  grid-row: span 2;
  color: #fff9ef;
  background: linear-gradient(145deg, var(--brand-2), #49614e);
}

.value-card.large .muted {
  color: rgba(255, 249, 239, 0.74);
}

.value-card .number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: timeline;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.timeline-item::before {
  counter-increment: timeline;
  content: "0" counter(timeline);
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quote-band {
  padding: 54px;
  color: #fff9ef;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(23, 59, 50, 0.94), rgba(39, 82, 68, 0.72)),
    url("../img/concept/community-connection-hero.png") center/cover;
  box-shadow: var(--shadow-strong);
}

.quote-band blockquote {
  margin: 0;
  max-width: 760px;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.45;
  font-weight: 900;
}

.concept-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  border: 1px solid #ddc99f;
}

.home-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.home-feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.home-feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.feature-list-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-list-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff9ef;
  background: var(--brand);
  font-weight: 900;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-left: 58px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--brand);
  font-weight: 900;
}

.form-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}

.progress-step {
  padding: 12px 8px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.progress-step.active {
  color: #fffaf0;
  background: var(--brand);
}

.form-step {
  display: none;
  padding: 24px;
}

.form-step.active {
  display: block;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

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

.field label,
.label {
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #fffefa;
  color: var(--ink);
}

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

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.check,
.radio {
  display: flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffefa;
}

.check input,
.radio input {
  width: auto;
  min-height: auto;
}

.notice {
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px;
  background: #fff8e8;
  color: #4c3920;
}

.notice.secure {
  border-left-color: var(--brand);
  background: #eef6f1;
}

.filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(130px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.benefit-card,
.job-card {
  display: grid;
  gap: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.locked {
  filter: blur(3px);
  user-select: none;
}

.member-card {
  color: #fff9ef;
  background:
    linear-gradient(135deg, rgba(39, 82, 68, 0.98), rgba(23, 59, 50, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.12), transparent);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.member-card .member-no {
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.member-card .name {
  margin: 18px 0 8px;
  font-size: 28px;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

th {
  color: var(--brand-2);
  background: var(--surface-2);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.tab.active {
  color: #fffaf0;
  background: var(--brand);
  border-color: var(--brand);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.team-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-2), #fff8e8);
}

.photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8dccb, #fff7e5);
  color: var(--brand);
  font-size: 40px;
  font-weight: 900;
}

.team-card {
  text-align: center;
}

.team-name {
  margin-top: 18px;
}

.team-profile {
  min-height: 84px;
}

.footer {
  padding: 36px 20px;
  color: rgba(255, 249, 239, 0.78);
  background: var(--brand-2);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff9ef;
  text-decoration: none;
  font-weight: 800;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(21, 17, 12, 0.64);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(100%, 720px);
  max-height: min(760px, 90vh);
  overflow: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.modal-body {
  padding: 20px;
}

.close-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.list {
  display: grid;
  gap: 12px;
}

.kv {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.kv strong {
  color: var(--brand-2);
}

.hidden {
  display: none !important;
}

.line {
  display: block;
}

.section-title-nowrap {
  white-space: nowrap;
}

.logout-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--surface);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.benefit-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.benefit-card.premium {
  padding: 0;
  overflow: hidden;
}

.benefit-provider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 0;
  font-weight: 900;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-2);
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 1px var(--line);
}

.benefit-banner {
  width: calc(100% - 36px);
  aspect-ratio: 1200 / 628;
  margin: 14px 18px 0;
  object-fit: cover;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand-2), var(--gold-soft));
}

.benefit-card-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.form-card {
  display: grid;
  gap: 14px;
}

.inline-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-link {
    padding: 12px;
  }

  .hero {
    min-height: 560px;
    padding: 70px 20px;
  }

  .hero.concept-hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(15, 35, 30, 0.94) 0%, rgba(24, 49, 42, 0.72) 58%, rgba(24, 49, 42, 0.2) 100%),
      url("../img/concept/community-connection-hero.png") center/cover;
  }

  .hero.home-hero {
    background:
      linear-gradient(180deg, rgba(15, 35, 30, 0.94) 0%, rgba(23, 59, 50, 0.78) 58%, rgba(23, 59, 50, 0.26) 100%),
      url("../img/concept/community-connection-hero.png") center/cover;
  }

  .hero-kicker-grid,
  .concept-panel,
  .trust-strip,
  .difference-grid,
  .concept-map,
  .values-mosaic,
  .concept-cta,
  .home-feature {
    grid-template-columns: 1fr;
  }

  .concept-intro {
    margin-top: -46px;
  }

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

  .quote-band {
    padding: 28px;
  }

  .section-head {
    display: grid;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .field-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

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

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

  .progress-step {
    display: none;
  }

  .progress-step.active {
    display: block;
  }

  .footer .wrap {
    display: grid;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 48px 16px;
  }

  .hero-actions,
  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card {
    padding: 18px;
  }

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