/* ========================================
   もらジョブ — Design Tokens
   ======================================== */
:root {
  --pink: #ff6b95;
  --pink-light: #fff0f5;
  --pink-dark: #e8557f;
  --blue: #0095d9;
  --blue-light: #e6f7ff;
  --blue-dark: #007bb8;
  --yellow: #ffd700;
  --yellow-light: #fffbe6;
  --yellow-dark: #e6c200;
  --white: #ffffff;
  --text: #2d3a4a;
  --text-muted: #5a6b7d;
  --shadow-soft: 0 8px 32px rgba(255, 107, 149, 0.12);
  --shadow-card: 0 12px 40px rgba(0, 149, 217, 0.1);
  --radius-pill: 50px;
  --radius-card: 28px;
  --radius-bubble: 50%;
  --font: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.sp-only {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Background bubbles
   ======================================== */
.bg-bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.bubble--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
  top: 10%;
  right: -80px;
}

.bubble--2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  top: 45%;
  left: -60px;
}

.bubble--3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--yellow-light) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
}

/* ========================================
   Logo
   ======================================== */
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
}

.logo__mor {
  color: var(--pink);
}

.logo__job {
  color: var(--blue);
}

.logo--footer {
  font-size: 1.35rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg,
.btn i {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.55rem 1.1rem;
}

.btn--lg {
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
}

.btn--pink {
  color: var(--white);
  background: linear-gradient(180deg, #ff8aad 0%, var(--pink) 50%, var(--pink-dark) 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 149, 0.4);
}

.btn--blue {
  color: var(--white);
  background: linear-gradient(180deg, #33b5e8 0%, var(--blue) 50%, var(--blue-dark) 100%);
  box-shadow: 0 6px 20px rgba(0, 149, 217, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 149, 0.45);
}

.btn--blue:hover {
  box-shadow: 0 10px 28px rgba(0, 149, 217, 0.45);
}

.btn:active {
  transform: translateY(0);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 149, 0.08);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav__list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.65rem;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}

.nav__list a:hover {
  color: var(--pink);
  background: var(--pink-light);
}

.nav__cta {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
  align-items: center;
}

.nav__list a.is-active {
  color: var(--pink);
  background: var(--pink-light);
  font-weight: 700;
}

.btn--outline {
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--blue-light);
  box-shadow: none;
}

.btn--xs {
  font-size: 0.72rem;
  padding: 0.45rem 0.85rem;
}

/* Legal disclaimer */
.legal-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 0.75rem;
  opacity: 0.85;
}

.legal-note--block {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px dashed rgba(0, 149, 217, 0.25);
  margin: 1.5rem auto 0;
  max-width: 640px;
  text-align: center;
}

/* Subpage hero */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 7rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
}

.page-hero--pink {
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-light) 100%);
}

.page-hero--blue {
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-light) 100%);
}

.page-hero--yellow {
  background: linear-gradient(180deg, var(--white) 0%, var(--yellow-light) 100%);
}

.page-hero--gradient {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--blue-light) 60%, var(--yellow-light) 100%);
}

.page-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.page-hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.page-hero--pink .page-hero__badge {
  background: var(--pink);
  color: var(--white);
}

.page-hero--blue .page-hero__badge {
  background: var(--blue);
  color: var(--white);
}

.page-hero--yellow .page-hero__badge {
  background: var(--yellow);
  color: var(--text);
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.page-hero--pink .page-hero__title { color: var(--pink-dark); }
.page-hero--blue .page-hero__title { color: var(--blue-dark); }
.page-hero--yellow .page-hero__title { color: var(--text); }

.page-hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Page content sections */
.page-section {
  position: relative;
  z-index: 1;
  padding: 3.5rem 1.5rem;
}

.page-section--white { background: var(--white); }
.page-section--pink { background: var(--pink-light); }
.page-section--blue { background: var(--blue-light); }
.page-section--yellow { background: var(--yellow-light); }

.page-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-section__inner--wide {
  max-width: 1100px;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.content-card--pink {
  border: 2px solid rgba(255, 107, 149, 0.2);
}

.content-card--blue {
  border: 2px solid rgba(0, 149, 217, 0.2);
}

.content-card--yellow {
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.content-card h2,
.content-card h3 {
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.content-card h2 { font-size: 1.25rem; color: var(--blue-dark); }
.content-card h3 { font-size: 1.05rem; color: var(--pink-dark); }

.content-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.content-card p:last-child { margin-bottom: 0; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
}

.feature-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--pink);
}

.feature-list--blue svg { color: var(--blue); }

/* Reward timeline (支援金スケジュール) */
.reward-timeline {
  position: relative;
  margin: 2rem 0;
}

.reward-timeline__intro {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.reward-timeline__intro p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.reward-timeline__intro p:last-child {
  margin-bottom: 0;
}

.reward-timeline__wrapper {
  position: relative;
  padding: 1rem 0 0.5rem;
}

.reward-timeline__axis {
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--yellow));
  border-radius: 6px;
  opacity: 0.45;
  z-index: 0;
}

.reward-timeline__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.reward-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem 1.75rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 32px rgba(255, 107, 149, 0.12);
  border: 2px solid transparent;
  transition: transform 0.2s ease;
}

.reward-step:hover {
  transform: translateY(-4px);
}

.reward-step--1 {
  border-color: rgba(255, 107, 149, 0.35);
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--white) 55%);
}

.reward-step--2 {
  border-color: rgba(0, 149, 217, 0.35);
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 55%);
}

.reward-step--3 {
  border-color: rgba(255, 215, 0, 0.55);
  background: linear-gradient(180deg, var(--yellow-light) 0%, var(--white) 55%);
}

.reward-step__marker {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.reward-step__check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.reward-step--1 .reward-step__check {
  background: linear-gradient(145deg, #ff8aad, var(--pink));
}

.reward-step--2 .reward-step__check {
  background: linear-gradient(145deg, #33b5e8, var(--blue));
}

.reward-step--3 .reward-step__check {
  background: linear-gradient(145deg, #ffe566, var(--yellow));
  color: var(--text);
}

.reward-step__check svg {
  width: 26px;
  height: 26px;
}

.reward-step__coin {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 26px;
  height: 26px;
  background: linear-gradient(145deg, #ffe566, var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #b8860b;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.45);
  animation: coin-spin 5s ease-in-out infinite;
}

.reward-step__when {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.reward-step__name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.reward-step--1 .reward-step__name { color: var(--pink-dark); }
.reward-step--2 .reward-step__name { color: var(--blue-dark); }
.reward-step--3 .reward-step__name { color: #b8860b; }

.reward-step__amount {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.reward-step__yen {
  font-size: 0.85em;
  font-weight: 700;
}

.reward-step__note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.45;
}

.reward-timeline__total {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--pink-light), var(--yellow-light));
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 149, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.reward-timeline__total-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.reward-timeline__total-amount {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--pink-dark);
  line-height: 1.2;
}

.reward-timeline__total-amount span {
  font-size: 0.75em;
  font-weight: 700;
}

.reward-timeline__example {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.reward-timeline--compact .reward-timeline__intro,
.reward-timeline--compact .reward-timeline__example {
  display: none;
}

.reward-timeline--compact .reward-step__amount {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.reward-timeline--compact .reward-step {
  padding: 1.25rem 0.75rem 1.5rem;
}

.reward-timeline__more {
  text-align: center;
  margin-top: 1.5rem;
}

.reward-timeline__sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-pulse 2s ease-in-out infinite;
}

.reward-timeline__sparkle--1 { top: 0; left: 5%; }
.reward-timeline__sparkle--2 { top: 10%; right: 4%; animation-delay: 0.4s; }

/* Company dashboard (求職者検索サンプルUI) */
.dashboard-section {
  background: linear-gradient(180deg, var(--blue-light) 0%, #f0f8fc 100%);
}

.dashboard-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.dashboard-intro p {
  margin-bottom: 0.5rem;
}

.dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.dashboard__filters {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 149, 217, 0.18);
  box-shadow: 0 8px 28px rgba(0, 149, 217, 0.1);
  position: sticky;
  top: 5.5rem;
}

.dashboard__filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--blue-light);
}

.dashboard__filters-head h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dashboard__filters-head h3 svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  font-family: var(--font);
  font-size: 0.85rem;
  border: 1.5px solid rgba(0, 149, 217, 0.2);
  border-radius: 10px;
  background: #fafcfe;
  color: var(--text);
  pointer-events: none;
}

.dashboard__ai-btn {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff, var(--blue-light));
  border: 1.5px dashed var(--blue);
  color: var(--blue-dark);
  box-shadow: none;
  font-size: 0.8rem;
}

.dashboard__ai-btn:hover {
  background: var(--blue-light);
  box-shadow: none;
  transform: none;
}

.dashboard__results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dashboard__count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.dashboard__sample-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 149, 217, 0.12);
  color: var(--blue);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 149, 217, 0.25);
}

.candidate-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.candidate-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(0, 149, 217, 0.15);
  box-shadow: 0 6px 24px rgba(0, 149, 217, 0.08);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: start;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.candidate-card:hover {
  border-color: rgba(0, 149, 217, 0.35);
  box-shadow: 0 10px 32px rgba(0, 149, 217, 0.12);
}

.candidate-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-light), #cceeff);
  border: 2px solid rgba(0, 149, 217, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue-dark);
  flex-shrink: 0;
}

.candidate-card__body {
  min-width: 0;
}

.candidate-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.candidate-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.candidate-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.65rem;
}

.candidate-card__status--ready {
  background: #e8f8ef;
  color: #1a8a4a;
  border: 1px solid rgba(26, 138, 74, 0.25);
}

.candidate-card__status--consider {
  background: var(--yellow-light);
  color: #9a7b00;
  border: 1px solid rgba(255, 215, 0, 0.5);
}

.candidate-card__status svg {
  width: 12px;
  height: 12px;
}

.candidate-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.candidate-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 8px;
}

.candidate-card__detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.candidate-card__detail strong {
  color: var(--text);
  font-weight: 700;
}

.candidate-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  flex-shrink: 0;
}

.candidate-card__actions .btn {
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.dashboard__privacy {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  border: 1px solid rgba(0, 149, 217, 0.15);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
}

.dashboard__privacy svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 0.25rem;
  color: var(--blue);
}

/* Register pages */
.register-page {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.5rem 4rem;
  min-height: calc(100vh - 120px);
}

.register-page--pink {
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--white) 40%, var(--blue-light) 100%);
}

.register-page--blue {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 40%, var(--pink-light) 100%);
}

.register-page__inner {
  max-width: 640px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 2rem;
}

.register-header__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.register-page--pink .register-header__badge {
  background: var(--pink);
  color: var(--white);
}

.register-page--blue .register-header__badge {
  background: var(--blue);
  color: var(--white);
}

.register-header__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.register-page--pink .register-header__title { color: var(--pink-dark); }
.register-page--blue .register-header__title { color: var(--blue-dark); }

.register-header__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.register-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  gap: 0.35rem;
}

.register-progress__item {
  flex: 1;
  text-align: center;
  position: relative;
}

.register-progress__dot {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  background: var(--white);
  border: 2px solid rgba(0, 149, 217, 0.2);
  color: var(--text-muted);
  transition: all 0.25s ease;
}

.register-progress__item.is-active .register-progress__dot,
.register-progress__item.is-done .register-progress__dot {
  color: var(--white);
  border-color: transparent;
}

.register-page--pink .register-progress__item.is-active .register-progress__dot,
.register-page--pink .register-progress__item.is-done .register-progress__dot {
  background: linear-gradient(145deg, #ff8aad, var(--pink));
  box-shadow: 0 4px 14px rgba(255, 107, 149, 0.35);
}

.register-page--blue .register-progress__item.is-active .register-progress__dot,
.register-page--blue .register-progress__item.is-done .register-progress__dot {
  background: linear-gradient(145deg, #33b5e8, var(--blue));
  box-shadow: 0 4px 14px rgba(0, 149, 217, 0.35);
}

.register-progress__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.3;
}

.register-progress__item.is-active .register-progress__label {
  color: var(--text);
}

.register-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(0, 149, 217, 0.1);
}

.register-page--pink .register-form-card {
  border-color: rgba(255, 107, 149, 0.15);
}

.register-form-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.register-page--pink .register-form-card__title { color: var(--pink-dark); }
.register-page--blue .register-form-card__title { color: var(--blue-dark); }

.register-form-card__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.register-step[hidden] {
  display: none;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.55;
}

.form-hint--info {
  padding: 0.65rem 0.85rem;
  background: var(--blue-light);
  border-radius: 10px;
  margin-top: 0.5rem;
  border: 1px solid rgba(0, 149, 217, 0.15);
}

.form-hint--warn {
  padding: 0.65rem 0.85rem;
  background: var(--yellow-light);
  border-radius: 10px;
  margin-top: 0.5rem;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 2px solid rgba(0, 149, 217, 0.2);
  border-radius: 14px;
  background: var(--white);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.register-page--pink .form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.register-page--pink .form-group select:focus,
.register-page--pink .form-group textarea:focus {
  border-color: var(--pink);
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-weight: 500;
  padding: 0.75rem 1rem;
  background: #fafcfe;
  border: 2px solid rgba(0, 149, 217, 0.15);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.register-page--pink .radio-option:hover,
.register-page--pink .checkbox-option:hover {
  border-color: rgba(255, 107, 149, 0.35);
  background: var(--pink-light);
}

.register-page--blue .radio-option:hover,
.register-page--blue .checkbox-option:hover {
  border-color: rgba(0, 149, 217, 0.35);
  background: var(--blue-light);
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  accent-color: var(--pink);
  cursor: pointer;
  appearance: auto;
}

.register-page--blue .radio-option input[type="radio"],
.register-page--blue .checkbox-option input[type="checkbox"] {
  accent-color: var(--blue);
}

.radio-option span,
.checkbox-option span {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  flex: 1;
}

.register-page--pink .radio-option:has(input:checked),
.register-page--pink .checkbox-option:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-light);
}

.register-page--pink .radio-option:has(input:checked) span,
.register-page--pink .checkbox-option:has(input:checked) span {
  font-weight: 700;
  color: var(--pink-dark);
}

.register-page--blue .radio-option:has(input:checked),
.register-page--blue .checkbox-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-light);
}

.register-page--blue .radio-option:has(input:checked) span,
.register-page--blue .checkbox-option:has(input:checked) span {
  font-weight: 700;
  color: var(--blue-dark);
}

/* カード型ラジオ（希望時期など） */
.radio-group--cards .radio-option {
  padding: 1rem 1.15rem;
  min-height: 52px;
}

.register-page--pink .radio-group--cards .radio-option:has(input:checked) {
  border-color: var(--pink);
  background: var(--pink-light);
  box-shadow: 0 0 0 1px rgba(255, 107, 149, 0.25);
}

.register-page--pink .radio-group--cards .radio-option:has(input:checked) span {
  font-weight: 700;
  color: var(--pink-dark);
}

.register-page--blue .radio-group--cards .radio-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 0 0 1px rgba(0, 149, 217, 0.25);
}

.register-page--blue .radio-group--cards .radio-option:has(input:checked) span {
  font-weight: 700;
  color: var(--blue-dark);
}

.form-notice {
  font-size: 0.85rem;
  color: #8a7355;
  background: #fff9f2;
  border: 1px solid rgba(255, 170, 90, 0.35);
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  margin-top: 0.75rem;
  line-height: 1.55;
}

.form-notice[hidden] {
  display: none;
}

/* 保有資格アコーディオン */
.qual-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.25rem;
}

.qual-accordion__item {
  border: 2px solid rgba(255, 107, 149, 0.15);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

.qual-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--white) 100%);
  border: none;
  cursor: pointer;
  text-align: left;
}

.register-page--blue .qual-accordion__item {
  border-color: rgba(0, 149, 217, 0.15);
}

.register-page--blue .qual-accordion__trigger {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
}

.qual-accordion__title {
  flex: 1;
  min-width: 0;
}

.qual-accordion__count {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pink-dark);
  background: var(--pink-light);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.register-page--blue .qual-accordion__count {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.qual-accordion__count[hidden] {
  display: none;
}

.qual-accordion__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

.qual-accordion__icon::before,
.qual-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--pink);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.register-page--blue .qual-accordion__icon::before,
.register-page--blue .qual-accordion__icon::after {
  background: var(--blue);
}

.qual-accordion__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.qual-accordion__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.qual-accordion__trigger.is-open .qual-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.qual-accordion__panel[hidden] {
  display: none;
}

.qual-accordion__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0.75rem 1rem 1rem;
  max-height: min(320px, 50vh);
  overflow-y: auto;
  border-top: 1px solid rgba(255, 107, 149, 0.1);
}

.register-page--blue .qual-accordion__options {
  border-top-color: rgba(0, 149, 217, 0.1);
}

.qual-accordion__options .checkbox-option {
  margin-bottom: 0;
}

.checkbox-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 100%;
}

.checkbox-inline:hover {
  background: none;
  border: none;
}

.checkbox-inline input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--blue);
  vertical-align: middle;
  cursor: pointer;
}

.register-page--pink .checkbox-inline input[type="checkbox"] {
  accent-color: var(--pink);
}

.checkbox-inline__text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.form-subsection {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 149, 217, 0.12);
}

.form-subsection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.form-subsection__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.register-skip-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--yellow-light);
  border-radius: 16px;
  border: 2px dashed rgba(255, 215, 0, 0.6);
  margin-top: 1rem;
}

.register-skip-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.register-info-box {
  padding: 1rem 1.15rem;
  background: var(--blue-light);
  border-radius: 14px;
  border: 1px solid rgba(0, 149, 217, 0.2);
  margin-top: 1.25rem;
}

.register-info-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.register-info-box p:last-child {
  margin-bottom: 0;
}

.register-info-box strong {
  color: var(--blue-dark);
}

.form-visibility {
  position: relative;
  padding: 1.25rem 1.15rem 1.15rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.form-visibility:last-child {
  margin-bottom: 0;
}

.form-visibility--public {
  background: linear-gradient(180deg, rgba(0, 149, 217, 0.06) 0%, var(--white) 100%);
  border: 2px solid rgba(0, 149, 217, 0.2);
}

.form-visibility--admin {
  background: linear-gradient(180deg, rgba(90, 107, 125, 0.06) 0%, #f8f9fa 100%);
  border: 2px dashed rgba(90, 107, 125, 0.3);
}

.form-visibility__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.form-visibility--public .form-visibility__badge {
  background: var(--blue);
  color: var(--white);
}

.form-visibility--admin .form-visibility__badge {
  background: #5a6b7d;
  color: var(--white);
}

.form-visibility__badge svg {
  width: 14px;
  height: 14px;
}

.form-visibility__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.form-visibility .form-group:last-child {
  margin-bottom: 0;
}

.support-setting {
  display: grid;
  gap: 0.85rem;
}

.support-setting__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
  padding: 0.85rem 1rem;
  background: var(--yellow-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

.support-setting__item label {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.support-setting__item input {
  padding: 0.6rem 0.75rem;
  font-family: var(--font);
  border: 2px solid rgba(255, 215, 0, 0.45);
  border-radius: 10px;
  width: 100%;
}

.support-setting__unit {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 0.65rem;
}

.visibility-summary {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.visibility-summary__col {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.65;
}

.visibility-summary__col--public {
  background: var(--blue-light);
  border: 1px solid rgba(0, 149, 217, 0.2);
}

.visibility-summary__col--admin {
  background: #f0f2f5;
  border: 1px dashed rgba(90, 107, 125, 0.35);
}

.visibility-summary__col h3 {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.visibility-summary__col--public h3 { color: var(--blue-dark); }
.visibility-summary__col--admin h3 { color: #5a6b7d; }

.visibility-summary__col ul {
  list-style: disc;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.register-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.register-nav .btn {
  flex: 1;
  min-width: 120px;
}

.register-nav [data-step-prev] {
  background: var(--white);
  color: var(--text-muted);
  border: 2px solid rgba(0, 149, 217, 0.2);
  box-shadow: none;
}

.register-nav [data-step-prev]:hover {
  background: var(--blue-light);
  transform: none;
  box-shadow: none;
}

.fee-setting {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fee-setting__item {
  padding: 1rem 1.15rem;
  background: #fafcfe;
  border-radius: 14px;
  border: 2px solid rgba(0, 149, 217, 0.15);
}

.fee-setting__item label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.fee-setting__range {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.fee-setting__item input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font);
  border: 2px solid rgba(0, 149, 217, 0.2);
  border-radius: 10px;
}

/* Login page */
.login-page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 200px);
  padding: 7rem 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--pink-light) 100%);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(0, 149, 217, 0.15);
}

.login-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}

.login-card__sub {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

/* フィールド見出しのみ（ラジオ/チェックの label には適用しない） */
.form-group > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 2px solid rgba(0, 149, 217, 0.2);
  border-radius: 14px;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.login-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.login-card__links {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
}

.login-card__links a {
  color: var(--blue);
  font-weight: 500;
}

.login-card__links a:hover {
  color: var(--pink);
}

.login-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.login-tab {
  flex: 1;
  padding: 0.6rem;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid rgba(0, 149, 217, 0.2);
  border-radius: 12px;
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
}

.login-tab.is-active {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue-dark);
}

/* FAQ accordion (JS) */
.faq-item__trigger {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq-item__trigger::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.is-open .faq-item__trigger::after {
  transform: rotate(45deg);
}

.faq-item__panel {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item__panel[hidden] {
  display: none;
}

/* Link cards on index */
.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.link-card {
  display: block;
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-soft);
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.link-card--pink {
  background: linear-gradient(160deg, var(--pink-light), var(--white));
  border: 2px solid rgba(255, 107, 149, 0.2);
}

.link-card--blue {
  background: linear-gradient(160deg, var(--blue-light), var(--white));
  border: 2px solid rgba(0, 149, 217, 0.2);
}

.link-card--yellow {
  background: linear-gradient(160deg, var(--yellow-light), var(--white));
  border: 2px solid rgba(255, 215, 0, 0.35);
}

.link-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-card--pink .link-card__icon {
  background: var(--pink);
  color: var(--white);
}

.link-card--blue .link-card__icon {
  background: var(--blue);
  color: var(--white);
}

.link-card--yellow .link-card__icon {
  background: var(--yellow);
  color: var(--text);
}

.link-card__icon svg { width: 26px; height: 26px; }

.link-card__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.link-card--pink .link-card__title { color: var(--pink-dark); }
.link-card--blue .link-card__title { color: var(--blue-dark); }
.link-card--yellow .link-card__title { color: var(--text); }

.link-card__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 7.5rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-light) 40%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__sub {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero__title-line {
  display: block;
  color: var(--blue);
}

.hero__title-line--accent {
  color: var(--pink);
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero visual / CSS illustration */
.hero__visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__illust {
  position: relative;
  width: 280px;
  height: 320px;
}

.hero__person {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__person-head {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ffe4d0 0%, #f5c9a8 100%);
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.hero__person-body {
  width: 120px;
  height: 100px;
  background: linear-gradient(180deg, var(--pink-light) 0%, #ffd4e5 100%);
  border-radius: 60px 60px 20px 20px;
  margin: 0 auto;
}

.hero__phone {
  position: absolute;
  right: -30px;
  top: 50px;
  width: 36px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 149, 217, 0.2);
}

.hero__city {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 149, 217, 0.15) 100%);
  clip-path: polygon(
    0% 100%, 5% 60%, 12% 75%, 18% 50%, 25% 70%, 32% 45%, 40% 65%,
    48% 40%, 55% 60%, 62% 35%, 70% 55%, 78% 30%, 85% 50%, 92% 25%, 100% 45%, 100% 100%
  );
}

/* Speech bubbles */
.speech-bubble {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: var(--radius-bubble);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  z-index: 3;
}

.speech-bubble--pink {
  background: linear-gradient(145deg, #ff8aad, var(--pink));
  top: 5%;
  left: 0;
}

.speech-bubble--blue {
  background: linear-gradient(145deg, #33b5e8, var(--blue));
  top: 35%;
  right: -5%;
}

.speech-bubble--yellow {
  background: linear-gradient(145deg, #ffe566, var(--yellow));
  color: var(--text);
  bottom: 15%;
  left: 10%;
}

.speech-bubble__icon {
  margin-bottom: 4px;
}

.speech-bubble__icon svg {
  width: 22px;
  height: 22px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Coins & sparkles */
.coin {
  position: absolute;
  width: 32px;
  height: 32px;
  background: linear-gradient(145deg, #ffe566, var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #b8860b;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
  animation: coin-spin 6s ease-in-out infinite;
  z-index: 4;
}

.coin--1 { top: 20%; right: 15%; animation-delay: 0s; }
.coin--2 { bottom: 30%; right: 5%; animation-delay: 1s; width: 26px; height: 26px; font-size: 0.65rem; }

@keyframes coin-spin {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-8px); }
}

.sparkle {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-pulse 2s ease-in-out infinite;
}

.sparkle--1 { top: 12%; left: 25%; }
.sparkle--2 { bottom: 40%; right: 20%; animation-delay: 0.5s; }

.sparkle--sm {
  width: 10px;
  height: 10px;
  top: -4px;
  right: -4px;
}

@keyframes sparkle-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* ========================================
   Audience cards
   ======================================== */
.audience {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  background: var(--white);
}

.audience__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  position: relative;
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.audience-card--pink {
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--white) 60%);
  border: 2px solid rgba(255, 107, 149, 0.2);
}

.audience-card--blue {
  background: linear-gradient(160deg, var(--blue-light) 0%, var(--white) 60%);
  border: 2px solid rgba(0, 149, 217, 0.2);
}

.audience-card__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.audience-card--pink .audience-card__badge {
  background: var(--pink);
  color: var(--white);
}

.audience-card--blue .audience-card__badge {
  background: var(--blue);
  color: var(--white);
}

.audience-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.audience-card--pink .audience-card__title {
  color: var(--pink-dark);
}

.audience-card--blue .audience-card__title {
  color: var(--blue-dark);
}

.audience-card__body {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.audience-card__illust {
  flex-shrink: 0;
  width: 100px;
}

.audience-card__list {
  flex: 1;
}

.audience-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.audience-card__list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-card--pink .audience-card__list svg {
  color: var(--pink);
}

.audience-card--blue .audience-card__list svg {
  color: var(--blue);
}

.audience-card__gift {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  color: var(--pink);
  opacity: 0.6;
}

.audience-card__gift svg {
  width: 36px;
  height: 36px;
}

/* CSS illustrations */
.illust-seeker,
.illust-company {
  position: relative;
  width: 80px;
  height: 100px;
}

.illust-seeker__head,
.illust-company__head {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 4px;
}

.illust-seeker__head {
  background: linear-gradient(135deg, #ffe4d0, #f5c9a8);
}

.illust-company__head {
  background: linear-gradient(135deg, #ffe4d0, #e8b89a);
}

.illust-seeker__body,
.illust-company__body {
  width: 60px;
  height: 45px;
  border-radius: 30px 30px 10px 10px;
  margin: 0 auto;
}

.illust-seeker__body {
  background: var(--pink);
  opacity: 0.7;
}

.illust-company__body {
  background: var(--blue);
  opacity: 0.7;
}

.illust-seeker__phone {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 24px;
  height: 40px;
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: 4px;
}

.illust-company__laptop {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 8px;
  background: #ccc;
  border-radius: 2px;
}

.illust-company__laptop::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 5px;
  width: 45px;
  height: 30px;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  border-radius: 4px 4px 0 0;
}

/* ========================================
   Section titles
   ======================================== */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: var(--blue);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title__deco {
  display: block;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 4px;
}

.section-title__deco--right {
  background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.section-title--white {
  color: var(--white);
}

.sparkle--title {
  position: static;
  width: 14px;
  height: 14px;
}

/* ========================================
   Flow
   ======================================== */
.flow {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
}

.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.flow__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.15rem;
  margin-bottom: 2rem;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 72px;
}

.flow-step__icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 149, 217, 0.15);
  border: 2px solid rgba(0, 149, 217, 0.15);
  color: var(--blue);
}

.flow-step__icon svg {
  width: 28px;
  height: 28px;
}

.flow-step--highlight .flow-step__icon {
  background: linear-gradient(145deg, var(--pink-light), var(--yellow-light));
  border-color: var(--pink);
  color: var(--pink);
}

.flow-step__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  line-height: 1.3;
}

.flow-arrow {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.6;
  padding: 0 0.15rem;
  margin-bottom: 1.5rem;
}

.flow__note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.flow__note strong {
  color: var(--pink);
  font-weight: 800;
}

/* ========================================
   Safety
   ======================================== */
.safety {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--blue) 0%, #0077b3 100%);
}

.safety__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.safety__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.safety-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.safety-card:hover {
  transform: translateY(-4px);
}

.safety-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.safety-card__icon svg {
  width: 28px;
  height: 28px;
}

.safety-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.safety-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   Benefits
   ======================================== */
.benefits {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  background: var(--yellow-light);
}

.benefits__inner {
  max-width: 900px;
  margin: 0 auto;
}

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.benefits__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--yellow), #ffe566);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  flex-shrink: 0;
}

.benefits__icon svg {
  width: 24px;
  height: 24px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  background: var(--white);
}

.faq__inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--pink-light);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 149, 0.15);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pink);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   Final CTA
   ======================================== */
.cta-final {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--yellow-light) 0%, #fff5cc 50%, var(--pink-light) 100%);
  overflow: hidden;
}

.cta-final__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-final__city {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 149, 0.12));
  clip-path: polygon(
    0% 100%, 4% 55%, 10% 70%, 16% 45%, 22% 60%, 28% 40%, 35% 55%,
    42% 35%, 50% 50%, 58% 30%, 65% 45%, 72% 25%, 80% 40%, 88% 20%, 96% 35%, 100% 30%, 100% 100%
  );
}

.cta-final__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-final__content {
  text-align: center;
  z-index: 2;
}

.cta-final__ribbon {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), #ff8aad);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.5rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(255, 107, 149, 0.35);
}

.cta-final__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.cta-final__highlight {
  position: relative;
  color: var(--pink);
  display: inline-block;
}

.cta-final__highlight::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 4px;
  height: 12px;
  background: var(--yellow);
  opacity: 0.7;
  z-index: -1;
  border-radius: 4px;
  transform: skewX(-6deg);
}

.cta-final__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--white);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.35rem;
  border: 2px solid var(--blue);
}

.cta-final__sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-final__decor {
  flex-shrink: 0;
  width: 100px;
  display: none;
}

.decor-person {
  width: 70px;
  height: 90px;
  background: linear-gradient(180deg, #ffe4d0 30%, var(--pink-light) 100%);
  border-radius: 35px 35px 10px 10px;
  position: relative;
}

.decor-person::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ffe4d0, #f5c9a8);
  border-radius: 50%;
}

.decor-dog {
  position: relative;
  width: 80px;
  height: 70px;
}

.decor-dog__face {
  width: 60px;
  height: 50px;
  background: linear-gradient(180deg, #f4a460, #e8944a);
  border-radius: 50% 50% 45% 45%;
  margin: 15px auto 0;
  position: relative;
}

.decor-dog__ear {
  position: absolute;
  width: 18px;
  height: 28px;
  background: #e8944a;
  border-radius: 50%;
  top: 8px;
}

.decor-dog__ear--l {
  left: 8px;
  transform: rotate(-25deg);
}

.decor-dog__ear--r {
  right: 8px;
  transform: rotate(25deg);
}

.decor-dog__nose {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 10px;
  background: #5a3d2b;
  border-radius: 50%;
}

.decor-dog__tail {
  position: absolute;
  right: -5px;
  bottom: 20px;
  width: 20px;
  height: 8px;
  background: #e8944a;
  border-radius: 50%;
  animation: tail-wag 1s ease-in-out infinite;
}

@keyframes tail-wag {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
}

.coin--cta1 { top: 15%; left: 8%; }
.coin--cta2 { top: 25%; right: 10%; animation-delay: 0.5s; }
.coin--cta3 { bottom: 20%; left: 15%; animation-delay: 1s; width: 28px; height: 28px; font-size: 0.7rem; }

.sparkle--cta1 { top: 10%; left: 20%; }
.sparkle--cta2 { top: 30%; right: 18%; animation-delay: 0.3s; }
.sparkle--cta3 { bottom: 25%; right: 25%; animation-delay: 0.6s; }
.sparkle--cta4 { bottom: 15%; left: 30%; animation-delay: 0.9s; }

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  text-align: center;
  border-top: 1px solid rgba(0, 149, 217, 0.1);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin: 1.25rem 0;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--pink);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 900px) {
  .cta-final__decor {
    display: block;
  }
}

@media (min-width: 1025px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .nav {
    display: contents;
  }

  .nav__list {
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
  }

  .nav__cta {
    grid-column: 3;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 1024px) {
  .nav__list {
    display: none;
  }

  .nav.is-open .nav__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    overflow-y: auto;
    display: flex;
  }

  .nav.is-open {
    right: 0;
  }

  .nav__cta {
    flex-direction: column;
    margin-top: auto;
    padding-top: 1.5rem;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .reward-timeline__axis {
    display: none;
  }

  .reward-timeline__steps {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 360px;
    margin: 0 auto;
  }

  .reward-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 1rem;
    row-gap: 0.25rem;
    text-align: left;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
  }

  .reward-step__marker {
    grid-row: 1 / 4;
    margin: 0;
    align-self: center;
    width: 48px;
    height: 48px;
  }

  .reward-step__check {
    width: 48px;
    height: 48px;
  }

  .reward-step__check svg {
    width: 22px;
    height: 22px;
  }

  .reward-step__when {
    margin-bottom: 0;
    grid-column: 2;
  }

  .reward-step__name {
    grid-column: 2;
  }

  .reward-step__amount {
    grid-column: 2;
  }

  .reward-step__note {
    grid-column: 2;
  }

  .link-cards {
    grid-template-columns: 1fr;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__filters {
    position: static;
  }

  .candidate-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .candidate-card__actions {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .candidate-card__actions .btn {
    flex: 1;
    min-width: 120px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    min-height: 340px;
    order: -1;
  }

  .audience__inner {
    grid-template-columns: 1fr;
  }

  .safety__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow__steps {
    gap: 0.5rem;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    min-width: 60px;
  }

  .flow-step__icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 640px) {
  .sp-only {
    display: inline;
  }

  .header__inner {
    padding: 0.75rem 1rem;
  }

  .hero {
    padding: 6.5rem 1rem 3rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__desc br {
    display: none;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .speech-bubble {
    width: 90px;
    height: 90px;
    font-size: 0.62rem;
  }

  .speech-bubble__icon svg {
    width: 18px;
    height: 18px;
  }

  .audience-card__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .audience-card__list li {
    justify-content: center;
    text-align: left;
  }

  .flow__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
  }

  .flow-step__icon {
    width: 52px;
    height: 52px;
  }

  .flow-step__icon svg {
    width: 24px;
    height: 24px;
  }

  .safety__grid {
    grid-template-columns: 1fr;
  }

  .benefits__list {
    grid-template-columns: 1fr;
  }

  .cta-final__buttons {
    flex-direction: column;
  }

  .cta-final__buttons .btn {
    width: 100%;
  }

  .btn--lg {
    font-size: 0.95rem;
    padding: 0.9rem 1.5rem;
  }

  .reward-timeline__total-amount {
    font-size: 1.75rem;
  }

  .nav__cta .btn--xs {
    font-size: 0.8rem;
  }

  .register-progress__label {
    font-size: 0.58rem;
  }

  .register-progress__dot {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .register-form-card {
    padding: 1.5rem 1.15rem;
  }

  .register-nav {
    flex-direction: column;
  }

  .register-nav .btn {
    width: 100%;
  }
}
