.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-shell__container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-flow {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.plan-landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.plan-landing__top-bar {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: none;
  padding: 16px 20px;
  background-color: #3c88dd;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background-color 0.15s ease;
}

.plan-landing__top-bar:hover {
  background-color: #3579c7;
}

.plan-landing__top-bar:active {
  background-color: #2f6bb3;
}

.plan-landing__headline {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.plan-landing__body {
  flex: 1;
  padding: 32px 24px 40px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #eef4fc 0%, #ffffff 48%);
}

.plan-landing__inner {
  padding: 0 4px;
}

.plan-landing__hero {
  text-align: center;
}

.plan-landing__hero-text {
  margin: 0;
  color: #3c88dd;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.plan-landing__spacer-20 {
  height: 20px;
}

.plan-landing__spacer-32 {
  height: 32px;
}

.plan-landing__checklist-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(28, 41, 67, 0.08);
}

.plan-landing__checklist-intro {
  margin: 0 0 16px;
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

.plan-landing__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-landing__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #1c2943;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.plan-landing__checklist-item::before {
  content: '✓';
  flex-shrink: 0;
  color: #069d54;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.plan-landing__start-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c9a43d;
  border-radius: 999px;
  padding: 15px 28px;
  background: linear-gradient(180deg, #e8c45a 0%, #dbb64d 100%);
  color: #1c2943;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(219, 182, 77, 0.45);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.plan-landing__start-btn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.plan-landing__start-btn:hover {
  filter: brightness(1.03);
  box-shadow: 0 6px 18px rgba(219, 182, 77, 0.5);
}

.plan-landing__start-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(219, 182, 77, 0.38);
}
